Advertisement
MrTrala

MariUser

Feb 5th, 2016
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. --[[
  2.     Marijuana user for Archlight
  3.     Version 1.0
  4.     By Mr Trala
  5. ]]
  6.  
  7. config = {
  8.     exaus = 50, -- Exhausted in Seconds
  9.     id = 5953
  10. }
  11.  
  12. Module.New('MariEqualsGood', function(mod)
  13.     if Self.Stamina() >= 2400 then
  14.         Self.UseItem(config.id)
  15.    
  16.     end
  17.     mod:Delay((config.exaus * 1000), (config.exaus * 1000) + 500)
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement