home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 May / CHIPCD5_98.iso / software / testsoft / carr / IRL.CST / 00124_Script_s_polka < prev    next >
Text File  |  1998-01-28  |  460b  |  23 lines

  1. on enterFrame
  2.   global mov,prep,g_animbrd,g_animy,g_animdir,g_animspr,g_animt,g_animjmp
  3.   global g_music,tmpt
  4.   
  5.   if prep=1 and mov=0 then
  6.     set g_animbrd=0
  7.     set g_animy=-68
  8.     set g_animdir=4
  9.     set g_animspr=7
  10.     set g_animt=the timer
  11.     set mov=1
  12.     set prep=0
  13.     sfOut 0
  14.     set g_music="polka"
  15.     set tmpt=the timer
  16.   end if    
  17.   
  18.   if (the timer-tmpt)>250 then set g_music="Car"
  19. end
  20.  
  21. on exitFrame
  22.   go to the frame
  23. end