1999Q1/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Info about different skill systems -->
<!--X-From-R13: Szvy Svserz <rzvyNcebcurpl.yh> -->
<!--X-Date: Sun, 3 Jan 1999 17:45:10 &#45;0800 -->
<!--X-Message-Id: Version.32.19990104004826.00f5ed10#sendar,prophecy.lu -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: Pine.GSO.3.96.990102222436.18385A&#45;100000@uhunix2 -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: Info about different skill systems</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:emil#prophecy,lu">
</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="msg00027.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00029.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00031.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00038.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00028">Author</A>
&nbsp;|&nbsp;<A HREF="#00028">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00028">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: Info about different skill systems</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: Info about different skill systems</LI>
<LI><em>From</em>: Emil Eifrem &lt;<A HREF="mailto:emil#prophecy,lu">emil#prophecy,lu</A>&gt;</LI>
<LI><em>Date</em>: Mon, 04 Jan 1999 02:41:11 +0100</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>
At 09:25 AM 1/3/99 , Nathan F Yospe wrote:
&gt;As the guy who coined "Skill Web" I ought to answer this one. There will
&gt;be more info if you cross ref my name on your search, but, for now... it
&gt;would be unfair to just dangle that in front of you and not add anything
&gt;new. So... another informational post. 

Thanks. :) 

I wanted to cross reference 'skill web' with your name and 'skill tree'
with Raph Koster (or with JCL since I think the original message about
skill trees was posted by JCL before Mr Koster joined the list) but the
lack of boolean operators (that I could find at least) in the search engine
stopped me. Doing it by hand feels kinda, eh, wasteful of time.

