Advertisement
TerminusEst13

This works fine. Ergo I must have fucked it up.

Mar 23rd, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Script 636 OPEN
  2. {
  3. While (1)
  4. {
  5. // Light
  6. Light_LowerByValue(0,255);
  7. for(int lightid = 1; lightid < 9999; lightid++ )
  8. { Light_LowerByValue(lightid,999); }
  9.  
  10. // Spooky fog
  11. Sector_SetFade(0,0,0,0);
  12. for(int lightid2 = 1; lightid2 < 9999; lightid2++ )
  13. { Sector_SetFade(lightid2,0,0,0); }
  14. delay(1);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement