Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. EQUIP_AETHERBOOT = 8
  2.  
  3. local function Init()
  4. local equipitem = {
  5. id = EQUIP_AETHERBOOT,
  6. loadout = false,
  7. type = "item_passive",
  8. material = "materials/VGUI/ttt/icon_sng_aether.vtf",
  9. name = "Aether's Boots of Agility",
  10. desc = "Soar like the God Aether, equip these boots and gain a considerable jump height buff."
  11. }
  12.  
  13. table.insert( EquipmentItems[ROLE_DETECTIVE], equipitem )
  14. end
  15.  
  16. hook.Add( "InitPostEntity", "LoadEquipItem", Init )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement