home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 May / Amiga_Games_Extra_CD_5-96.bin / spiele / publicdomain / amsrc / go
Text File  |  1996-02-19  |  941b  |  43 lines

  1. SysAdmin
  2. SysAdminPassword
  3. ignore RunLimit(100).
  4. use Characters
  5. public G CreateGrammar().
  6. SetContinue(true).
  7.  
  8.  
  9. /* the basics of this scenario */
  10. source st:Basics/basics.m
  11.  
  12. /* Combat code - player v.s. machine and player v.s. player. */
  13. source st:Combat/combat.m
  14.  
  15. /* The town */
  16. source st:Scenario/town.m
  17.  
  18. /* The Proving Grounds area - 3 quests, weapons, special monsters, etc. */
  19. source st:Proving/proving.m
  20.  
  21. /* The on-line building commands and interactive stuff. Builder's guild. */
  22. source st:Building/build.m
  23.  
  24. /* newsroom, telegram office - usenet news and email reading/posting. */
  25. /* Remove the comments around this if you want to have the usenet news
  26.    and email facilities in your MUD. */
  27. /*
  28. source st:Scenario/usenet.m
  29. */
  30.  
  31. /* Setup the new-player handler */
  32. source st:Basics/handler.m
  33.  
  34. SetContinue(false).
  35. NewCreationPassword().
  36.  
  37.  
  38.  
  39. Print("Scenario parsed - flushing database.\n").
  40. Flush().
  41. ignore RunLimit(10).
  42. Print("All done.\n").
  43.