1999Q1/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: MUD Design doc (long) -->
<!--X-From-R13: Fenivf Qnfrl <rsvaqryNvb.pbz> -->
<!--X-Date: Sat, 2 Jan 1999 11:49:37 &#45;0800 -->
<!--X-Message-Id: 18616.990102#io,com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: Version.32.19990102114103.00f34d60#sendar,prophecy.lu -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: MUD Design doc (long)</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:efindel#io,com">
</head>
<body background="/backgrounds/paperback.gif" bgcolor="#ffffff"
      text="#000000" link="#0000FF" alink="#FF0000" vlink="#006000">

  <font size="+4" color="#804040">
    <strong><em>MUD-Dev<br>mailing list archive</em></strong>
  </font>
      
<br>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
<br clear=all><hr>
<!--X-Body-Begin-->
<!--X-User-Header-->
<!--X-User-Header-End-->
<!--X-TopPNI-->

Date:&nbsp;
[&nbsp;<a href="msg00019.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00021.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00018.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00022.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00020">Author</A>
&nbsp;|&nbsp;<A HREF="#00020">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00020">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: MUD Design doc (long)</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Subject</em>: [MUD-Dev] Re: MUD Design doc (long)</LI>
<LI><em>From</em>: Travis Casey &lt;<A HREF="mailto:efindel#io,com">efindel#io,com</A>&gt;</LI>
<LI><em>Date</em>: Sat, 2 Jan 1999 14:48:28 -0500</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
On Saturday, January 02, 1999, Emil Eifrem wrote:

&gt; At 04:06 AM 1/2/99 , Travis Casey wrote:

&gt;&gt;You could have a global grammar and still have verbs/commands be
&gt;&gt;implemented in the world scripting language.  Lima does this -- verbs
&gt;&gt;are LPC programs in the mud, but the driver handles parsing (verbs
&gt;&gt;have to register themselves with the driver).

&gt; That's true. Unfortunately, my server is not that far to the soft side of
&gt; things that the above would be possible. Our scripting lang is designed
&gt; specifically for world manipulation and would be quite unsuitable for
&gt; commands programming.

Without seeing your scripting language, I can't say for sure, but it
seems to me that a world-manipulation language should be suitable for
implementing at least some commands:  those that make the body affect
the world.  Thus, things like give, take, wield, wear, etc. ought to
be implementable in it.

Of course, the command parsing may have to be done elsewhere, but most
such commands have a fairly simple syntax.


A few other random thoughts on advantages of systems where builders
can't add new commands:

 - Easier quality control.  I already mentioned this with regards to
   the possibility of builders adding synonyms for verbs that already
   exist, but there are a lot of other ways that centralized verbs
   make it easier.  Take a "read" verb for example:  to really work
   right, a "read" verb ought to check whether there's enough light to
   read, whether the character understands the language (if your mud
   has languages), if there's any spell on the character or thing
   being read which might prevent it (e.g., AD&amp;D's confuse languages
   spell, or a blindness spell).  With a centralized verb, all this
   only has to be coded once.  If each builder has to manually add a
   "read" action to each object that can be read, you can be sure that
   many of them won't think of some of these things.

 - Maintainability.  It's easier to change code in one place than in
   dozens or hundreds of different objects.  To use "read" as an
   example, let's say that X mud requires a light level of 6 or better
   in order for characters to see well enough to read.  So, all the
   good builders set up their "read" verbs so that they test that
   light &gt;= 6.  Now, six months down the road, someone decides that
   they want to add a dark-dwelling race to the game, and that race
   should be able to see with less light -- specifically, they should
   be able to read with light &gt;= 4.  Now, if builders have added
   "read" commands separately to objects, all of those objects have to
   be tracked down and updated to make this change.  With a
   centralized verb system, only the "read" verb has to be changed.

   (A side note:  on SWmud (an LP which used the add_action() system),
   we often ran across situations where there was a neat idea that
   would have made things better, but it would have required changing
   hundreds of objects throughout the game.  Naturally enough, none of
   those were ever implemented, because we simply didn't have the time
   to redo all those things.)

 - It can help prevent "guess the verb" situations.  I know -- some
   people like those.  Personally, though, I hate them.  Why?  Because
   if I were actually my character, I'd just *do* whatever it is, and
   it wouldn't matter what I *called* doing it.  Thus, to me, it
   discourages roleplaying by bringing the divide between the player
   and the character to the fore.

Personally, having played, built, and coded on a mud which used
add_action(), I wouldn't consider *not* making verbs global at this
point.  But, that's just me.  :-)

--
       |\      _,,,---,,_        Travis S. Casey  &lt;efindel#io,com&gt;
 ZZzz  /,`.-'`'    -.  ;-;;,_   No one agrees with me.  Not even me.
      |,4-  ) )-,_..;\ (  `'-'
     '---''(_/--'  `-'\_)




</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<ul compact><li><strong>Follow-Ups</strong>:
<ul>
<li><strong><A NAME="00022" HREF="msg00022.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>
<ul compact><li><em>From:</em> Emil Eifrem &lt;emil#prophecy,lu&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00018" HREF="msg00018.html">[MUD-Dev] Re: MUD Design doc (long)</A></STRONG>
<UL><LI><EM>From:</EM> Emil Eifrem &lt;emil#prophecy,lu&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00019.html">[MUD-Dev] Re: More Laws</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00021.html">[MUD-Dev] Re: Levels versus Skills, who uses them and when.</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00018.html">[MUD-Dev] Re: MUD Design doc (long)</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00022.html">[MUD-Dev] Re: MUD Design doc (long)</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00020"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00020"><STRONG>Thread</STRONG></A></LI>
</UL>
</LI>
</UL>

<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
<ul><li>Thread context:
<BLOCKQUOTE><UL>
<LI><strong><A NAME="00008" HREF="msg00008.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Thu 24 Dec 1998, 07:57 GMT
<UL>
<LI><strong><A NAME="00004" HREF="msg00004.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Emil Eifrem <a href="mailto:emil#prophecy,lu">emil#prophecy,lu</a>, Sat 02 Jan 1999, 02:21 GMT
<UL>
<LI><strong><A NAME="00006" HREF="msg00006.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Travis Casey <a href="mailto:efindel#io,com">efindel#io,com</a>, Sat 02 Jan 1999, 05:08 GMT
<UL>
<LI><strong><A NAME="00018" HREF="msg00018.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Emil Eifrem <a href="mailto:emil#prophecy,lu">emil#prophecy,lu</a>, Sat 02 Jan 1999, 11:26 GMT
<UL>
<LI><strong><A NAME="00020" HREF="msg00020.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Travis Casey <a href="mailto:efindel#io,com">efindel#io,com</a>, Sat 02 Jan 1999, 19:49 GMT
<UL>
<LI><strong><A NAME="00022" HREF="msg00022.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Emil Eifrem <a href="mailto:emil#prophecy,lu">emil#prophecy,lu</a>, Sat 02 Jan 1999, 21:16 GMT
<UL>
<LI><strong><A NAME="00035" HREF="msg00035.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Travis S. Casey <a href="mailto:efindel#io,com">efindel#io,com</a>, Mon 04 Jan 1999, 18:57 GMT
</LI>
<LI><strong><A NAME="00065" HREF="msg00065.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Marian Griffith <a href="mailto:gryphon#iaehv,nl">gryphon#iaehv,nl</a>, Wed 06 Jan 1999, 20:54 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00025" HREF="msg00025.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Sun 03 Jan 1999, 17:12 GMT
</LI>
</UL>
</LI>
</UL></BLOCKQUOTE>

</ul>
<hr>
<center>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
</center>
<hr>
</body>
</html>