1998Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Leaving characters in play -->
<!--X-From-R13: X Q Znjerapr <pynjNhaqre.rate.ftv.pbz> -->
<!--X-Date: Tue, 19 May 1998 13:14:51 &#45;0700 -->
<!--X-Message-Id: 199805192014.NAA02935#under,engr.sgi.com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: E0yadYa&#45;0007Hn&#45;00#mail,kanga.nu -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: Leaving characters in play</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:claw#under,engr.sgi.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="msg00713.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00716.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00629.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00648.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00714">Author</A>
&nbsp;|&nbsp;<A HREF="#00714">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00714">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] 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: Leaving characters in play </LI>
<LI><em>From</em>: J C Lawrence &lt;<A HREF="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</A>&gt;</LI>
<LI><em>Date</em>: Tue, 19 May 1998 13:14:34 -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>
On Sat, 16 May 1998 02:49:20 -0700 
John Bertoglio&lt;alexb#internetcds,com&gt; wrote:

&gt; From: J C Lawrence &lt;claw#under,engr.sgi.com&gt; To: mud-dev#kanga,nu
&gt; &lt;mud-dev#kanga,nu&gt; Date: Friday, May 15, 1998 6:11 PM

&gt;&gt; On Thu, 14 May 1998 11:21:17 -0700 (PDT) Adam
&gt;&gt; Wiggins&lt;adam#angel,com&gt; wrote:

&gt;&gt;&gt; On Tue, 12 May 1998, John Bertoglio wrote:

&gt;&gt; It is this point which has persuaded me to almost entirely move
&gt;&gt; away from round based combat.  I refuse to place the entire game
&gt;&gt; and all players on a pacing clock (humans shall not wait for
&gt;&gt; machines), but not using a global clock while using usably long
&gt;&gt; combat rounds opens the combat system for all sorts of interesting
&gt;&gt; abuse due to the inconsistant time scales.

&gt; Minor point with confusion. Do you mean time scale as in real time
&gt; (seconds ticking on a clock) or another concept I am (obiously)
&gt; unfamilier with.  

There are two basic approaches:

  Events in game require a definite amount of time to execute.

  Events in game are executed as fast as they can be received and
processed.

I tend to the later.  Attempting to mix that with combat rounds, which 
ar necessarily of the former type, doesn't work well.

&gt; If you issue a command, drink jug and the connection is quick, the
&gt; screen quickly returns something like "The jug is now empty". Now I
&gt; know some of you out there could drain a jug in a few
&gt; miliseconds...but most of us can't. Most of us cannot work our way
&gt; up to the top of a 10,000 ft mountain in the time it takes to type
&gt; "CLIMB" or "UP" five times.

Ahh.  For me you can (pending resource limitations).  Then again a key 
part of this is that the commands to climb could originate from the
player, from his client, or from in-game user programs.  As such
typing rate is not relevant.

&gt; Some quick questions. I guess most would consider round-based combat
&gt; to be similar to a boxing match where the rounds are discrete chunks
&gt; of time. I think more like a wargamer...a combat round is a period
&gt; in which a certain number of actions are executed by the combatants
&gt; and then resolved.

I'm using the latter definition for "rounds".  What I used to have was
a "combat object" (search the archives for that term, lotsa good
discussion) which was created at the inception of combat, and which
mediated the combat rounds from then on.  Players then input intended
actions for each round to the combat object, and at the end of each
round the combat object resolved the various attempted actions,
derived a sequence of the actual effected actions, applied the actions
and the result damages and side-effects, and then started the next
round.

My current concept for combat at a user interface level is to have no
implicit interface.  Commands are entered for each blow, or a command
may be entered to repetitively attempt a blow or sequence of blows.
Thus there is no combat state outside of the client, and the combat
lasts as long as any participant continues to originate actions that
other participants consider combative.

&gt;&gt; I don't have a good design.  The best I can think of so far is:
&gt;&gt; 
&gt;&gt; -- No first blows are fatal.

&gt; Why? You hit a bunny with a halbred and you either miss or have a
&gt; binary bunny.

Then you'll tend to either miss all first blows to bunnies, or merely
graze/injure the bunny (assuming that the bunny is player
controlled).  The idea is not to ensure that a player can necessarily
__escape__ any attack.  The idea is that a player has the opportunity, 
if fleeting, to causitively react to an attack.  Single-blow
insta-death attacks prevent that.  Having first blows fore-shadowed to
the player:

  You see something whirr towards you!
  &gt; duck
  You hit the dirt.  An arrow flies by overhead.

doesn't work well for bullets, missiles, earthquakes, planetary
collisions (esp if on the far side) etc.

&gt; Now when our system is finished, I guarantee that no player will
&gt; score a one hit kill on another player...but that is a different
&gt; story.

&gt;&gt; -- First blows may be nearly fatal.

&gt; Of course.

&gt;&gt; -- Second blows can be fatal, but its very very unlikely,
&gt;&gt; especially if the first blow was nearly fatal.

&gt; Sounds like you are considering manipulating fate (luck) in combat
&gt; fortunes. I see this a partial solution to PK...Operant
&gt; conditioning..."I got womped by a newbie with a dagger! Bummer. He
&gt; took all my stuff."

Yup.  Essentially I am attempting to install extra time to allow for
intelligent reactions.  I want the newbie with the bodkin to still
kill the hero, but I want the hero to have a chance to see what's
happening first.

&gt;&gt; -- Arrange these probabilities appropriately to force most combats
&gt;&gt; to the 15 - 20 seconds point.

&gt; I disagree here. Let combat spin off on its own. I (barely) recall a
&gt; movie which had Sean Connery in single combat with a bad guy. Both
&gt; were in full armor fighting in the middle of a hot, grassy
&gt; field. Neither could get the better of the other. The fight took
&gt; quite a while. At the end, both were so exausted the could not
&gt; stand. A similar fight could happen in our system with carefully
&gt; matched opponents. Fatigue happens even if damage doesn't.  Fighters
&gt; could dance around each other for five minutes (RT) using defensive
&gt; attack profiles until one was taunted into launching a real attack
&gt; or they fell into a heap and were killed by a nasty bunny.

Nahh.  Its a stylistic thing.  I'm not interested in defensive battles 
(much tho I like them in cricket or snooker).  Combat is deliberately
intended to be both unstable and unpredictable.  I don't want
artificial (if obvious) balances interjected into that otherwise

&gt;&gt; -- Combat state is declared for both target and source.

&gt; We just create an entry in a data table for each combat, attacker
&gt; and defender. We create as separate entry for each combat so if
&gt; BUBBA fights three hobbits, three events are spawned. If Hobbit 1
&gt; decides to flee, that event is closed out. If #1 decides to join
&gt; BUBBA and attack his former buddies, cool. Their combat event is
&gt; closed and new ones created.

This gets *really* messy for melees.  What happens when 5,000
screaming Orcs boil out of the ground and engage your 500 typo-matic
players?

&gt;&gt; -- Combat state's only effect is to enforce timings of actions.  It
&gt;&gt; takes XXX time to swing a sword, YYY time to cast a spell etc.

&gt; Because I can't control time (stateless, you know), we use action
&gt; points.  (BTW, an action can take so many points it takes three (or
&gt; more) rounds to fire.) This frees the players from the twitch
&gt; factor. It also creates a more leisurely (some would say slow)
&gt; combat feel.

&lt;ponder&gt;


&gt; (I have a huge, somewhat incoherent post on a combat system started
&gt; on my workstation at work. I should be able to poach enough time to
&gt; post it next week sometime. It could even be coherent by then...It
&gt; references a lot of past posts and might even be interesting.)

Excellant!

-- 
J C Lawrence                               Internet: claw#null,net
(Contractor)                               Internet: coder#ibm,net
---------(*)                     Internet: claw#under,engr.sgi.com
...Honourary Member of Clan McFud -- Teamer's Avenging Monolith...

-- 
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="00629" HREF="msg00629.html">[MUD-Dev] Re: Leaving characters in play</A></STRONG>
<UL><LI><EM>From:</EM> "John Bertoglio" &lt;alexb#internetcds,com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00713.html">[MUD-Dev] Re: [MUD-Dev]World Size and The "Hot House" Factor Was Re: PK and my "Mobless MUD" idea</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00716.html">[MUD-Dev] Re: MURKLE: Wot it is</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00629.html">[MUD-Dev] Re: Leaving characters in play</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00648.html">[MUD-Dev] Re: Leaving characters in play</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00714"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00714"><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: Leaving characters in play</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00580" HREF="msg00580.html">[MUD-Dev] Re: Leaving characters in play</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Thu 14 May 1998, 18:21 GMT
<UL>
<LI><strong><A NAME="00619" HREF="msg00619.html">[MUD-Dev] Re: Leaving characters in play</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Sat 16 May 1998, 01:03 GMT
</LI>
<LI><strong><A NAME="00653" HREF="msg00653.html">[MUD-Dev] Re: Leaving characters in play</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Sun 17 May 1998, 21:45 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00629" HREF="msg00629.html">[MUD-Dev] Re: Leaving characters in play</A></strong>, 
John Bertoglio <a href="mailto:alexb#internetcds,com">alexb#internetcds,com</a>, Sat 16 May 1998, 09:47 GMT
<UL>
<LI><strong><A NAME="00714" HREF="msg00714.html">[MUD-Dev] Re: Leaving characters in play</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Tue 19 May 1998, 20:14 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00648" HREF="msg00648.html">[MUD-Dev] Re: Leaving characters in play</A></strong>, 
Travis S. Casey <a href="mailto:efindel#io,com">efindel#io,com</a>, Sun 17 May 1998, 21:15 GMT
<UL>
<LI><strong><A NAME="00671" HREF="msg00671.html">[MUD-Dev] Re: Leaving characters in play</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Mon 18 May 1998, 19:56 GMT
<UL>
<LI><strong><A NAME="00733" HREF="msg00733.html">[MUD-Dev] Re: Leaving characters in play</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 20 May 1998, 18:45 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00650" HREF="msg00650.html">[MUD-Dev] Re: Leaving characters in play</A></strong>, 
Travis S. Casey <a href="mailto:efindel#io,com">efindel#io,com</a>, Sun 17 May 1998, 21:15 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>