Python1320

Untitled

Jan 6th, 2011
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. hook.Add("BuildInventory", "hmm", function(inventory)
  2.    
  3.     PrintTable(inventory:GetItems())
  4.    
  5.     for item in pairs(inventory:GetPlayer():GetFishingMod():GetInventory())
  6.         inventory:AddItem({
  7.             value = item.value,
  8.             model = item.model,
  9.             blah = item.uahsuf,
  10.         })
  11.     end
  12.    
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment