1998Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: let's call it a spellcraft -->
<!--X-From-R13: [vpunry.IvyyrlNnoanzeb.pbz -->
<!--X-Date: Fri, 25 Sep 1998 09:06:02 &#45;0700 -->
<!--X-Message-Id: 8625668A.0057F6AD.00#usmta03,itsc.na.abnamro.com -->
<!--X-Content-Type: text/plain -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: let's call it a spellcraft</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:Michael.Willey#abnamro,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="msg01222.html">Previous</a>
&nbsp;|&nbsp;<a href="msg01224.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg01222.html">Previous</a>
&nbsp;|&nbsp;<a href="msg01328.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#01223">Author</A>
&nbsp;|&nbsp;<A HREF="#01223">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#01223">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: let's call it a spellcraft</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: let's call it a spellcraft</LI>
<LI><em>From</em>: <A HREF="mailto:Michael.Willey#abnamro,com">Michael.Willey#abnamro,com</A></LI>
<LI><em>Date</em>: Fri, 25 Sep 1998 12:10:53 -0500</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#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>

     ____________________Reply Separator____________________
     Subject:  [MUD-Dev] Re: let's call it a spellcraft
     Author:   mud-dev#kanga,nu ("Brandon J. Rickman"
     &lt;ashes#pc4,zennet.com&gt;)
     Date:          9/25/98 3:29 AM

---------------------------------
&gt;On Thu, 24 Sep 1998 Michael.Willey#abnamro,com wrote:
&gt;&gt; The "zero, one, and many" axiom applies just as well to
&gt;&gt; game design as to programming concerns.  How many game
&gt;&gt; design problems are the result of "magic numbers" that
&gt;&gt; are far too easy to butt up against?
&gt;
&gt;Is that a design problem, the magic numbers are too
&gt;low?  (Assume that the magic numbers have been correctly
&gt;coded as user configurable constants.)  No, someone
&gt;just needs to raise the numbers, tune the code.
&gt;The older and popular codebases suck because they can't
&gt;be tuned, they are badly designed.

Even with tuning of the magic numbers many systems still
suffer design flaws.  Take for instance the commonly
seen percentile skill system.  Each skill is rated on a
linear scale of 1 to 100, and when an ability is rated
at 100 it can never be higher.  Joe Player can raise
his skills to the same levels as the gods.  He can be
perfect.  Raising the magic number to 200 or even 2000
slows the process down but doesn't eliminate the underlying
problem.

One of the reasons I'm rewriting Dreamshadow's game
system for our new project is because of a rash of players
who through legitimate means have managed to gain skills
at obscene levels.  (Over 200 in a system where advancement
over 100 was intended to be near-impossible.)  They're
butting up against magic numbers embedded in the very
concepts of the system - the quickness of advancement,
assumptions of "reasonable" skill levels and an underlying
assumption that nobody would actually invest that much
time into any one character. We were wrong.

So I'm trying to develop a game system along completely
different assumptions.  Allowing characters to begin
with professional level skills, assuming that players
may spend 8 or more hours a day for years advancing
these abilities, and trying to take the focus away from
the whole "leveling" concept, as starters.

&gt;Even with the "zero, one, and many" rule of thumb, you
&gt;still have to design the numbers with some individual
&gt;care.  How many hit points does the weakest monster get?
&gt;If a fly has 10 hit points, but a pea shooter only does
&gt;1 point of damage, the fly takes 10 hits to kill.  It
&gt;isn't the maximum values (or lack thereof) that are
&gt;important, but the granularity of the "usable" range of
&gt;values.  There may not be a monster weaker than a fly in
&gt;the game, but you are allowed to conceive of such a thing,
&gt;a monster that is a mere fraction of a fly's fortitude.
&gt;But with a 1d1 pea shooter there is no room below, no
&gt;weapon can be worse and still be effective.  This is why
&gt;you start butting up against the too-low magic numbers,
&gt;because the small values aren't, er, small enough.  The
&gt;max limit is still within a "usable" range, it is a high-
&gt;traffic number.

I agree with you, but don't see any simple solutions to
the problem.  The number of units between 0 and Maximum
can be increased forever, but you can't do much to increase
the number of units between 0 and 1.  The best that you
can do is decide carefully what constitutes 1 unit.

That has to be applied to every unit category, too - what
is 1 unit of damage, 1 unit of health, or 1 unit of skill?
How do they interact?

&gt;Anyway, I lose interest in a game if the only goal is
&gt;to max out my skills.  Shouldn't there be fun things to
&gt;do after I have I a buff character?

I agree.  For me, character advancement is a means to an
end, not an end in itself.  I want a world that's fun to
explore and interact with.  I want the game system to be
complex and challenging, but not the only goal of the game.
That's why the DS2 design team's unofficial motto is
"By Spades, For Spades".  That, or "No Cheese". ;)




</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="01328" HREF="msg01328.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>
<ul compact><li><em>From:</em> "Brandon J. Rickman" &lt;ashes#pc4,zennet.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="msg01222.html">[MUD-Dev] Re: let's call it a spellcraft</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg01224.html">[MUD-Dev] Re: let's call it a spellcraft</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg01222.html">[MUD-Dev] Re: let's call it a spellcraft</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg01328.html">[MUD-Dev] Re: let's call it a spellcraft</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#01223"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#01223"><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: let's call it a spellcraft</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<LI><strong><A NAME="01208" HREF="msg01208.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Brandon J. Rickman <a href="mailto:ashes#pc4,zennet.com">ashes#pc4,zennet.com</a>, Fri 25 Sep 1998, 03:29 GMT
</LI>
</ul>
<LI><strong><A NAME="01220" HREF="msg01220.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Michael.Willey <a href="mailto:Michael.Willey#abnamro,com">Michael.Willey#abnamro,com</a>, Fri 25 Sep 1998, 14:57 GMT
<UL>
<LI><strong><A NAME="01350" HREF="msg01350.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Jon Leonard <a href="mailto:jleonard#divcom,slimy.com">jleonard#divcom,slimy.com</a>, Tue 29 Sep 1998, 06:10 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="01222" HREF="msg01222.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Michael.Willey <a href="mailto:Michael.Willey#abnamro,com">Michael.Willey#abnamro,com</a>, Fri 25 Sep 1998, 15:14 GMT
</LI>
<LI><strong><A NAME="01223" HREF="msg01223.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Michael.Willey <a href="mailto:Michael.Willey#abnamro,com">Michael.Willey#abnamro,com</a>, Fri 25 Sep 1998, 16:06 GMT
<UL>
<LI><strong><A NAME="01328" HREF="msg01328.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Brandon J. Rickman <a href="mailto:ashes#pc4,zennet.com">ashes#pc4,zennet.com</a>, Mon 28 Sep 1998, 03:27 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="01224" HREF="msg01224.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
S. Patrick Gallaty <a href="mailto:choke#sirius,com">choke#sirius,com</a>, Fri 25 Sep 1998, 17:55 GMT
<UL>
<LI><strong><A NAME="01227" HREF="msg01227.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Adam J. Thornton <a href="mailto:adam#phoenix,Princeton.EDU">adam#phoenix,Princeton.EDU</a>, Fri 25 Sep 1998, 18:53 GMT
</LI>
<LI><strong><A NAME="01229" HREF="msg01229.html">[MUD-Dev] Re: let's call it a spellcraft</A></strong>, 
Andy Cink <a href="mailto:ranthor#earthlink,net">ranthor#earthlink,net</a>, Fri 25 Sep 1998, 19:30 GMT
</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>