Guest User

Untitled

a guest
Feb 28th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. draw_set_color(c_red)
  2. draw_circle(x,y,rad,0)
  3. draw_set_color(c_lime)
  4. draw_primitive_begin(pr_trianglefan)
  5. draw_vertex(x,y)
  6. i = 0
  7. while(i<health){
  8.         draw_vertex(x+lengthdir_x(rad,(i/100)*360),y+lengthdir_y(rad,(i/100)*360))
  9.         i+=1
  10. }
  11. rad -= 20 //thickness
  12. while (i > 0){
  13.     draw_vertex(x+lengthdir_x(rad,(i/100)*360),y+lengthdir_y(rad,(i/100)*360))
  14.     i-= 1;
  15. }
  16. draw_primitive_end()
  17. draw_set_color(c_black)
  18. draw_circle(x,y,rad,1)
Advertisement
Add Comment
Please, Sign In to add comment