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 Fireplace"
  me.terrain    = "Inside"
  me.desc       = me.desc + " " + "   There is a large fireplace here, burning away merrily.  Many people are  here, scattered around it at various tables.  The warmth of the fire is quite  soothing, and you can't help but feel like sitting down and relaxing by its  warmth.  To the northeast, you see a small entertainment stage which is empty  at the moment.  To the east, there are a few more open tables to sit at, and  to the southeast is the bar which seems to be filling up rather quickly.  To  the south is a rather dark corner of the tavern that does not look too  inviting. "
  
  ### extra descriptions
  me.edesc("stage", "   There is a small entertainment stage to the northeast.  It looks empty at  the moment. ")
  me.edesc("corner", "   The southwest corner looks rather dark.  There are a couple people  sitting over there, but most are alone and do not look like they want to  be disturbed. ")
  me.edesc("bar", "   You see the bar off to the southeast.  It looks like it is filling  up rather quickly. ")
  me.edesc("fire, fireplace", "   It blazes bright and warm.  The heat it gives off is rather soothing,  and you can't help but feel relaxed around it. ")
  
  ### begin exit: south
  exit = me.dig("south", "dark_corner")
  exit.desc       = "   It is a rather dark corner of the tavern.  There are a couple people  sitting over there.  Most seem to be alone, and not too inviting of company. "
  ### end exit
  
  ### begin exit: northeast
  exit = me.dig("northeast", "by_stage")
  exit.desc       = "   The entertainment stage is directly to the northeast.  Currently, it  looks empty. "
  ### end exit
  
  ### begin exit: east
  exit = me.dig("east", "tavern_entrance")
  exit.desc       = "   You see a couple tables scattered about.  Some have people sitting at them,  but most appear to be empty. "
  ### end exit
  
  ### begin exit: southeast
  exit = me.dig("southeast", "the_bar")
  exit.desc       = "   The bar looks like it has attacted quite the crowd.  However, you can still  spot a couple open seats along it. "
  exit.leave_mssg = "$n makes $s way to the bar."
  ### end exit
-