home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 52 / ClassicFond52.iso / GAMES / DROIDW.RAR / DWCD.GOB / mission_cog_d0_helptext.cog < prev    next >
Text File  |  1998-11-04  |  1KB  |  51 lines

  1. # Droids COG Script
  2. #
  3. # d0_Helptext.cog
  4. #
  5. # Displays Help messages 
  6. #
  7. # Desc:
  8. #    Two sectors, startsector and startsecotr2 will trigger the message number
  9. #    specified by messagenumber. The stopsectors display message 0, effectively
  10. #    turning it off.
  11. #
  12. #         [MT]    Created
  13. # 11/03/97    [DGS]    Added Printtext commands for debugging
  14. # 11/04/97    [DGS]    Added    two more start and stop sectors
  15. # ========================================================================================
  16.  
  17. symbols
  18. message        entered
  19. sector         startsector     linkid=1
  20. sector         startsector2    linkid=1
  21. sector         startsector3    linkid=1
  22. sector         startsector4    linkid=1
  23.  
  24. sector         stopsector      linkid=2
  25. sector         stopsector2     linkid=2
  26. sector         stopsector3     linkid=2
  27. sector         stopsector4     linkid=2
  28.  
  29. int            messagenumber
  30. end
  31.  
  32. code
  33. entered:
  34.      if (getsenderid()==1) {
  35.           dwsetmissiontext(messagenumber);
  36.         print("Helptext: Starting #:");        //Debug Lines
  37.         printint(messagenumber);
  38.      }
  39.      else if (getsenderid()==2) {
  40.           dwsetmissiontext(00000);
  41.         print("Helptext: Stopping #");        //Debug lines
  42.         printint(messagenumber);
  43.      }
  44.      return;
  45.      
  46. end
  47.  
  48.  
  49.  
  50.  
  51.