Advertisement
CaptainLepidus

Cage Opening

Aug 20th, 2014
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. COLLISION WITH HERO
  2. if(global.Squeeky_Cage_Down == 1 && global.Items[7,1] == 0)
  3. {
  4.     solid = true;
  5. }
  6.  
  7. if(global.Squeeky_Cage_Down == 0 && global.Items[7,1] == 1)
  8. {
  9.     alarm[0] = 1;
  10. }
  11. ALARM 0
  12. if (image_index < image_number) {
  13.     image_index += 1;
  14. }
  15. else {
  16.     solid = false;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement