Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. ---------------------------------
  2. --Players Loadout
  3. ---------------------------------
  4. function GM:PlayerLoadout( ply )
  5.  
  6. if ( ply:IsAdmin() or ply:IsSuperAdmin() ) then
  7. ply:Give("q3_rocketlauncher")
  8. ply:Give("item_rpg_round")
  9. ply:Give("the_obelisk")
  10. ply:SetRunSpeed(777)
  11. ply:SetWalkSpeed(777)
  12. ply:SetJumpPower(377)
  13. //ply:GiveAmmo(1,"rpg") this one might work better, up to you
  14. else
  15. ply:Give("the_obelisk")
  16. ply:SetRunSpeed(777)
  17. ply:SetWalkSpeed(777)
  18. ply:SetJumpPower(377)
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement