Advertisement
SokazGames

Wat

Jun 22nd, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1.  
  2. if(pick == 1){
  3. image_angle = sin(current_time/1000)*25;
  4. }
  5. else{
  6. image_angle = -sin(current_time/1000)*25;
  7. }
  8. if(image_xscale == 0.3){
  9. y -= spd*2;
  10. }
  11. else if(image_xscale == 0.5){
  12. y -= spd;
  13. }
  14. else{
  15. y -= spd/2;
  16. }
  17. if(y < -256 && sprite_index != sBaloon_black){
  18. global.scoore = global.scoore/2;
  19. instance_destroy();
  20. }
  21. if(y < -256 && sprite_index == sBaloon_black){
  22. instance_destroy();
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement