1999Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Containing automation? -->
<!--X-From-R13: [nggurj [vunyl <qvnoybNorfg.pbz> -->
<!--X-Date: Mon, 19 Jul 1999 15:18:09 &#45;0700 -->
<!--X-Message-Id: Pine.BSF.4.10.9907191438250.25078&#45;100000#shell9,ba.best.com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: Pine.LNX.3.93.990719145818.29780A&#45;100000#plato,nmia.com -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] Containing automation?</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:diablo#best,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="msg00934.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00936.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00934.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00939.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00935">Author</A>
&nbsp;|&nbsp;<A HREF="#00935">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00935">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Containing automation?</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>: Re: [MUD-Dev] Containing automation?</LI>
<LI><em>From</em>: Matthew Mihaly &lt;<A HREF="mailto:diablo#best,com">diablo#best,com</A>&gt;</LI>
<LI><em>Date</em>: Mon, 19 Jul 1999 15:06:48 -0700 (PDT)</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>
&lt;snipped question from Timothy O'Neill Dang on preventing client-side
automation&gt;


We have done a LOT of work to mess with automation, both those stupid
auto-walks that zmud has and your general triggers. We feel that it is not
possible to totally stop it, unless your game was utterly random. Of
course, in that case, a user without triggers would be screwed too. So the
goal has to be defeating most triggers while not making it much more
difficult for the average player to play (I don't know why you are
concerned with people macroing thing. Macros simply equalize the
differences in people's typing speed. They don't affect the
decision-making process at all, unlike triggers.)

While it's probably possible to trigger anything that can be reacted to by
a human, what you have to do is decide which client-side packages you are
concerned with defeating, and then make sure you understand their
capabilities. I, personally, think Zugg is the devil, and should be
crucified for all the annoying triggering stuff he has in Zmud. Zmud is
the major standard mud client, but of course tinyfugue, tintin, mudmaster,
rapscallion, etc all have trigger capabilities.

What we've found is that, contrary to Koster's law (which I believe is
incorrect), it IS possible to stop people from automating all functions of
your game. Someone potentially COULD automate our combat system, but it
would be an undertaking of massive artificial intelligence, and I don't
see anyone bothering to take the time to do it. (I believe Koster's law
says that players WILL automate everything, which clearly is not true.)

The techniques we use to prevent this generally involve forcing the player
to make decisions based upon information contained in previous lines. We
also take advantage of latency to screw with triggers.
Pardon the world-specific examples, but they are the easiest for me to
give.

Example: We have an affliction that will cause about 25-30% of a player's
commands to be executed as another, random command. So, say you have this
affliction (which we call 'stupidity'), and you get hit by the venom
curare, which paralyses. 

Client would see: A prickly stinging overwhelms your body, fading away
into numbness.

Client would then try to trigger "eat bloodroot".

If that command got screwed up by stupidity, then potentailly any feedback
from the server is possible. Because of latency, I see no way of the
client knowing if the command went through properly or not. It could wait,
say, a couple seconds to see if the text it expects in response to eat
bloodroot (something about "Your muscles unlock and you can move again"),
but that means that the trigger doesn't even know whether to try again for
a full 2 seconds, which is a very long time. If it weren't for latency,
then the client could simply check the next piece of output it receives
after eating the bloodroot, but because of latency, there is no way for it
to know if the next output it gets relates to the eating bloodroot or not.

Another example of how to screw with triggers:
Say that someone wants to trigger the paralysis message, as above. He
decides not to worry about the stupidity affliction and count on being
able to manually heal himself with a macro if his trigger doesn't work (a
partial victory for us already). However, the bloodroot may only be eaten
with any effect once per second. So, you give people the ability to "fake"
delivering the curare venom, and THEN deliver the real one. Assuming
latency is low, the person's trigger will kick in, trying to cure the fake
message, and then when the REAL curare hits him, his trigger will try to
eat the bloodroot to cure it, but will fail, due to having just eaten
bloodroot. Anyone NOT using triggers will not be fooled, because he'll see
two messages and only respond to the second one (people can't respond as
fast as a computer can).


I'm not sure how much help this is for defeating triggers in an economic
system, but I want to emphasize that it IS possible to create a system
that players will _not_ automate. Automating our entire combat system
would be far far beyond the scope of 99.9% of our user's capabilities, and
not worth the time,effort, and expense for the .1% that might be able to
manage it (a custom, very powerful client would have to be written, with
fairly sophisticated AI, etc).

The economic system you described sounds pretty basic, and it doesn't
sound as if there is much strategy involved, or much decision-making
involved. If you want to stop people from automating it, I think you have
to force the users to make decisions based on previous output. If there is
just a standard way of doing things, ie a to b to c, then you are going to
be pretty much screwed in terms of stopping automation, I suspect.

--matt





_______________________________________________
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="00939" HREF="msg00939.html">Re: [MUD-Dev] Containing automation?</A></strong>
<ul compact><li><em>From:</em> Greg Miller &lt;gmiller#classic-games,com&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00932" HREF="msg00932.html">[MUD-Dev] Containing automation?</A></STRONG>
<UL><LI><EM>From:</EM> Timothy O'Neill Dang &lt;timothy#nmia,com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00934.html">Re: [MUD-Dev] Containing automation?</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00936.html">Re: [MUD-Dev] Containing automation?</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00934.html">Re: [MUD-Dev] Containing automation?</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00939.html">Re: [MUD-Dev] Containing automation?</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00935"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00935"><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] Containing automation?</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<LI><strong><A NAME="00958" HREF="msg00958.html">Re: [MUD-Dev] Containing automation?</A></strong>, 
Timothy O'Neill Dang <a href="mailto:timothy#nmia,com">timothy#nmia,com</a>, Tue 20 Jul 1999, 20:33 GMT
<UL>
<LI><strong><A NAME="00962" HREF="msg00962.html">Re: [MUD-Dev] Containing automation?</A></strong>, 
Greg Miller <a href="mailto:gmiller#classic-games,com">gmiller#classic-games,com</a>, Tue 20 Jul 1999, 22:28 GMT
</LI>
<LI><strong><A NAME="00964" HREF="msg00964.html">Re: [MUD-Dev] Containing automation?</A></strong>, 
Andru Luvisi <a href="mailto:luvisi#andru,sonoma.edu">luvisi#andru,sonoma.edu</a>, Tue 20 Jul 1999, 22:28 GMT
</LI>
</UL>
</LI>
</ul>
<LI><strong><A NAME="00934" HREF="msg00934.html">Re: [MUD-Dev] Containing automation?</A></strong>, 
Greg Miller <a href="mailto:gmiller#classic-games,com">gmiller#classic-games,com</a>, Mon 19 Jul 1999, 22:17 GMT
</LI>
<LI><strong><A NAME="00935" HREF="msg00935.html">Re: [MUD-Dev] Containing automation?</A></strong>, 
Matthew Mihaly <a href="mailto:diablo#best,com">diablo#best,com</a>, Mon 19 Jul 1999, 22:18 GMT
<UL>
<LI><strong><A NAME="00939" HREF="msg00939.html">Re: [MUD-Dev] Containing automation?</A></strong>, 
Greg Miller <a href="mailto:gmiller#classic-games,com">gmiller#classic-games,com</a>, Mon 19 Jul 1999, 22:53 GMT
<UL>
<LI><strong><A NAME="00941" HREF="msg00941.html">Re: [MUD-Dev] Containing automation?</A></strong>, 
Matthew Mihaly <a href="mailto:diablo#best,com">diablo#best,com</a>, Tue 20 Jul 1999, 00:25 GMT
<UL>
<LI><strong><A NAME="00954" HREF="msg00954.html">Re: [MUD-Dev] Containing automation?</A></strong>, 
Greg Miller <a href="mailto:gmiller#classic-games,com">gmiller#classic-games,com</a>, Tue 20 Jul 1999, 20:32 GMT
<UL>
<LI><strong><A NAME="00960" HREF="msg00960.html">Re: [MUD-Dev] Containing automation?</A></strong>, 
Matthew Mihaly <a href="mailto:diablo#best,com">diablo#best,com</a>, Tue 20 Jul 1999, 22:27 GMT
</LI>
</UL>
</LI>
</UL>
</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>