Advertisement
Thetroz

Cuadrado de manzanas al escribir !apples

Oct 2nd, 2016
652
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. function eventChatCommand (player, command)
  2.     if command == "apples" then
  3.         size = 29;
  4.         width = 5;
  5.         height = 5;
  6.         x0 = tfm.get.room.playerList[player].x + 30 + size;
  7.         y0 = tfm.get.room.playerList[player].y + 30 - size;
  8.  
  9.         for j=0, size*(height-1), size do
  10.             for i=0, size*(width-1), size do
  11.                 tfm.exec.addShamanObject (39, x0+i, y0-j);
  12.             end
  13.         end
  14.     end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement