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

  1. fsm StockAbsoluteAttrition : 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_Battle;
  12.  
  13.         TeamSetNav(0,ena_Nav_Center);
  14.  
  15. endfunction;
  16.  
  17. state startState;
  18.     code
  19.     revealnavpoint(ena_Nav_Center);
  20.     setnavpoint(ena_Nav_Center);
  21.  
  22.         trans SitState;
  23.         
  24. endstate;
  25.  
  26. state sitState;
  27.     code
  28.  
  29. endstate;
  30.  
  31. state deadState;
  32.     code
  33.  
  34. endstate;
  35.     
  36. endfsm.
  37.  
  38.