Jump to content

zmud stat roller


killalou

Recommended Posts

Using search:

To disable when you have that perfect roll automatically. (Modified Krouni trigger):

Enable the class before you start rolling. That is, when that first roll line pops up. Do NOT remove the 'Disable when connecting to a MUD' checked box. This way, it will not interfere with normal game play. Hit 'Enter' with no arguments in the command line to start the trigger rolling.

Create a new folder using the command line:
#CLASS {RollingFolder} {disable}

And a new trigger using the command line:
#TRIGGER {disablerollingtrigger} {#class RollingFolder 0}

Now the rolling trigger IN the new folder:
Pattern:
~[(%d)~] Cmds~:

Value:
#ad count 1
#var total %1
%if( @total < @minn, "roll", "disablerollingtrigger")
big = %if( @total >= @big, @total, @big)
#say count~: @count, Largest~: @big, Minimum~: @minn, Current~: @total

To set your minimum roll on the command line:
#var minn 53

Mind you, all the tilde's (~) in that are simply because I have the colon instead of the default semicolon as my command stacking character. This will not affect the trigger if you leave them in.

I use this in zmud 7.21 and it works great :)

Link to comment
Share on other sites

I use a bit of a more simplistic one:

in the pattern of the trigger I have inputed:"(%d)] Cmds"

in the value:"%if( %1>52, %1)roll"

the value after the ">" sign is what you want the roll to be above... so in this case it will roll until it hits a 53 or above.

Also, that is without the quotations.

Link to comment
Share on other sites

The one I use I got from... Well, I don't remember who. It was forever ago.

Pattern: (%d)] Cmds:

Commands: #if (%1 > @Highest) {#VAR Highest %1}

#SHOW {Highest ~[@Highest~] Goal ~[@Goal~]}

#if (%1 >= @Goal) {#SAYP Spank me sweet Jesus!

#beep} {roll}

Link to comment
Share on other sites

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...