1999Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Combat systems -->
<!--X-From-R13: "Ylybgna" <xlybgnaNxlybgna.rvqbfarg.pb.hx> -->
<!--X-Date: Sat, 11 Dec 1999 08:57:01 &#45;0800 -->
<!--X-Message-Id: 003001bf43f8$05d29360$0100a8c0@hell -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: E11wkYj&#45;0003kG&#45;00#oracle,clara.net -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] Combat systems</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:kylotan#kylotan,eidosnet.co.uk">
</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="msg00591.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00593.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00591.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00596.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00592">Author</A>
&nbsp;|&nbsp;<A HREF="#00592">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00592">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Combat systems</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: &lt;<A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A>&gt;</LI>
<LI><em>Subject</em>: Re: [MUD-Dev] Combat systems</LI>
<LI><em>From</em>: "Kylotan" &lt;<A HREF="mailto:kylotan#kylotan,eidosnet.co.uk">kylotan#kylotan,eidosnet.co.uk</A>&gt;</LI>
<LI><em>Date</em>: Sat, 11 Dec 1999 16:51:19 -0000</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: <A HREF="mailto:mud-dev-admin#kanga,nu">mud-dev-admin#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>
From: Neil Edwards &lt;neiled#clara,net&gt;
Sent: Saturday, December 11, 1999 11:18 AM
&gt; At the moment my to-hit formula uses the profiency of the weapon
&gt; (which can be an infintite number) the dexterity (max of 20) of the
&gt; attacker and the health of the attacker (to add some fatigue factor)
&gt;
&gt; (1-(1/(sqrt(proficiency+1)))*(dexterity/20)*(health/constitution).
&gt;
&gt; This gives a percentage chance of the player actually hitting the
&gt; victim. As you can see if you graph it with proficiency the variable
&gt; that at first there is a big gradient and then after about prof level 50
&gt; there is a relatively small increase as each level is reached. I
&gt; wanted this because I think it will give new players a chance.

After proficiency passes 4 or 5, an increase of 1 pt in proficiency is less
profitable than an increase of 1 pt in dexterity. You say proficiency is
technically unlimited, but what kind of range of values, and mean value, do
you expect to see here? How quickly would a player reach that point where it
would be better for them to gain a point of dexterity than to increase their
proficiency? If dexterity points are easier to increase than proficiency
points, there will be little point in a player increasing proficiency much
past 4 or 5 until their dexterity is maxed out. After all, increasing
dexterity would bring a much quicker and more obvious reward. However, if
proficiency points are easier to come by than dexterity, or if dexterity is
impossible/very difficult to increase, then the players with low dexterity
(determined in character creation, I'd assume?) have a massive disadvantage
from the start. The fact that proficiency increases swiftly will not help
those with 8 dexterity, who hit half as often as an equivalent player of 16
dexterity. The same question therefore goes for dexterity - what kind of
range and mean values do you expect here? Too much variance in dexterity
will lead to an imbalance, making proficiency almost irrelevant in 90% of
battles.

Maybe this is what you want :)  I don't know.

Regarding the health/constitution thing - I assume this would be equivalent
to (current hit points / maximum hit points) in an AD&amp;D type system? I use
something similar, but I use (1 - sqr(current/maximum)) so that the effects
are not pronounced until the character has started taking serious wounding.
This is to try and ensure that, at least early on in most battles, the skill
of the combatants is the main factor, rather than current health.

&gt; My defensive formula uses the defensive proficieny of the defender,
&gt; the dexterity of the defender the armour class of the defender, the
&gt; health of the defender and also the percentage hit chance of the
&gt; attacker. This allows for lucky blows by an attacker to be knocked
&gt; away with someone of a much higer defensive skill.
&gt;
&gt; (1-(1/(sqrt(proficiency+1)))((dexterity/20)(armour/100)
&gt; (health/constituition)(.5)) / (tohit%)

My comments on the ratio of proficiency importance to dexterity importance,
and the health issue also apply here, obviously.

&gt; My damage formula is pretty poor (not that the others are any
&gt; good)  and uses the strengths of the attacker and defender and the
&gt; armour class of the defender
&gt;
&gt; (attacker - defender)*((100-armourClass)/100)
&gt;
&gt; and gives a hp value to be removed from the defender.

One problem with using the original attack and defence scores in the final
damage calculations is that it emphasises the imbalance between the 2
combatants. In a battle where 1 is better than the other, not only will that
more skilful character be hitting more often, but they'll be hitting harder
too. Obviously a degree of this is realistic - but too much of this, and it
can make things harder to balance. For instance, changing part of your
attack formula will now have implications on the damage dealt. Fixing one
problem in the system may now break another. Therefore, you -may- want to
remove the (attacker-defender) variable from your damage formula for now, at
least until you finalise the attack and defence formulae - then when that is
done, if you still feel your damage formula needs to be influenced by
relative skill, add it back in and tweak it to suit.

&gt; I really sent them in so that people will pick them to pieces and
&gt; allow me to make better ones. I think this is the stage to do it
&gt; rather then after I implement it in the mud. So please send in any
&gt; comments, they'll be much appreciated.

No problem. But: it's been a while since I did much in the way of
mathematics, so maybe some of the more educated people on this list will be
able to go into more detail, or point out any mistakes I made :)

--
Kylotan




_______________________________________________
MUD-Dev maillist  -  MUD-Dev#kanga,nu
<A  HREF="http://www.kanga.nu/lists/listinfo/mud-dev">http://www.kanga.nu/lists/listinfo/mud-dev</A>

</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="00596" HREF="msg00596.html">Re: [MUD-Dev] Combat systems</A></strong>
<ul compact><li><em>From:</em> "Kylotan" &lt;kylotan#kylotan,eidosnet.co.uk&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00591" HREF="msg00591.html">[MUD-Dev] Combat systems</A></STRONG>
<UL><LI><EM>From:</EM> "Neil Edwards" &lt;neiled#clara,net&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00591.html">[MUD-Dev] Combat systems</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00593.html">RE: [MUD-Dev] Combat systems</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00591.html">[MUD-Dev] Combat systems</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00596.html">Re: [MUD-Dev] Combat systems</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00592"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00592"><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="00591" HREF="msg00591.html">[MUD-Dev] Combat systems</A></strong>, 
Neil Edwards <a href="mailto:neiled#clara,net">neiled#clara,net</a>, Sat 11 Dec 1999, 15:08 GMT
<UL>
<LI><strong><A NAME="00592" HREF="msg00592.html">Re: [MUD-Dev] Combat systems</A></strong>, 
Kylotan <a href="mailto:kylotan#kylotan,eidosnet.co.uk">kylotan#kylotan,eidosnet.co.uk</a>, Sat 11 Dec 1999, 16:57 GMT
<UL>
<LI><strong><A NAME="00596" HREF="msg00596.html">Re: [MUD-Dev] Combat systems</A></strong>, 
Kylotan <a href="mailto:kylotan#kylotan,eidosnet.co.uk">kylotan#kylotan,eidosnet.co.uk</a>, Sat 11 Dec 1999, 20:00 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00593" HREF="msg00593.html">RE: [MUD-Dev] Combat systems</A></strong>, 
Chris Lloyd <a href="mailto:crl199#soton,ac.uk">crl199#soton,ac.uk</a>, Sat 11 Dec 1999, 17:17 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00590" HREF="msg00590.html">[MUD-Dev] The GTS Library</A></strong>, 
J C Lawrence <a href="mailto:claw#kanga,nu">claw#kanga,nu</a>, Sat 11 Dec 1999, 05:54 GMT
<LI><strong><A NAME="00588" HREF="msg00588.html">[MUD-Dev] Ideas for dynamic worlds</A></strong>, 
Nolan Darilek <a href="mailto:nolan_d#bigfoot,com">nolan_d#bigfoot,com</a>, Sat 11 Dec 1999, 01:03 GMT
</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>