<!-- MHonArc v2.4.4 --> <!--X-Subject: Re: [MUD-Dev] Re: Introductions and descriptions --> <!--X-From-R13: "Xba O. Znzoreg" <wyflfvapNvk.argpbz.pbz> --> <!--X-Date: Fri, 28 Nov 1997 18:56:40 +0000 --> <!--X-Message-Id: 199711281856.MAA04504@dfw-ix12.ix.netcom.com --> <!--X-Content-Type: text/plain --> <!--X-Reference: 199711260715.AAA21839#user1,inficad.com --> <!--X-Reference: Pine.SV4.3.93.971128034653.4749A-100000@online1 --> <!--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:jlsysinc#ix,netcom.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> [ <a href="../">Other Periods</a> | <a href="../../">Other mailing lists</a> | <a href="/search.php3">Search</a> ] <br clear=all><hr> <!--X-Body-Begin--> <!--X-User-Header--> <!--X-User-Header-End--> <!--X-TopPNI--> Date: [ <a href="msg00435.html">Previous</a> | <a href="msg00437.html">Next</a> ] Thread: [ <a href="msg00428.html">Previous</a> | <a href="msg00437.html">Next</a> ] Index: [ <A HREF="author.html#00436">Author</A> | <A HREF="#00436">Date</A> | <A HREF="thread.html#00436">Thread</A> ] <!--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>: "Jon A. Lambert" <<A HREF="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</A>></LI> <LI><em>Date</em>: Fri, 28 Nov 1997 13:58:43 -4</LI> <LI><em>Comments</em>: Authenticated sender is <jlsysinc#popd,ix.netcom.com></LI> <LI><em>Reply-to</em>: <A HREF="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</A></LI> </UL> <!--X-Head-of-Message-End--> <!--X-Head-Body-Sep-Begin--> <HR> <!--X-Head-Body-Sep-End--> <!--X-Body-of-Message--> <PRE> On 28 Nov 97 at 9:55, Derrick Jones wrote: > On Wed, 26 Nov 1997, Adam Wiggins wrote: > > > > Better yet, use seeded randoms. Thus it's still a roll, it's just always > > the same for a given object. > > For instance, in this case, use the object id of the toadstool plus > > the object id of the character as your seed. You roll, from 0 to 100, > > a 74 (maybe adding in some 'bonus' for the type of toadstool). As long > > as that particular character's 'shrooms skill is below 74, they won't > > recognize the mushroom. Once they reach 74, they always recognize > > it. Now, a different character might recognize it at 68, and another > > at 77 - giving you a bit of randomness without making looking at the > > room twenty times useful. > > This can be used quite effectively for sneaking, hiding, any sort of > > lore skill, picking locks, whatever that you want to be a little random > > without being spammable (ie, typing sneak over and over until your > > 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 > 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 think he was suggesting something more along these lines: srand(object_id); if (skill > ((rand() % 100 + 1) + difficulty)) eureka(); For a given object the results are repeatedable for a given skill and difficulty level. No storage of the result is needed. The seed could be varied to make it more unique with: srand(object_id + hash(character_name)); Or something similiar. It is now repeatable for a given character. :) Now your sneak example is a good one. It is a bit different from recognition of the mushroom. Well maybe not too different. "Fungus Lore" would be a highly repeatable skill, whilst "Sneakin'" would not. The key I think is to vary the difficulty appropriate with the skill being exercised. Since "Fungus Lore" is largely dependent on Visual Perception and Memory, the difficulty is determined from conditions affecting these states. For instance, Dave the Druid's otherwise repeatable recognition of a previously known 'shroom might be impaired by his imbibing of large amounts of beer before-hand and walking about the woods at midnight. Now sneak depends on quite a few more variables. Not only the weather, lighting, and cover conditions of the area being sneaked through. But also the equipment and physical condition of the "sneaker". In addition the Visual Perception of the potential observers, "sneakees" come into play. Perhaps an amusing side-effect would be that if one assumes a constant difficulty within the lair of Smaug the Foul-Smelling, Clarence the Klutz might always be successful in sneakin' while Lawrence the Lithe would be doomed to failure. Of course that assumes a constant difficulty which would be quite rare especially with this particular skill. -- Jon A. Lambert If I'd known it was harmless, I would have killed it myself. </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="00414" HREF="msg00414.html">Re: [MUD-Dev] Re: Introductions and descriptions</A></STRONG> <UL><LI><EM>From:</EM> Adam Wiggins <nightfall#user1,inficad.com></LI></UL></LI> <LI><STRONG><A NAME="00428" HREF="msg00428.html">Re: [MUD-Dev] Re: Introductions and descriptions</A></STRONG> <UL><LI><EM>From:</EM> Derrick Jones <gunther#online1,magnus1.com></LI></UL></LI> </UL></LI></UL> <!--X-References-End--> <!--X-BotPNI--> <UL> <LI>Prev by Date: <STRONG><A HREF="msg00435.html">Re: Ho hum</A></STRONG> </LI> <LI>Next by Date: <STRONG><A HREF="msg00437.html">Re: [MUD-Dev] Re: Introductions and descriptions</A></STRONG> </LI> <LI>Prev by thread: <STRONG><A HREF="msg00428.html">Re: [MUD-Dev] Re: Introductions and descriptions</A></STRONG> </LI> <LI>Next by thread: <STRONG><A HREF="msg00437.html">Re: [MUD-Dev] Re: Introductions and descriptions</A></STRONG> </LI> <LI>Index(es): <UL> <LI><A HREF="index.html#00436"><STRONG>Date</STRONG></A></LI> <LI><A HREF="thread.html#00436"><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: Introductions and descriptions</STRONG>, <EM>(continued)</EM> <ul compact> <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> <LI><strong><A NAME="00447" HREF="msg00447.html">Re: [MUD-Dev] Re: Introductions and descriptions</A></strong>, Brandon J. Rickman <a href="mailto:ashes#pc4,zennet.com">ashes#pc4,zennet.com</a>, Sat 29 Nov 1997, 22:43 GMT </LI> </ul> </LI> </UL></BLOCKQUOTE> </ul> <hr> <center> [ <a href="../">Other Periods</a> | <a href="../../">Other mailing lists</a> | <a href="/search.php3">Search</a> ] </center> <hr> </body> </html>