1998Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: MUD Design doc (long) -->
<!--X-From-R13: Szvy Svserz <rzvyNcebcurpl.yh> -->
<!--X-Date: Thu, 17 Dec 1998 03:00:39 &#45;0800 -->
<!--X-Message-Id: Version.32.19981217101607.00e6b600#sendar,prophecy.lu -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: thinus_barnard#bigfoot,com -->
<!--X-Reference: 3674C665.832CE7E2#bigfoot,com -->
<!--X-Reference: 199812170331.TAA10828#under,engr.sgi.com -->
<!--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:emil#prophecy,lu">
</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="msg00978.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00980.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00975.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00984.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00979">Author</A>
&nbsp;|&nbsp;<A HREF="#00979">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00979">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>: Emil Eifrem &lt;<A HREF="mailto:emil#prophecy,lu">emil#prophecy,lu</A>&gt;</LI>
<LI><em>Date</em>: Thu, 17 Dec 1998 11:57:36 +0100</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>
At 04:31 AM 12/17/98 , J C Lawrence wrote:
&gt;Thinus Barnard&lt;thinus_barnard#bigfoot,com&gt; wrote:
&gt;&gt; Should NPCs and players have different command sets? 
&gt;
&gt;Should there actually be *ANY* distinguishing features between NPC's
&gt;and players other than the source of their actions?  There are good
&gt;reasons for both approaches and reasonable design methods to salve
&gt;most of each other's problems.

What good reasons are there for separating NPCs and PCs?


&gt;A well defined inheritance model can do wonders as can a good
&gt;grammar, which brings up the questions:
&gt;
&gt;  Central grammar and vocabulary?
&gt;
&gt;  Standardised grammar at all?  
&gt;
&gt;  Per-object dynamic vocabulary?

Per-object dynamic vocabulary was quite extensively discussed in an earlier
thread that I read up on in the archives. Did you guys reach a conclusion
on a reasonable design? It may be too game specific a problem for a generic
solution, I guess.

I'm pretty ambivalent on this issue. It's a 'flexibility vs consistency'
matter for me: I want the flexibility of letting a builder add the verb
"smell" to a mob's (or character or any Living) vocabulary when the mob
picks up a flower. But I strongly dislike the fact that if I drop the
flower and walk into another room, "smell" would give a "Huh!?".

The other consistency problem (which that thread opened my eyes to) is the
case when you have a zillion buttons in the world which all add the verb
"push" to your vocabulary and respond accordingly, except one tiny little
one built by NewbieJoeBuilder, which responds to "press." No fun.

