• Pointshop powerups help!
    2 replies, posted
Hi, I recently started a Deathrun server [URL="http://www.nocturnalgamingau.weebly.com"]http://www.nocturnalgamingau.weebly.com[/URL] and I have Pointshop installed. I was searching everywhere for powerups - Super speed, Low gravity and 100 more health I found some scripts but they are for an older version of Pointshop. So I was wondering if anyone could tell me the scripts for those powerups or link them to me. Thanks!
[code]ITEM.Name = 'Health Boost' ITEM.Price = 0 ITEM.Material = 'something' ITEM.NoPreview = true local health = 100 function ITEM:OnEquip(ply) ply:SetHealth(ply:Health() + health) end function ITEM:OnHolster(ply) ply:SetHealth(ply:Health() - health) end[/code] [Code]ITEM.Name = 'Low Gravity' ITEM.Price = 0 ITEM.Material = 'something' ITEM.NoPreview = true local gravity = 0.25 --Default is 1 function ITEM:OnEquip(ply) ply:SetGravity(gravity) end function ITEM:OnHolster(ply) ply:SetGravity(1) end[/code] [code]ITEM.Name = 'Fast Speed' ITEM.Price = 0 ITEM.Material = 'something' ITEM.NoPreview = true local speed = 300 --Default is 250 function ITEM:OnEquip(ply) ply:SetWalkSpeed(speed) end function ITEM:OnHolster(ply) ply:SetWalkSpeed(250) end[/code]
YOU ARE A LEGEND!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! THANKS!!!!!!
Sorry, you need to Log In to post a reply to this thread.