1998Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Combat  Was Re: Leaving characters in play -->
<!--X-From-R13: Aevba Vrael <bevbaLNvk.argpbz.pbz> -->
<!--X-Date: Thu, 17 May 1998 18:04:49 &#45;0700 -->
<!--X-Message-Id: 3.0.5.32.19980518122701.00828690#popd,ix.netcom.com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 3.0.5.32.19980518091701.0081f240#popd,ix.netcom.com -->
<!--X-Reference: Pine.LNX.3.95.980518173503.1045A&#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:orionZ#ix,netcom.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="msg00660.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00646.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00660.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00662.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00661">Author</A>
&nbsp;|&nbsp;<A HREF="#00661">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00661">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>: Orion Henry &lt;<A HREF="mailto:orionZ#ix,netcom.com">orionZ#ix,netcom.com</A>&gt;</LI>
<LI><em>Date</em>: Mon, 18 May 1998 12:27:01 -0700</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>
At 05:59 PM 5/18/98 +1200, you wrote:
&gt;On Mon, 18 May 1998, Orion Henry wrote:
&gt;
&gt;&gt; -- Actions all have a priority that the queue is sorted by.  The priority
&gt;&gt; levels we had decided on were (from lowest to highest) menial, information
&gt;&gt; gathing, life-or-death, reactionary, and involentary.
&gt;
&gt;I have a feeling I've seen discussion of this before on the list, but 
&gt;anyway..

Yes, this was brought system was brougt up over a year ago.  Its been so
long since we have talked combat systems and we have so many new
subscribers I didnt feel bad about recycling it.  Also all the luck stuff
at the end was new and I was curious as to what people thought.


&gt;How long do actions last in the queue? How are they affected by changes in
&gt;the environment?
&gt;
&gt;  &gt; get sword
&gt;  &gt; open chest
&gt;  You pick up the sword.
&gt;  Bubba charges in and swings his sword at you!
&gt;  &gt; parry
&gt;  You parry Bubba's wild blow.
&gt;
&gt;[.. combat ..]
&gt;
&gt;  Bubba casts the dreaded "make all chests electrified" spell.
&gt;  &gt; skewer bubba
&gt;  You skewer Bubba with your sword. He collapses to the ground.
&gt;  You open the chest. ZAP! You are dead!
&gt;  &gt; say damn!

hahaha... yes, that COULD happen under the system as I understand it.  I
had a few things to compensate:  1) the "stop" command clears the queue of
all volintary actions.  Thus if you see something bad heading your way you
can immidatly stop your action queue.  2) different actions have different
fragility levels.  If you get bonked on the head you will most likely
forget about your apple.  If you casually kill bubba without breaking a
sweat you'd go right back to eating it.  Some things (like counting) get
broken very easily. ;)

Boffo:	"127, 128, 129..."
Bubba: "Hey Boffo!  Did you hear?? 130 of the guards men kill 115 peasants
over by 163 street! 123 more were wounded!"
Boffo:	"Arrrrrghhhhh!!"


&gt;Perhaps parse commands when received, to the point where you know what it
&gt;refers to (ie. resolve context at the point the command is entered, not
&gt;when the action un-queues). Then, if there is a visible state change in
&gt;what a queued action refers to, and the action has been queued for &gt;N
&gt;seconds, cancel it / require confirmation from the player. 

We parse the command immidatly, get the entity pointers for the targets,
and then slip it onto the queue.  We havent thought of a clean way of
checking changed state beyond the obvious.

&gt; Get the rock and open the door
You get the rock.
Boffo opens the door.
You reach for the door but stop.
&gt;



&gt;Or the system could drop lower-priority actions if something "important"
&gt;happens? eg. &gt;X higher-priority actions queued since the low-priority
&gt;action was.
&gt;
&gt;This could be desirable and/or irritating for other reasons:
&gt;
&gt;  Ouch! You have an itchy ear! You scratch it.
&gt;  &gt; open chest
&gt;  Ooh, that ear really is sore. You scratch it some more.
&gt;  &gt; look in mirror
&gt;  Scratch, scratch.
&gt;  Yup, looks like you've got a nasty rash on your ear.
&gt;  Scratch, scratch.
&gt;  You forget about opening the chest for now. That ear sure is itchy!
&gt;  &gt; grumble

Hahahahahahahahahah!

I was actually considering doign things like that just for social purposes
but letting them affect other things as well.  The itchy eaer would proboly
start as a proprity menial and sloooooowly work its way up to life-or-death
and finally involentary.

Boffo locks blades with you and snarls, "You are MINE Bubba!"
&gt; press
You press your weight right into Boffo making him slide back a few feet.
&gt; sneer
You sneer at him evily.
Boffo's eyes widen in terror.
Gee, your each sure does itch.
&gt; knee
You knee Boffo in the balls and make him wince, his grip on his blade
weakening.
Boy your ear is REALLY starting to itch.
You start to perspire.
&gt; headbut
You headbut Boffo and send him reeling with a bloody nose.
OH MY GOD YOU HAVE GOT TO ITCH YOUR EAR NOW!!
Your grip on your sword is weakening.
&gt; back
You unlock your blades and back away from Boffo as he regains his balance.
He stares at you in disbelief.
Boffo says, "What?  Has the great Bubba found mercy in his heart?"
&gt; scratch ear ; grumble 
Ahhhhhhhhhh... you needed that.





-- 
MUD-Dev: Advancing an unrealised future.

</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="00662" HREF="msg00662.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>
<ul compact><li><em>From:</em> Oliver Jowett &lt;oliver#jowett,manawatu.planet.co.nz&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00655" HREF="msg00655.html">[MUD-Dev] Combat  Was Re: Leaving characters in play</A></STRONG>
<UL><LI><EM>From:</EM> Orion Henry &lt;orionZ#ix,netcom.com&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00660" HREF="msg00660.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="msg00660.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00646.html">[MUD-Dev] META: Lost messages</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00660.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00662.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00661"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00661"><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="00665" HREF="msg00665.html">[MUD-Dev] RE: Titanic's demise (was Re: MURKLE: Wot it is)</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Mon 18 May 1998, 15:16 GMT
<LI><strong><A NAME="00646" HREF="msg00646.html">[MUD-Dev] META: Lost messages</A></strong>, 
J C Lawrence <a href="mailto:claw#greek,kanga.nu">claw#greek,kanga.nu</a>, Mon 18 May 1998, 02:05 GMT
<LI><strong><A NAME="00655" HREF="msg00655.html">[MUD-Dev] Combat  Was Re: Leaving characters in play</A></strong>, 
Orion Henry <a href="mailto:orionZ#ix,netcom.com">orionZ#ix,netcom.com</a>, Sun 17 May 1998, 21:55 GMT
<UL>
<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>
</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>