home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 44 / Mm44.iso / sin / DATA / base / Pak0.pak / maps / sindm6demo.scr < prev   
Encoding:
Text File  |  1998-07-26  |  1.1 KB  |  32 lines

  1. //***************************************************************************
  2. // Sin Deathmatch 6
  3. // Ritual Entertainment - Charlie Wiederhold
  4. //***************************************************************************
  5.  
  6. //---------------------------------------------------------------------------
  7. // Call threads that operate most objects in world
  8. //---------------------------------------------------------------------------
  9.  
  10. thread BrokenLight
  11.  
  12. //***************************************************************************
  13. // End of the main script processing
  14. //***************************************************************************
  15. end
  16.  
  17. //---------------------------------------------------------------------------
  18. // Control thread for Broken light
  19. //---------------------------------------------------------------------------
  20. BrokenLight:
  21.  
  22. BrokenLight_Loop:
  23. local.TimeToWait randomint 20
  24. $broken_light lightstyle "Lc"
  25. wait local.TimeToWait
  26. $broken_light lightstyle "Lmmzmmz"
  27. trigger $broken_light_sparks
  28. wait 0.6
  29. goto BrokenLight_Loop
  30.  
  31. end
  32.