1997Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev]  Usability and interface and who the hell is supposed to be playing, anyway? -->
<!--X-From-R13: [nqql <znqqlNslfu.bet> -->
<!--X-Date: Thu, 18 Sep 1997 12:43:07 +0000 -->
<!--X-Message-Id: E0xBfvC&#45;0005ui&#45;00#crucigera,fysh.org -->
<!--X-Content-Type: text/plain -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev]  Usability and interface and who the hell is sup</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:maddy#fysh,org">
</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="msg01258.html">Previous</a>
&nbsp;|&nbsp;<a href="msg01260.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg01242.html">Previous</a>
&nbsp;|&nbsp;<a href="msg01345.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#01259">Author</A>
&nbsp;|&nbsp;<A HREF="#01259">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#01259">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev]  Usability and interface and who the hell is supposed to be playing, anyway?</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#null,net">mud-dev#null,net</A></LI>
<LI><em>Subject</em>: Re: [MUD-Dev]  Usability and interface and who the hell is supposed to be playing, anyway?</LI>
<LI><em>From</em>: Maddy &lt;<A HREF="mailto:maddy#fysh,org">maddy#fysh,org</A>&gt;</LI>
<LI><em>Date</em>: Thu, 18 Sep 1997 13:43:02 +0100 (BST)</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
Previously, ##Make Nylander wrote....
&gt; [Original message sent by Caliban Tiresias Darklock]
&gt; 
&gt; 	First, thank you for an excellent posting that echoed my
&gt; 	sentiments almost to the word.
&gt; 
&gt; | So here's my question. I know it was a long time in coming, but really -- 
&gt; | what sort of things do you look for in a MUD? How would you like to play, 
&gt; | if you were to log onto someone else's game and find that it was exactly 
&gt; | what you've always wanted?
&gt; 
&gt; 	Most of what you mentioned falls under basic principles of
&gt; 	user interface design (consistency, visibility, appropriate
&gt; 	response to user, error handling). Sadly, many of us programmers
&gt; 	sacrifice user-interface implementation to increasing internal
&gt; 	complexity of the game driver. 
&gt; 	An extensive, feature-loaded user interface isn't necessarily
&gt; 	a bad thing IF it's also _configurable_. Let the player decide
&gt; 	how many bells and whistles he/she wants. The game should not
&gt; 	impose any features on the player. I can understand that a
&gt; 	programmer, having spent numerous hours implementing a nifty
&gt; 	feature, wants everyone to use it regardless of whether it
&gt; 	actually increases playability or "fun-factor". 
&gt; 	I personally do not believe a MUD, as a game, should be
&gt; 	"realistic". If I want to buy bread, going through
&gt; 
&gt; 	&gt; buy bread
&gt; 	Your hands are full.
&gt; 	&gt; sheathe sword
&gt; 	You sheathe your sword, freeing your right hand..
&gt; 	&gt; buy bread
&gt; 	You are holding no money.
&gt; 	&gt; get 10 gold from purse
&gt; 	You aren't holding that.
&gt; 	&gt; remove purse
&gt; 	You remove a purse and hold it in your right hand.
&gt; 	&gt; get 10 gold from purse
&gt; 	Your hands are full.
&gt; 	&gt; get 10 gold from purse
&gt; 	Your hands are full.
&gt; 	&gt; drop shield
&gt; 	You drop your shield, freeing your left hand.
&gt; 	&gt; get 10 gold from purse
&gt; 	You get 10 gp from a purse and hold it in your left hand.
&gt; 	&gt; buy bread
&gt; 	You give 10 gp to the baker.
&gt; 	The baker gives you a bread.
&gt; 	You take a bread and hold it in your left hand.
&gt; 	&gt; draw sword
&gt; 	Your hands are full.

Most of the above example could be shortened if the implementor had thought
about it.

    &gt;buy bread
    You take some coins out of your purse and give them to the baker.
    The baker hands you some bread, since your hands are full, you put it in
    your backpack.

See - that was far simplier wasn't it?  Firstly the game checks for money in
all the objects the player is carrying, not just in his hands.  It might
take a few nanoseconds longer, but who cares - it'll be quicker than the
farce you described.

The second part probably isn't as easy.  You certainly wouldn't want anyone
being able to give you something which you'd automatically put into your
backpack.

    Bubba gives you a bomb, since your hands are full, you put it in your
    backpack.  The bomb appears to be ticking.
    Bubba runs away.
    ...
    *KABOOM* The bomb in your backpack explodes, killing you.

Now think about what happens in real life.  When you buy something, the
shopkeeper is usually clever enough to notice if your hands are full and
will put the item on the counter.

    &gt;buy bread
    You take some coins out of your purse and give them to the baker.
    The baker gets a loaf of bread from the shelves behind her, and places
    it on the counter.
    &gt;get bread
    Your hands are full, you sheath your sword.
    You pick up the loaf of bread and put it in your backpack.
    You wield your sword.

Of course you've gotta ask the question - what are you doing wielding a
sword in a bakers?  If I were the baker I'd flee the building and call for
the guards.

&gt; 	A good storyteller grabs your attention, diverts you
&gt; 	from noticing little inconsistencies and unnecessary
&gt; 	details and maintains suspension of belief. A good MUD
&gt; 	user interface is non-intrusive, it contains enough
&gt; 	functionality for interaction with the game world in a 
&gt; 	consistent, precise manner, but it does break the illusion
&gt; 	by distracting you.

I find that most muds definitely intrude a lot.  How many times have you
seen the following.

    &gt;get bread
    You don't know how to get bread.
    &gt;take bread
    You don't know how to take bread.
    &gt;pick up bread
    You pick up the bread.

Now why should it not recognise 'get' or 'take' but will recognise 'pick
up'.  In my opinion it should recognise all three.

&gt; 	In MUDs, like in any make-believe games, the game acts as
&gt; 	a source of stimuli to the player's imagination. Game 
&gt; 	reality, as perceived by the player's mind, is more extensive
&gt; 	and complex than its actual physical representation (text
&gt; 	on screen). If the system underestimates the player's imagination
&gt; 	by force-feeding unnecessary details or requires the
&gt; 	player to concentrate on encoding input/decoding output by
&gt; 	having too complex an user interface, no amount of
&gt; 	technical sophistication can produce a good MUD.

I think some details need to be stated.  If it just said

    &gt;get bread
    You pick up the bread.

Isn't the player then going to wonder later where he put the bread, and have
to hunt through his belongs until he finds it?

Maddy

</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="01345" HREF="msg01345.html">Re: [MUD-Dev]  Usability and interface and who the hell is suppo</A></strong>
<ul compact><li><em>From:</em> "Jon A. Lambert" &lt;jlsysinc#ix,netcom.com&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg01258.html">Re: [MUD-Dev]  PK again (was: Character evolution)</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg01260.html">[MUD-Dev]  Usability and interface and who the hell is supposed to be playing, anyway?</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg01242.html">[MUD-Dev]  Usability and interface and who the hell is supposed to be playing, anyway?</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg01345.html">Re: [MUD-Dev]  Usability and interface and who the hell is suppo</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#01259"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#01259"><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="01253" HREF="msg01253.html">Re: [MUD-Dev]	Usability and interface and who the hell is supposed to</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Thu 18 Sep 1997, 06:02 GMT
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="01317" HREF="msg01317.html">Re: [MUD-Dev]	Usability and interface and who the hell is supposed to</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Sat 20 Sep 1997, 16:01 GMT
</LI>
<LI><strong><A NAME="01318" HREF="msg01318.html">Re: [MUD-Dev]	Usability and interface and who the hell is supposed to</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Sat 20 Sep 1997, 16:02 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="01242" HREF="msg01242.html">[MUD-Dev]  Usability and interface and who the hell is supposed to be playing, anyway?</A></strong>, 
##Make Nylander <a href="mailto:thenewt#use,usit.net">thenewt#use,usit.net</a>, Wed 17 Sep 1997, 21:11 GMT
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="01259" HREF="msg01259.html">Re: [MUD-Dev]  Usability and interface and who the hell is supposed to be playing, anyway?</A></strong>, 
Maddy <a href="mailto:maddy#fysh,org">maddy#fysh,org</a>, Thu 18 Sep 1997, 12:43 GMT
<UL>
<LI><strong><A NAME="01345" HREF="msg01345.html">Re: [MUD-Dev]  Usability and interface and who the hell is suppo</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Sun 21 Sep 1997, 22:35 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="01260" HREF="msg01260.html">[MUD-Dev]  Usability and interface and who the hell is supposed to be playing, anyway?</A></strong>, 
##Make Nylander <a href="mailto:thenewt#use,usit.net">thenewt#use,usit.net</a>, Thu 18 Sep 1997, 14:46 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="01237" HREF="msg01237.html">RE: [MUD-Dev]  Usability and interface and who the hell is supposed to be playing, anyway? (Was: PK Again)</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Wed 17 Sep 1997, 17:47 GMT
<UL>
<LI><strong><A NAME="01255" HREF="msg01255.html">Re: [MUD-Dev]  Usability and interface and who the hell is suppo</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Thu 18 Sep 1997, 06:16 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>