Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. //STEP EVEnT
  2.  
  3. if (cum == true) {
  4. if (blow == true) {
  5. sprite_index = spr_cumblow;
  6. image_speed=0.5;
  7. if (image_index >= image_number - image_speed) {
  8. sprite_index = spr_pink;
  9. image_index = 0;
  10. if (sprite_index == spr_cumblow) {
  11. climax=maxclimax;
  12. blow=false;
  13. }
  14. }
  15. }
  16. }
  17.  
  18. ////ANIMATION END EVENT
  19.  
  20. switch(sprite_index) {
  21. case spr_cumblow:
  22. sprite_index = spr_pink;
  23. climax=maxclimax;
  24. blow=false;
  25. break;
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement