Advertisement
MrTrala

Droper Guardian

Feb 7th, 2016
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. --[[
  2.     SelfDroper for Archlight
  3.     Version 1.0.1
  4.     By Mr Trala
  5. ]]
  6.  
  7. local BP = "backpack" -- Name of the backpack
  8.  
  9. Module.New('Droper', function(mod)
  10. local backpack = Container.GetByName(BP)
  11.     if (backpack:isOpen() == false) then
  12.         wait(500)
  13.         Self.UseItem(Self.Backpack().id)
  14.         wait(1000)
  15.     end
  16.    
  17.     Self.DropItems(Self.Position().x, Self.Position().y, Self.Position().z,
  18.     8174,
  19.     3059,
  20.     3725,
  21.     3195,
  22.     3160,
  23.     268,
  24.     3035,
  25.     266,
  26.     3457,
  27.     3003,
  28.     3327,
  29.     7774,
  30.     3191,
  31.     3483,
  32.     3492,
  33.     3333,
  34.     7384)
  35.    mod:Delay(2000)
  36. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement