home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / rozrywka / rpg / amigamud / src / go next >
Text File  |  1997-06-28  |  1KB  |  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 AmigaMUD:Src/Basics/basics.m
  11.  
  12. /* Combat code - player v.s. machine and player v.s. player. */
  13. source AmigaMUD:Src/Combat/combat.m
  14.  
  15. /* The town */
  16. source AmigaMUD:Src/Scenario/town.m
  17.  
  18. /* The Proving Grounds area - 3 quests, weapons, special monsters, etc. */
  19. source AmigaMUD:Src/Proving/proving.m
  20.  
  21. /* The on-line building commands and interactive stuff. Builder's guild. */
  22. source AmigaMUD:Src/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 AmigaMUD:Src/Scenario/usenet.m
  29. */
  30.  
  31. /* Setup the new-player handler */
  32. source AmigaMUD:Src/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.