home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2003 June / macformat-130.iso / mac / Reviewed⁄Demos / Spearhead Demo / demota / pak1.pk3 / global / missioncomplete.scr < prev    next >
Encoding:
Text File  |  2002-10-21  |  310 b   |  21 lines

  1. main local.nextlevel local.bsp:
  2.     if ($player.health <= 0)
  3.         pause
  4.  
  5.     $player stopwatch 0    
  6.     if (local.nextlevel != NIL)
  7.     {
  8.         if (local.bsp != NIL)
  9.         {
  10.             game.loadout = false
  11.             bsptransition local.nextlevel
  12.         }
  13.         else
  14.         {
  15.             game.loadout = NIL
  16.             leveltransition local.nextlevel
  17.         }
  18.     }
  19.  
  20. end
  21.