Advertisement
TerminusEst13

Untitled

Mar 23rd, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Script 636 OPEN
  2. {
  3. int i;
  4. SetMusic("D_SILENT");
  5. while (1)
  6. {
  7. for (i = 0; i < 100; i++)//65535; i++)
  8. {
  9. Light_Stop(i);
  10. if (GetSectorLightLevel(i) != 0)
  11. { Light_ChangeToValue(i, 0);
  12. Sector_SetFade(i, 0,0,0); }
  13. Delay(i % 10000 == 9999);
  14. if (i == 100) { terminate; }
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement