Advertisement
Enjl

wandR.lua

Mar 14th, 2017
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.54 KB | None | 0 0
  1. --                            _ .___     .              
  2. -- ,  _  /   ___  , __     ___/ /   \    |   ,   .   ___
  3. -- |  |  |  /   ` |'  `.  /   | |__-'    |   |   |  /   `
  4. -- `  ^  ' |    | |    | ,'   | |  \     |   |   | |    |
  5. --  \/ \/  `.__/| /    | `___,' /   \ / /\__ `._/| `.__/|
  6. --Version 1.0
  7. --written by Enjl
  8.  
  9. local wandR = {}
  10. local walkDir = {}
  11. walkDir[0] = function(x) return end
  12. walkDir[1] = function(x) world.playerY = world.playerY - x end
  13. walkDir[2] = function(x) world.playerX = world.playerX - x end
  14. walkDir[3] = function(x) world.playerY = world.playerY + x end
  15. walkDir[4] = function(x) world.playerX = world.playerX + x end
  16.  
  17. function wandR.onInitAPI()
  18.     registerEvent(wandR, "onTick", "onTick", false)
  19.     registerEvent(wandR, "onStart", "onStart", true)
  20. end
  21.  
  22. local startX, startY
  23.  
  24. wandR.grid = 32
  25. wandR.speed = 2
  26.  
  27. function wandR.onStart()
  28.     startX = world.playerX%wandR.grid
  29.     startY = world.playerY%wandR.grid
  30. end
  31.  
  32. function wandR.onTick()
  33.     if world.playerIsCurrentWalking then
  34.         world.playerWalkingTimer = 5
  35.         for i=1, wandR.speed do
  36.             walkDir[world.playerWalkingDirection](1)
  37.             if (world.playerX % wandR.grid == startX) and (world.playerY % wandR.grid == startY) then --check if the player reached a tile
  38.                 world.playerWalkingTimer = 32
  39.                 break
  40.             end
  41.         end
  42.         walkDir[world.playerWalkingDirection](-2) --counteract vanilla coordinate change
  43.     else
  44.         world.playerWalkingTimer = 0
  45.     end
  46. end
  47.  
  48. return wandR
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement