forums wiki races classes cabals religions world history immortals all pages bugs items helps stats changes calendar map login donate play now

Zmud Rolling trigger?

Anyone got one, I'm using a new comp and can't remember or find one.

Props to Meliana from an old forum for this simple zMUD trigger:

#trigger {(%d)] Cmds} {%if(%1>50,%1,roll}

It will stop at 51 and above. Change 50 to anything you'd rather have.

Thank you, very much.

wonder if that will work for jmc, maybe I'll try to roll another fae invoker and see because it's much better than the one I have now. Hmmm, nope doesn't work.

hmmm I cant seem to get it to work, keeps saying syntex error.

#trigger {(%d)] Cmds} {%if(%1>50,%1,roll}

sure thats it?

If it's the newest version of ZMud that may not work anymore. I don't use ZMud typically, but recently I used it for a few days, and it didn't take more than 10 minutes to figure out the trigger programming. Use the documentation, they give examples.

pattern:

[(%d)] Cmds: help, end, roll, add, rem>

value:

#ad count 1

#var total %1

%if( @total < @minn, "roll")

big = %if( @total >= @big, @total, @big)

#say @count, @big, @minn, @total

count tells you how many times it has rolled,

minn is the target you are shooting for,

big is the largest roll so far,

total is the current roll.

I have used this one for a long time. Someone posted it on the old, or old-old forum.

Oh, be sure to turn it off before you start adding points.

Is that for Zmud, Krounoi?

Yeppers! I have used it since version 4 or 5.something

What do you change to set the roll you want?

minn

how would I set it up for a roll of 53? I don't know jack about this.

it keeps saying Variable total not defined on the roller screen.

#var minn 53 (Typed in on the command line)

will set your minnimum roll as a 53.

#ad count 1

#var total %1

%if( @total < @minn, "roll")

big = %if( @total >= @big, @total, @big)

#say @count, @big, @minn, @total

Make sure there is no space between the % and the 1.

But see, it doesn't even roll...it stays on 40 forever

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 
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.

Nice mod.

What version are you running, Cracked?

v7.21, paid.

Addition:

Resetting the roll count automatically durring char creation:

#trigger {You may choose from following professions~:} {#var count 0}

Cracked here.

Ok, got it, but how do I reset the count?

Addition:

Resetting the roll count automatically durring char creation:


#trigger {You may choose from following professions~:} {#var count 0}***

OR, plainly:

#var count 0