1997Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev]  Re: Introductions and descriptions -->
<!--X-From-R13: Rreevpx Xbarf <thagureNbayvar1.zntahf1.pbz> -->
<!--X-Date: Fri, 28 Nov 1997 09:13:11 +0000 -->
<!--X-Message-Id: Pine.SV4.3.93.971128034653.4749A&#45;100000@online1 -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199711260715.AAA21839#user1,inficad.com -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev]  Re: Introductions and descriptions</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:gunther#online1,magnus1.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="msg00427.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00429.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00414.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00436.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00428">Author</A>
&nbsp;|&nbsp;<A HREF="#00428">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00428">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev]  Re: Introductions and descriptions</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#null,net">mud-dev#null,net</A></LI>
<LI><em>Subject</em>: Re: [MUD-Dev]  Re: Introductions and descriptions</LI>
<LI><em>From</em>: Derrick Jones &lt;<A HREF="mailto:gunther#online1,magnus1.com">gunther#online1,magnus1.com</A>&gt;</LI>
<LI><em>Date</em>: Fri, 28 Nov 1997 04:21:10 -0500 (EST)</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
On Wed, 26 Nov 1997, Adam Wiggins wrote:
&gt; [Richard Woolcock:]
&gt; &gt; &gt; Well Bob will find out eventually if he keeps seeing this mushroom, because
&gt; &gt; &gt; for the game to describe it as "Oooh a lovely mushroom", it requires Bob to
&gt; &gt; &gt; perform his survival skill and he could succeed at some stage.  The only way
&gt; &gt; 
&gt; &gt; Hmmm you could use a 'chance of success' - however what I was referring to was
&gt; &gt; more along the lines of skill levels - thus
&gt; &gt; 
&gt; &gt; Survival 0 - You know nothing about survival.
&gt; &gt; Survival 1 - You know the basics, recognise simple plants, etc.
&gt; &gt; Survival 2 - You are intermediate, can recognise poisonous fungus, etc.
&gt; &gt; Survival 3 - You are skilled, blah blah blah....etc....
&gt; &gt; 
&gt; &gt; Thus if Bob has Survival &lt; 2, he won't recognise toadstools, whilst if he
&gt; &gt; has Survival &gt;= 2, he will.  Survival ROLLS would be used in 'chance' 
&gt; &gt; situations.
&gt; 
&gt; Better yet, use seeded randoms.  Thus it's still a roll, it's just always
&gt; the same for a given object.
&gt; For instance, in this case, use the object id of the toadstool plus
&gt; the object id of the character as your seed.  You roll, from 0 to 100,
&gt; a 74 (maybe adding in some 'bonus' for the type of toadstool).  As long
&gt; as that particular character's 'shrooms skill is below 74, they won't
&gt; recognize the mushroom.  Once they reach 74, they always recognize
&gt; it.  Now, a different character might recognize it at 68, and another
&gt; at 77 - giving you a bit of randomness without making looking at the
&gt; room twenty times useful.
&gt; This can be used quite effectively for sneaking, hiding, any sort of
&gt; lore skill, picking locks, whatever that you want to be a little random
&gt; without being spammable (ie, typing sneak over and over until your
&gt; buddy tells you you're sneaking).

So, when the character first encounters the mushroom, the character checks
to see if he can identify it.  (if skill &gt; rand(0,100) + difficulty). The
game then remembers the result of rand() and stores it with the character
for each type of mushroom.  What is gained from this as apposed keeping
track of object recognition?  Certainly not memory, as you have to
remember the roll, which is larger than a single bit (recognized/not
recognized) for each object.  
Or if you simply determine the rand() call from PC and object stats
(idnums) then you've picked which objects the player can and cannot
identify from the point of creation.  Then the characters true probability
of success for a given event is predetermined to be either 1 or 0.  Then
you'll have PC's saying  "Sorry guys, I can't sneak in this room...meet me
two rooms west...I always sneak there.".
I don't like 'skill spamming' either, but simply giving characters a 0% or
100% success rate can't be the answer.  Perhaps not letting characters
re-attempt a failure for a given amount of time.  For example, if Boffo
fails to identify the mushroom, add the mushroom identification to a list
of recent failed skill attempts, and each time Boffo attempts a skill,
loop through this list to see if the skill has been failed recently.  If
the failure is listed, simply assign a 0% chance of success.
So if Boffo walks back and forth passing the mushroom repeatedly, then she
won't 'suddenly' recognize the item.  If she passes another a week later,
however, she has a normal chance of identifying it (looking at mushroom
with a clear mind/different lighting/whatever).  The problem occurs when a
character does recognize the mushroom.  Should we just rely on the player
to remember that the mushroom they saw in the forest is poisonous?  Or is
this a place where I should 'bite the bullet' when it comes to memory and
keep a table of recognized items?  I like to think(from personal
experience as a player) that the player can remember that the 'strange
mushroom growing on the forest floor' is really the 'deadly viper
toadstool' if they are showed both strings at some point...

Gunther


</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="00441" HREF="msg00441.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>
<ul compact><li><em>From:</em> Adam Wiggins &lt;nightfall#user1,inficad.com&gt;</li></ul>
<li><strong><A NAME="00437" HREF="msg00437.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>
<ul compact><li><em>From:</em> Richard Woolcock &lt;KaVir#dial,pipex.com&gt;</li></ul>
<li><strong><A NAME="00436" HREF="msg00436.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>
<ul compact><li><em>From:</em> "Jon A. Lambert" &lt;jlsysinc#ix,netcom.com&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00414" HREF="msg00414.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></STRONG>
<UL><LI><EM>From:</EM> Adam Wiggins &lt;nightfall#user1,inficad.com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00427.html">Re: [MUD-Dev]  Re: Less numbers, more roleplaying.</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00429.html">Re: [MUD-Dev]  Re: Less numbers, more roleplaying.</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00414.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00436.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00428"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00428"><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>Re: [MUD-Dev]  Re: Introductions and descriptions</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<LI><strong><A NAME="00401" HREF="msg00401.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>, 
Richard Woolcock <a href="mailto:KaVir#dial,pipex.com">KaVir#dial,pipex.com</a>, Mon 24 Nov 1997, 18:53 GMT
</LI>
</ul>
<LI><strong><A NAME="00407" HREF="msg00407.html">[MUD-Dev]  Re: Introductions and descriptions</A></strong>, 
Maddy <a href="mailto:maddy#fysh,org">maddy#fysh,org</a>, Tue 25 Nov 1997, 12:55 GMT
<UL>
<LI><strong><A NAME="00408" HREF="msg00408.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>, 
Richard Woolcock <a href="mailto:KaVir#dial,pipex.com">KaVir#dial,pipex.com</a>, Tue 25 Nov 1997, 21:49 GMT
<UL>
<LI><strong><A NAME="00414" HREF="msg00414.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>, 
Adam Wiggins <a href="mailto:nightfall#user1,inficad.com">nightfall#user1,inficad.com</a>, Wed 26 Nov 1997, 07:15 GMT
<UL>
<LI><strong><A NAME="00428" HREF="msg00428.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>, 
Derrick Jones <a href="mailto:gunther#online1,magnus1.com">gunther#online1,magnus1.com</a>, Fri 28 Nov 1997, 09:13 GMT
<UL>
<LI><strong><A NAME="00436" HREF="msg00436.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Fri 28 Nov 1997, 18:56 GMT
</LI>
<LI><strong><A NAME="00437" HREF="msg00437.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>, 
Richard Woolcock <a href="mailto:KaVir#dial,pipex.com">KaVir#dial,pipex.com</a>, Fri 28 Nov 1997, 18:57 GMT
</LI>
<LI><strong><A NAME="00441" HREF="msg00441.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>, 
Adam Wiggins <a href="mailto:nightfall#user1,inficad.com">nightfall#user1,inficad.com</a>, Fri 28 Nov 1997, 21:26 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00669" HREF="msg00669.html">Re: [MUD-Dev]  Re: Introductions and descriptions</A></strong>, 
coder <a href="mailto:coder#ibm,net">coder#ibm,net</a>, Thu 11 Dec 1997, 05:00 GMT
</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>