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       = "Within a Tavern"
  me.terrain    = "Inside"
  me.desc       = me.desc + " " + "This looks like quite the popular place; many tables are scattered around the \r\ntavern.  Groups of people huddle around them.  Some chat amongst themselves, \r\nsome play cards and dice games, and others are simply sitting idle, watching \r\nthe other people in the tavern.  The bar is to the south.  People are lined up \r\nalong it, but you can spot a few open seats.  There are also a couple empty \r\ntables scattered throughout the tavern.  To the north, you see a small \r\nentertainment stage which seems to be empty at the moment.  To the west, you \r\nsee a fireplace with a bunch of people scattered about it.\r\n"
  
  ### extra descriptions
  me.edesc("stage", "There is stage not too far to the north.  Currently, it appears to be empty.\r\n")
  me.edesc("fireplace", "The fireplace looks to be blazing quite brightly.  There are a few groups of \r\npeople at tables scattered around it.\r\n")
  
  ### begin exit: south
  exit = me.dig("south", "the_bar")
  exit.name       = "going to the bar"
  exit.desc       = "You see a rather crowded bar to the south.  There are still a couple of stools \r\nleft, but it looks to be filling up fast.\r\n"
  exit.leave_mssg = "$n makes $s way to the bar."
  ### end exit
  
  ### begin exit: west
  exit = me.dig("west", "the_fireplace")
  exit.desc       = "A large fireplace is burning, westward.  There are people all around it.\r\n"
  ### end exit
  
  ### begin exit: southwest
  exit = me.dig("southwest", "dark_corner")
  exit.desc       = "It is a rather dark corner of the tavern.  There are a couple people sitting \r\nover there.  Most seem to be alone, and not too inviting of company.\r\n"
  ### end exit
  
  ### begin exit: north
  exit = me.dig("north", "by_stage")
  exit.desc       = "The entertainment stage is directly to your north.  Currently, it looks empty.\r\n"
  ### end exit
-