&gt;The primary approach is as follows: I define a set of attributes, with a
&gt;framework on the class definition for an attribute that is open ended to
&gt;sufficient degree to allow new attributes to be added without hardcoding
&gt;changes... attributes link to other attributes, and are documented quite
&gt;extensively. They should almost never be added. The character object the
&gt;characters all inherit from has attributes associated with it, as do the
&gt;components of its body. (Attributes inherit from several subclasses, the
&gt;physical, mental, and reflexive being high among them. Physical and some
&gt;reflexive attributes are inherited by parts of the body.) Attributes for
&gt;an individual are stored as numbers, for the base object of individuals,
&gt;as ranges and a default. (More can be found on my inheritance model from
&gt;the archives.) Skills are defined by requirements (environmental, basic,
&gt;hosted) and multiple skills may cover a single task (IE, flight is quite
&gt;different for a Trae'laec or a *Hzzt* Swarm), with requirements adding a
&gt;filter on the basic list. All skills attemptable by a species are listed
&gt;for an individual of that species, and attempts to execute a command for
&gt;which no listed skill exists will begin checking the primary skills list
&gt;for the gameworld. This might be changed in the future. I can't see much
&gt;point in allowing a human to attempt to, say, Fazz in a Humanx universe.
&gt;Likewise, a single skill may cover multiple tasks. As a skill can have a
&gt;series of derivatives with similar requirements (inheritance model) with
&gt;other, nonderived skills using the same attributes, skills may be honed,
&gt;or at least improved, by related activities. There is one attribute that
&gt;should be created for each skill, a uniqueness value to keep related but
&gt;not identical skills from perfecting something. Skills link to verbs, or
&gt;to exitential verbs. Skill attributes include academic knowledge in some
&gt;related field or another... and crosslinking makes this propogate across
&gt;skills. I update attributes just after a skill use, and skills just when
&gt;that skill has been checked, after the requirements have checked, before
&gt;success calculation. The checking time is critical. I use weighted links
&gt;from skill to attribute (attributes don't know what skills they affect.)
&gt;and from attribute to attribute (monodirectional).

Wow. Lots of good information, lots of for me new terminology and lots of
lack-of-line-breaks. Ok, let's see what I can make of this.


&gt;The primary approach is as follows: I define a set of attributes, [snip]
&gt;attributes link to other attributes, and are documented quite
&gt;extensively. They should almost never be added. 

What kind of attributes do you have? It seems to me like you have largely
avoided broad attributes such as 'Constitution' and 'Dexterity,' and I get
the image that you have quite a lot of fairly detailed attributes for your
characters.

You speak further down about monodirectional weighted links between
attributes. Could you or someone else elaborate a little more on weighted
links? Please excuse my ignorance, but I'm afraid I'm not familiar with the
concept of weighted relationships. I know it's basic and I've seen it
mentioned quite a few times, but it's nonetheless a blank field in my
computer vocabulary. :(

&gt;The character object the
&gt;characters all inherit from has attributes associated with it, as do the
&gt;components of its body. 

Cool. So loosing an arm or a leg will make attributes that depend on that
bodypart suffer. We have that too, but it's almost hard-coded and not as
elegant a design.

&gt;Skills are defined by requirements (environmental, basic,
&gt;hosted) and multiple skills may cover a single task (IE, flight is quite
&gt;different for a Trae'laec or a *Hzzt* Swarm), with requirements adding a
&gt;filter on the basic list. 

This confuses me. So the requirements are only a help for the parser -- in
this case used as a filter to help the parser decide which skill to use?
Where would simple combat skills such as 'parry' or 'dodge' fit? 'Hunt'?
What would their requirements be?

And *who* is coming up with these names? A random-character output program?
Still, it's no worse than the name of Jon Leonard's mud. :)

&gt;All skills attemptable by a species are listed
&gt;for an individual of that species, and attempts to execute a command for
&gt;which no listed skill exists will begin checking the primary skills list
&gt;for the gameworld. This might be changed in the future. I can't see much
&gt;point in allowing a human to attempt to, say, Fazz in a Humanx universe.

Ok, so if it doesn't find a neat match in the requirement filtered list of
skills, it looks in the primary list for the game world. Is your server
generic, so it can be customizable for different types of worlds. Otherwise
I don't quite understand the purpose of the gameworld-dependant skills list.

I'm not even gonna comment on Fazz and Humanx. ;)

&gt;Likewise, a single skill may cover multiple tasks. As a skill can have a
&gt;series of derivatives with similar requirements (inheritance model) with
&gt;other, nonderived skills using the same attributes, skills may be honed,
&gt;or at least improved, by related activities. 

Ok, so there's basically no way to grow better at skills. Using a skill
will only improve one attribute (or more), which in turn will grant you a
higher value in skills affected by that attribute. Interesting.

&gt;Skills link to verbs, or to exitential verbs.

What's an exitential verb?

Thanks for the info so far, your system is definitely very different from
most I've seen. I wish I could compare it with a neural net design and see
the similarities, but my knowledge and confidence in AI programming in
general and neural nets in particular is unfortunately shaky at best.


-EE [emil#prophecy,lu]



</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="00024" HREF="msg00024.html">[MUD-Dev] Info about different skill systems</A></STRONG>
<UL><LI><EM>From:</EM> Nathan F Yospe &lt;yospe#hawaii,edu&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00027.html">[MUD-Dev] Re: Info about different skill systems</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00029.html">[MUD-Dev] Re: MUD Design doc (long)</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00031.html">[MUD-Dev] Re: Info about different skill systems</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00038.html">[MUD-Dev] Re: Info about different skill systems</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00028"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00028"><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] Info about different skill systems</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00024" HREF="msg00024.html">[MUD-Dev] Info about different skill systems</A></strong>, 
Nathan F Yospe <a href="mailto:yospe#hawaii,edu">yospe#hawaii,edu</a>, Sun 03 Jan 1999, 08:25 GMT
<UL>
<LI><strong><A NAME="00026" HREF="msg00026.html">[MUD-Dev] Re: Info about different skill systems</A></strong>, 
Ben Greear <a href="mailto:greear#cyberhighway,net">greear#cyberhighway,net</a>, Sun 03 Jan 1999, 18:26 GMT
<UL>
<LI><strong><A NAME="00027" HREF="msg00027.html">[MUD-Dev] Re: Info about different skill systems</A></strong>, 
Emil Eifrem <a href="mailto:emil#prophecy,lu">emil#prophecy,lu</a>, Mon 04 Jan 1999, 01:45 GMT
<UL>
<LI><strong><A NAME="00031" HREF="msg00031.html">[MUD-Dev] Re: Info about different skill systems</A></strong>, 
Ben Greear <a href="mailto:greear#cyberhighway,net">greear#cyberhighway,net</a>, Mon 04 Jan 1999, 04:48 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00028" HREF="msg00028.html">[MUD-Dev] Re: Info about different skill systems</A></strong>, 
Emil Eifrem <a href="mailto:emil#prophecy,lu">emil#prophecy,lu</a>, Mon 04 Jan 1999, 01:45 GMT
</LI>
<LI><strong><A NAME="00038" HREF="msg00038.html">[MUD-Dev] Re: Info about different skill systems</A></strong>, 
Travis S. Casey <a href="mailto:efindel#io,com">efindel#io,com</a>, Mon 04 Jan 1999, 20:21 GMT
</LI>
</UL>
</LI>
</ul>
</LI>
<LI><strong><A NAME="00001" HREF="msg00001.html">[MUD-Dev] From DevMud: Database module</A></strong>, 
Greg Connor <a href="mailto:gconnor#nekodojo,org">gconnor#nekodojo,org</a>, Fri 01 Jan 1999, 22:41 GMT
<UL>
<LI><strong><A NAME="00091" HREF="msg00091.html">[MUD-Dev] Re: From DevMud: Database module</A></strong>, 
Mik Clarke <a href="mailto:mikclrk#ibm,net">mikclrk#ibm,net</a>, Fri 08 Jan 1999, 20:16 GMT
<UL>
<LI><strong><A NAME="00213" HREF="msg00213.html">[MUD-Dev] Re: From DevMud: Database module</A></strong>, 
Greg Connor <a href="mailto:gconnor#nekodojo,org">gconnor#nekodojo,org</a>, Sun 17 Jan 1999, 05:31 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>