nakedmud-mod/
nakedmud-mod/html/tutorials/
nakedmud-mod/html/tutorials/building_extras/
nakedmud-mod/html/tutorials/c/
nakedmud-mod/html/tutorials/reference/
nakedmud-mod/html/tutorials/scripting/
nakedmud-mod/html/tutorials/scripting_extras/
nakedmud-mod/lib/
nakedmud-mod/lib/help/A/
nakedmud-mod/lib/help/B/
nakedmud-mod/lib/help/C/
nakedmud-mod/lib/help/D/
nakedmud-mod/lib/help/G/
nakedmud-mod/lib/help/H/
nakedmud-mod/lib/help/J/
nakedmud-mod/lib/help/L/
nakedmud-mod/lib/help/M/
nakedmud-mod/lib/help/O/
nakedmud-mod/lib/help/P/
nakedmud-mod/lib/help/R/
nakedmud-mod/lib/help/S/
nakedmud-mod/lib/help/W/
nakedmud-mod/lib/logs/
nakedmud-mod/lib/misc/
nakedmud-mod/lib/players/
nakedmud-mod/lib/pymodules/polc/
nakedmud-mod/lib/txt/
nakedmud-mod/lib/world/
nakedmud-mod/lib/world/zones/examples/
nakedmud-mod/lib/world/zones/examples/mproto/
nakedmud-mod/lib/world/zones/examples/oproto/
nakedmud-mod/lib/world/zones/examples/reset/
nakedmud-mod/lib/world/zones/examples/rproto/
nakedmud-mod/lib/world/zones/examples/trigger/
nakedmud-mod/lib/world/zones/limbo/
nakedmud-mod/lib/world/zones/limbo/room/
nakedmud-mod/lib/world/zones/limbo/rproto/
nakedmud-mod/src/alias/
nakedmud-mod/src/dyn_vars/
nakedmud-mod/src/editor/
nakedmud-mod/src/example_module/
nakedmud-mod/src/help2/
nakedmud-mod/src/set_val/
nakedmud-mod/src/socials/
nakedmud-mod/src/time/
abstract: no
script  :~
  ### The following rproto was generated by redit.
  ### If you edit this script, adhere to the stylistic
  ### conventions laid out by redit, or delete the top line
  
  ### string values
  me.name       = "By the Stage"
  me.terrain    = "Inside"
  me.desc       = me.desc + " " + "You are only about five or six feet from the stage, which stands to your north. It appears to be empty right now.  Back to the south, you see the bar, which  seems to be filling up rather quickly.  To the southwest is a large fireplace  with many people scattered about it. "
  
  ### extra descriptions
  me.edesc("bar", "   You see the bar far to the south.  It appears to be filling up  rather quickly. ")
  
  ### begin exit: south
  exit = me.dig("south", "tavern_entrance")
  exit.desc       = "Tables are scattered about.  Most of them have groups of people sitting at  them.  At the south end of the tavern, you see the bar. "
  ### end exit
  
  ### begin exit: southwest
  exit = me.dig("southwest", "the_fireplace")
  exit.desc       = "There is a large fireplace southwest of here, which is burning quite merrily. Many people are scattered around it, socializing.  The warmth looks rather  inviting. "
  ### end exit
  
  ### begin exit: stage
  exit = me.dig("stage", "the_stage")
  exit.opposite   = "leave"
  exit.desc       = "It is a small stage - perhaps fifteen feet wide, and eight feet deep.  It is  elevated about three feet off the ground, and there are small stairs on the  west side of it, leading up. "
  exit.leave_mssg = "$n climbs the stairs up to the stage."
  exit.enter_mssg = "$n joins you on stage."
  ### end exit
-