Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. local fleeexits = gmcp.Room.Info.exits
  2. local randomdir = math.random(1,table.size(fleeexits))
  3. local tumble_step = 0
  4.  
  5. for k,v in pairs(fleeexits) do
  6. tumble_step = tumble_step + 1
  7.  
  8. if tumble_step == randomdir then
  9. send("queue addclear eqbal tumble " .. k .. "|tumble " .. k .. "|tumble " .. k .. "|tumble " .. k .. "|tumble " .. k)
  10. break
  11. end
  12.  
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement