home *** CD-ROM | disk | FTP | other *** search
/ Singles (French) / Singles-FrenchVersion-Win95.iso / data1.cab / Statemachine / questTest.lua < prev    next >
Text File  |  2004-03-05  |  385b  |  32 lines

  1. -- Simple testquest
  2.  
  3.  
  4.  
  5.  
  6. beginStateMachine()
  7.  
  8.     onEnter(function(msg)
  9.         print ("TestQuest entered");
  10.     end )
  11.  
  12.     onMsg("checkComplete", function(msg)
  13.         --check mission completeness heere
  14.     end )
  15.         
  16. -------------------
  17.         
  18.     onMsg("enterTrigger3", function(msg) 
  19.         print("TRIGGER3 ENTERED IN TESTQUEEEST");
  20.     end )
  21.  
  22.     
  23.     state("done")
  24.         
  25.         
  26.         
  27. endStateMachine()
  28.  
  29.  
  30.  
  31.  
  32.