The last problem can be solved administratively. One approach is to
maintain a list (a physical document, not a data structures list) of
different types of objects and the verbs they shall use for different
actions. (Such as "buttons: if a character push it, add the 'push' word to
its vocab".) 

That approach would soon get unreasonable -- both for the NewbieJoeBuilder
who needs to look through a monstrous file for every lil object he builds
and for ExperiencedJackMaintainerOfTheList who has to maintain the dang
thing and update it as new object types come along in the game.
One could also have a head builder that walks through all areas to check
the dynamic vocabulary but that does tend to hamper productivity.
Admittedly, quality assurance of areas is something that needs to be done
no matter what, but I believe checking the standard stuff (correnct
englihs, appropriate setting and theme, etc) is way different from checking
the dynamic vocabulary as it's easy to have the standard check done by a
staff of 4-5 experienced builders, but vocabulary review would have to be
done by one person per se.

What solutions are there for #1? I had some thoughts along the line of
instead of removing the verb from vocabulary, just cancel the action and
replace it with a can't-find-it message. So typing smell in the other room
(w/o a flower in it) would give you a "But you've dropped your flower!" or
whatever message.

Or maybe just for every character (/mobile/etc) object keep track of the
item last associated with a dynamically added verb. So "smell" with an
absent flower would give a "You don't see a flower here." message.


Any other ideas?

&gt;
&gt;  Rules for genating precedence and grammar rules with dynamic
&gt;vocabularies?
&gt;
&gt;  Is grammar a dynamically inherited structure across objects?

So Sword would inherit the grammar of Weapon? Hmmm...

I'm not even sure how, and why, having dynamic grammar attached to objects
would work. Pros and cons, anyone? And how?


[timing in combat:]
&gt;In #1 each player action (eg "bash buffa") takes a preset length of
&gt;time, and prevents the player character's motions/actions during
&gt;that time.
&gt;
&gt;#2 is a little different.  Players submit the actions that their
&gt;characters are going to perform in the next "round", where a round
&gt;is a known and predefined length of time.  At the end of the round
&gt;all the various actions by the various players are resolved against
&gt;each other (the action and round resolution logic can be quite
&gt;complex -- see the combat package threads in the list archives) and
&gt;the final results computed and reported before the next round starts
&gt;and the players again submit their intended actions.  It is common
&gt;with round systems for player characters to operate under a quota
&gt;system, where each of their proposed actions has a quota value and
&gt;their total must not exceed some maximum.  See Jon Lambert's posts
&gt;on his (IIRC) round based combat system for some interesting design
&gt;notes on this area.
&gt;
&gt;#3 is where I've been heading, while mixing in generous dollops of
&gt;#1 and #2.  Loosely, each character does whatever he can as fast as
&gt;he can with the limiting factor being the execution time of his
&gt;various actions and the speed with which he can submit them.
&gt;Arguments about fairness are of course rife with this approach.

Ack. Haven't your players heard of tintin?

Surely you must have some way to delay a player's queing commands while
they're busy doing something else. For example, say you have a spell that
causes damage. According to the above, a fight between two people with this
spell would basically be a fight between their clients and connections --
whomever gets through most "cast my damagespell" messages would win.

This doesn't sound feasible, so I assume that you do have individual delays
after commands. I think that's what you mean with the limiting factor being
the execution time of various actions. So the execution time for cast
damagespell would be pretty high and thus not unbalance the game. I don't
see how that's different from 1?


[independent time ratio:]
&gt;  &gt; stats
&gt;  You are 10 days old.
&gt;  &gt; stats bubba
&gt;  Bubba is 10 days old.
&gt;  &gt; stats boffo
&gt;  Boffo is 10 days old.
&gt;  ...play the game for a while...
&gt;  &gt; stats
&gt;  You are 50 days old.
&gt;  &gt; stats bubba
&gt;  Bubba is 30 days old.
&gt;  &gt; stats boffo
&gt;  Boffo is 168 days old.
&gt;
&gt;I don't however see this as a problem

This is the approach used by most DIKU-derivatives. Your character's age is
dependant on how many hours you have played him or her. This works out
sortta well, but if you want to create a consistent and realistic game
environment then it will disrupt player's perception of acting in a
semi-real world. In my experience, players will acccept unrealistic things
as long as they are consistent and at least somewhat logical. Most of our
wacky magical systems being a good example.


Actually, as I think of it, the above *does* provide consistency, if not
realism. I guess it just wouldn't fit my setting. My mud's based on a
fantasy book series, and I want a player to be able to say that they were
born that-and-that date before the legendary battle-of-this-and-that and
hear stories from an old experienced player whose char was actually in the
legendary battle. Time's running short and that wasn't a great example, but
you get my point.

-EE [emil#prophecy,lu]




</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="01054" HREF="msg01054.html">[MUD-Dev] MUD Design doc - Combat</A></strong>
<ul compact><li><em>From:</em> "Jon A. Lambert" &lt;jlsysinc#ix,netcom.com&gt;</li></ul>
<li><strong><A NAME="01049" HREF="msg01049.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>
<ul compact><li><em>From:</em> J C Lawrence &lt;claw#under,engr.sgi.com&gt;</li></ul>
<li><strong><A NAME="00985" HREF="msg00985.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>
<ul compact><li><em>From:</em> Mik Clarke &lt;mikclrk#ibm,net&gt;</li></ul>
<li><strong><A NAME="00984" HREF="msg00984.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>
<ul compact><li><em>From:</em> Adam Wiggins &lt;adam#angel,com&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00964" HREF="msg00964.html">[MUD-Dev] Re: MUD Design doc (long)</A></STRONG>
<UL><LI><EM>From:</EM> Thinus Barnard &lt;thinus_barnard#bigfoot,com&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00975" HREF="msg00975.html">[MUD-Dev] Re: MUD Design doc (long)</A></STRONG>
<UL><LI><EM>From:</EM> J C Lawrence &lt;claw#under,engr.sgi.com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00978.html">[MUD-Dev] Graphic design, client questions</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00980.html">[MUD-Dev] Re: MUD Design doc (long)</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00975.html">[MUD-Dev] Re: MUD Design doc (long)</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00984.html">[MUD-Dev] Re: MUD Design doc (long)</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00979"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00979"><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="00955" HREF="msg00955.html">[MUD-Dev] Re: Hex grids.</A></strong>, 
quzah [softhome] <a href="mailto:quzah#softhome,net">quzah#softhome,net</a>, Sat 12 Dec 1998, 18:58 GMT
<LI><strong><A NAME="00952" HREF="msg00952.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Benjamin D. Wiechel <a href="mailto:strycher#toast,net">strycher#toast,net</a>, Fri 11 Dec 1998, 18:36 GMT
<UL>
<LI><strong><A NAME="00964" HREF="msg00964.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Thinus Barnard <a href="mailto:thinus_barnard#bigfoot,com">thinus_barnard#bigfoot,com</a>, Mon 14 Dec 1998, 07:51 GMT
<UL>
<LI><strong><A NAME="00975" HREF="msg00975.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 17 Dec 1998, 03:31 GMT
<UL>
<LI><strong><A NAME="00979" HREF="msg00979.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Emil Eifrem <a href="mailto:emil#prophecy,lu">emil#prophecy,lu</a>, Thu 17 Dec 1998, 11:00 GMT
<UL>
<LI><strong><A NAME="00984" HREF="msg00984.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Thu 17 Dec 1998, 20:14 GMT
</LI>
<LI><strong><A NAME="00985" HREF="msg00985.html">[MUD-Dev] Re: MUD Design doc (long)</A></strong>, 
Mik Clarke <a href="mailto:mikclrk#ibm,net">mikclrk#ibm,net</a>, Thu 17 Dec 1998, 20:27 GMT
</LI>
<LI><strong><A NAME="01049" HREF="msg01049.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
</LI>
<LI><strong><A NAME="01054" HREF="msg01054.html">[MUD-Dev] MUD Design doc - Combat</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Tue 29 Dec 1998, 08:28 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</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>