Advertisement
Guest User

Untitled

a guest
Sep 13th, 2019
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. data= {1,2,3,4,5,6,7,8}
  2.  
  3.    colours = playerColours[i];
  4.    pal(2, colours[1]);
  5.    pal(8, colours[2]);
  6.    pal(9, colours[3]);
  7.    pal(10, colours[4]);
  8.  
  9.    x = flr(state.players[i].x)
  10.    y = flr(state.players[i].y)
  11.    a = state.players[i].a
  12.    circfill(x+4,y+4,4,3)
  13.    circfill(x+4,y+3,4,0)
  14.   for i=1,6 do
  15.    if (data[i]) then
  16.     spra(a,data[i],x,y-i)
  17.    end
  18.   end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement