1998Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Combat  Was Re: Leaving characters in play -->
<!--X-From-R13: Oqnz Ivttvaf <nqnzNnatry.pbz> -->
<!--X-Date: Mon, 18 May 1998 20:36:56 &#45;0700 -->
<!--X-Message-Id: Pine.SGI.3.96.980518201113.6875D&#45;100000#red,angel.com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: Pine.LNX.3.95.980518221044.1045C&#45;100000#pyrolisk,ip.local -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: Combat  Was Re: Leaving characters in play</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="msg00682.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00685.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00678.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00686.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00683">Author</A>
&nbsp;|&nbsp;<A HREF="#00683">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00683">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</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: Combat  Was Re: Leaving characters in play </LI>
<LI><em>From</em>: Adam Wiggins &lt;<A HREF="mailto:adam#angel,com">adam#angel,com</A>&gt;</LI>
<LI><em>Date</em>: Mon, 18 May 1998 20:36:44 -0700 (PDT)</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: "Petidomo List Agent -- Kanga.Nu version" &lt;<A HREF="mailto:petidomo#kanga,nu">petidomo#kanga,nu</A>&gt;</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
On Mon, 18 May 1998, Oliver Jowett wrote:
&gt; On Mon, 18 May 1998, Orion Henry wrote:
&gt; &gt; Yes, this was brought system was brougt up over a year ago.  Its been so
&gt; &gt; long since we have talked combat systems and we have so many new
&gt; &gt; subscribers I didnt feel bad about recycling it.  Also all the luck stuff
&gt; &gt; at the end was new and I was curious as to what people thought.
&gt; 
&gt; I actually meant the "how do you work out which actions are appropriate"
&gt; idea - I'm sure I saw a thread to do with climbing trees vs. finding
&gt; healers at one point. WebGlimpse on the archives is spitting internal
&gt; server errors at me currently, and the other search engine is timing out, 
&gt; so I can't find it :(

Yeah, that was between JC and myself.  Its scope quickly left that of our
task system.  Tasks are pretty basic operations.  JC wanted to know how
our system decides that climbing a tree is more important than fighting
Bubba since there's a tidal wave about to wipe out the area.  The answer
is: it doesn't.  We didn't intend it to.  We're not trying to replace the
player's ability to respond to stimuli, we're trying to provide a better
way to order and execute the various physical actions the player commands
the character to execute.  Climbing the tree to escape the tidal wave just
requires a "climb tree!" command.  This of course could mean that the
player gets cut down from behind as he tries to climb the tree, but the
server doesn't try to decide danger levels.  It just goes by what priority
a given task usually takes.

&gt; There's an element of "people don't -do- that!" in here too. Having
&gt; players eat apples while fighting off dragons and opening chests in the
&gt; breaks in combat seems vaguely obsessive-compulsive to me. "Ooh, he's
&gt; pausing to cast a fireball, I can open another chest! &lt;creak&gt; &lt;boom&gt;"

Well, as long as you are in combat you don't do any menial tasks, because
you get a combat task which supercedes that.  Here's a simple example
(server notes are in braces):

% who am i
You are Boffo, mighty slayer of small rodents.
% kill bubba
You leap to attack Bubba!
{boffo gets task: combat on bubba}
Bubba draws his sword and prepares to fight.
{bubba gets task: combat on boffo}
[...]
You raise your weapon and prepare to attack.
{boffo gets task: attack bubba}
Your deadly mace of rodent slaying crashes down on Bubba's head!
{boffo task finished: attack bubba}
Bubba reels with pain.
{bubba gets task: reel in pain}
You raise your weapon and prepare to attack.
Bubba recovers his wits.
{bubba task finished: reel in pain}
{boffo gets task: attack bubba}
Your deadly mace of rodent slaying sends Bubba's head flying!
{boffo task finished: attack bubba}
Bubba collapses, dead.
{bubba task finished: combat on boffo}
{boffo task finished: combat on bubba}
%

Any "open chest" command typed by either player during the fight would
have been put off until the end of the fight unless it had been "open
chest!"

Adam



-- 
MUD-Dev: Advancing an unrealised future.

</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="00662" HREF="msg00662.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></STRONG>
<UL><LI><EM>From:</EM> Oliver Jowett &lt;oliver#jowett,manawatu.planet.co.nz&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00682.html">[MUD-Dev] Re: CGDC, a summary</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00685.html">[MUD-Dev] Re: OT: Java multithreading performance</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00678.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00686.html">[MUD-Dev] Re: Combat Was Re: Leaving characters in play</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00683"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00683"><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>[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00660" HREF="msg00660.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Oliver Jowett <a href="mailto:oliver#jowett,manawatu.planet.co.nz">oliver#jowett,manawatu.planet.co.nz</a>, Sun 17 May 1998, 23:44 GMT
<UL>
<LI><strong><A NAME="00661" HREF="msg00661.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Orion Henry <a href="mailto:orionZ#ix,netcom.com">orionZ#ix,netcom.com</a>, Mon 18 May 1998, 01:04 GMT
<UL>
<LI><strong><A NAME="00662" HREF="msg00662.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Oliver Jowett <a href="mailto:oliver#jowett,manawatu.planet.co.nz">oliver#jowett,manawatu.planet.co.nz</a>, Mon 18 May 1998, 04:26 GMT
<UL>
<LI><strong><A NAME="00678" HREF="msg00678.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Orion Henry <a href="mailto:orionZ#ix,netcom.com">orionZ#ix,netcom.com</a>, Tue 19 May 1998, 01:08 GMT
</LI>
<LI><strong><A NAME="00683" HREF="msg00683.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Tue 19 May 1998, 03:36 GMT
</LI>
<LI><strong><A NAME="00686" HREF="msg00686.html">[MUD-Dev] Re: Combat Was Re: Leaving characters in play</A></strong>, 
J C Lawrence <a href="mailto:claw#greek,kanga.nu">claw#greek,kanga.nu</a>, Tue 19 May 1998, 04:28 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00681" HREF="msg00681.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Tue 19 May 1998, 02:50 GMT
</LI>
</UL>
</LI>
</ul>
</LI>
<LI><strong><A NAME="00632" HREF="msg00632.html">[MUD-Dev] Re: OT: Java multithreading performance</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Sat 16 May 1998, 17:16 GMT
<UL>
<LI><strong><A NAME="00638" HREF="msg00638.html">[MUD-Dev] Re: OT: Java multithreading performance</A></strong>, 
Vadim Tkachenko <a href="mailto:vt#freehold,crocodile.org">vt#freehold,crocodile.org</a>, Sun 17 May 1998, 00:07 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>