Advertisement
robocyclone

Untitled

Nov 21st, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. --[[ dmg api ]]--
  2.  
  3. local repeatOn = false
  4.  
  5. local function __dmg()
  6.  
  7.     repeatOn = true
  8.  
  9.     repeat
  10.         turtle.attack()
  11.     until not repeatOn
  12.    
  13. end
  14.  
  15. function on()
  16.  
  17.     __dmg()
  18.  
  19.  
  20. end
  21.  
  22. function off()
  23.  
  24.     repeatOn = false
  25.    
  26.    
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement