Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.82 KB | None | 0 0
  1. local function StripAndGive(ply) ply:StripWeapons() ply:StripAmmo() ply:Give("the_obelisk")
  2. if not ply:IsPlayer( "STEAM_0:0:13333469" ) then
  3. return false
  4. end
  5. if not ply:IsPlayer( "STEAM_0:0:0" ) then
  6. return false
  7. end
  8.     ply:SetRunSpeed(777)
  9.     ply:SetWalkSpeed(777)
  10.     ply:SetJumpPower(377)
  11. end
  12. hook.Add("PlayerLoadout", "StripAndGive", StripAndGive)
  13. local function StripAndGive2(ply) ply:StripWeapons() ply:StripAmmo() ply:Give("the_obelisk")
  14. if not ply:IsSuperAdmin() then
  15. return true
  16. end
  17.     ply:SetRunSpeed(777)
  18.     ply:SetWalkSpeed(777)
  19.     ply:SetJumpPower(377)
  20. end
  21. hook.Add("PlayerLoadout", "StripAndGive2", StripAndGive2)
  22. local function StripAndGive3(ply) ply:Give("q3_rocketlauncher") ply:Give("item_rpg_round")
  23. if not ply:IsSuperAdmin() then
  24. return false
  25. end
  26. end
  27. hook.Add("PlayerLoadout", "StripAndGive3", StripAndGive3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement