Advertisement
Sandsky0

Untitled

Jan 25th, 2014
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. global.frames += 1
  2.  
  3. if(global.frames>=50){global.Second2 += 1;
  4. global.frames = 0;}
  5. if(global.Second2=10){global.Second1+=1;
  6. global.Second2=0;}
  7. if(global.Second1=6){global.Minute2+=1;
  8. global.Second1=0;}
  9. if(global.Minute2=6){global.Minute1+=1;
  10. global.Minute2=0;}
  11. if(global.Minute1=6){global.Hour1+=1;
  12. global.Minute1=0;}
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. room_caption +=" Time: "+string(global.Hour1)+":"+string(global.Minute1)+string(global.Minute2)+":"+string(global.Second1)+string(global.Second2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement