home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 2 (DVD) / XENIADVD2.iso / Fragzone / Files / mw4mercseditor.exe / content / ABLScripts / StockScripts / Stock_ClanVsInnerSphere.ABL < prev    next >
Encoding:
Text File  |  2002-10-11  |  584 b   |  41 lines

  1. fsm StockClanVsInnerSphere : integer;        
  2.  
  3.     const
  4.         #include_ <content\ABLScripts\mwconst.abi>
  5.  
  6.     type
  7.         #include_ <content\ABLScripts\mwtype.abi>
  8.  
  9. function init;
  10.     code
  11.         SetupScoring_ClanVsInnerSphere;
  12.  
  13.         TeamSetNav(1,ena_Nav_Center);
  14.         TeamSetNav(2,ena_Nav_Center);
  15.  
  16. endfunction;
  17.  
  18. state startState;
  19.     code
  20.         revealnavpoint(ena_Nav_Center);
  21.         revealnavpoint(ena_Team_1_Drop_Zone);
  22.         revealnavpoint(ena_Team_2_Drop_Zone);
  23.         
  24. trans sitState;
  25.  
  26. endstate;
  27.  
  28.  
  29. state sitState;
  30.     code
  31.  
  32. endstate;
  33.  
  34. state deadState;
  35.     code
  36.  
  37. endstate;
  38.     
  39. endfsm.
  40.  
  41.