1998Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ] -->
<!--X-From-R13: Oqnz Ivttvaf <nqnzNnatry.pbz> -->
<!--X-Date: Tue, 28 Jul 1998 11:39:58 &#45;0700 -->
<!--X-Message-Id: Pine.SGI.3.96.980728112826.17978G&#45;100000#zazu,angel.com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 000001bdb7d2$66be3ac0$bdd6f1cd#thenewt,usit.net -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:adam#angel,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="msg00399.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00401.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00357.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00364.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00400">Author</A>
&nbsp;|&nbsp;<A HREF="#00400">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00400">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</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: Fun vs Realism [ Was: OT: Sid Meier ]</LI>
<LI><em>From</em>: Adam Wiggins &lt;<A HREF="mailto:adam#angel,com">adam#angel,com</A>&gt;</LI>
<LI><em>Date</em>: Tue, 28 Jul 1998 11:37:25 -0700 (PDT)</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 Sat, 25 Jul 1998, Markku Nylander wrote:
&gt; 	Brad and Caliban have an excellent point here. I'd like to turn the
&gt; 	question around and ask this: How do you make _creating_ the world
&gt; 	challenging (= fun) to the _seasoned coder_ (implementor, game
&gt; 	designer, whatever)? The reason I ask is because I've followed the
&gt; 	discussion on this list and to me it seems people are aiming for
&gt; 	more and more complex (internal) designs (total world persistence,
&gt; 	object behaviour simulating laws of physics etc.)... how do you
&gt; 	hide all that behind the user interface and keep the game playable?
&gt; 	If you coded an intricate and ingenious MUD engine that simulates
&gt; 	the real world perfectly, would you want to plop a simple Diku
&gt; 	interface on top of it, i.e. if a player was carrying a plate mail
&gt; 	and wanted to wear it when carrying a torch and a sword, would you
&gt; 	let a player to do Dikuish 'wear plate' or would they have to
&gt; 	'drop plate; extinguish torch; put torch into backpack; sheathe
&gt; 	sword; remove backpack; drop backpack; remove belt; drop belt;
&gt; 	remove chainmail; take plate; wear plate;	take backpack...'? 
&gt; 	Does it keep you motivated if the players go "OOooh" over the
&gt; 	twinkie ANSI color coded auction channel that took you five
&gt; 	minutes to code, but think the event-queued-limb-hit-and-damage-
&gt; 	permanent-injury-and-scarring based	combat system you spent	three
&gt; 	months implementing sucks big time?

Absolutely.  The more complex the stuff you can do gets, the harder it is
to keep it playable.  I've seen more than a few poor implementation of
"hands" on LP muds; rather than try to battle the interface for these, I'd
rather just have a plain ol' inventory, lame as they are.

I posted quite a few examples of how my server handles this sort of thing
(keeping base mechanics playable) in my early days on the list, so you can
check the archives from a couple years ago.  A quick example of the sort
of things we did:

% wear coat
You pull on a quilted undercoat.
% wear shirt
You pull on a chainmail shirt.
% wear plate
You strap on a breastplate.
% wear gauntlets
You pull on a pair of gauntlets.
% remove gauntlet
You remove your right gauntlet.
% remove coat
You remove your left gauntlet.
You remove your breastplate.
You remove your chainmail shirt.
You remove your quilted undercoat.

In the case of your example (that is, "hands"):

% eq
You are wearing a backpack, holding a sword in your left hand, and holding
a torch in your right hand.
% open door
You sheathe your sword.
You open the door.
% kill goblin
You draw your sword.
[..combat..]
The goblin collapses to the ground in a bloody heap.
% search corpse
You find three jade pieces in the goblin's pockets.
% get jade from corpse
You sheathe your sword.
You get three jade pieces from the goblin's pockets.
% draw
You put three jade pieces into your backpack.
You draw your sword.

etc.  This let us do all sorts of fun stuff with equipment and limbs,
while keeping the thing playable.  Honestly - we, the programmers, are the
ones that have to use the interface more than anyone else - why shouldn't
we want to make it usable?

Adam




</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00356" HREF="msg00356.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></STRONG>
<UL><LI><EM>From:</EM> "Markku Nylander" &lt;thenewt#use,usit.net&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00399.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00401.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00357.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00364.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00400"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00400"><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="00366" HREF="msg00366.html">[MUD-Dev] Re: You think users won't number crunch and statis</A></strong>, 
Damion Schubert <a href="mailto:zjiria#texas,net">zjiria#texas,net</a>, Mon 27 Jul 1998, 03:56 GMT
<LI><strong><A NAME="00359" HREF="msg00359.html">[MUD-Dev] The Eternal City on The Big Network</A></strong>, 
Mike Sellers <a href="mailto:mike#bignetwork,com">mike#bignetwork,com</a>, Sun 26 Jul 1998, 00:37 GMT
<LI><strong><A NAME="00356" HREF="msg00356.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></strong>, 
Markku Nylander <a href="mailto:thenewt#use,usit.net">thenewt#use,usit.net</a>, Sat 25 Jul 1998, 13:39 GMT
<UL>
<LI><strong><A NAME="00357" HREF="msg00357.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></strong>, 
Nathan F Yospe <a href="mailto:yospe#hawaii,edu">yospe#hawaii,edu</a>, Sat 25 Jul 1998, 22:42 GMT
</LI>
<LI><strong><A NAME="00400" HREF="msg00400.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Tue 28 Jul 1998, 18:39 GMT
</LI>
</UL>
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00364" HREF="msg00364.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></strong>, 
Damion Schubert <a href="mailto:zjiria#texas,net">zjiria#texas,net</a>, Mon 27 Jul 1998, 03:29 GMT
<UL>
<LI><strong><A NAME="00371" HREF="msg00371.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Mon 27 Jul 1998, 09:27 GMT
</LI>
<LI><strong><A NAME="00401" HREF="msg00401.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Tue 28 Jul 1998, 18:48 GMT
<UL>
<LI><strong><A NAME="00414" HREF="msg00414.html">[MUD-Dev] Re: Fun vs Realism [ Was: OT: Sid Meier ]</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Wed 29 Jul 1998, 06:09 GMT
</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>