crackwilly21 Posted January 16, 2006 Report Share Posted January 16, 2006 Anyone got one, I'm using a new comp and can't remember or find one. Link to comment Share on other sites More sharing options...
Celerity Posted January 16, 2006 Report Share Posted January 16, 2006 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. Link to comment Share on other sites More sharing options...
crackwilly21 Posted January 16, 2006 Author Report Share Posted January 16, 2006 Thank you, very much. Link to comment Share on other sites More sharing options...
FatMike Posted January 16, 2006 Report Share Posted January 16, 2006 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. Link to comment Share on other sites More sharing options...
Teralis Posted January 16, 2006 Report Share Posted January 16, 2006 hmmm I cant seem to get it to work, keeps saying syntex error. #trigger {(%d)] Cmds} {%if(%1>50,%1,roll} sure thats it? Link to comment Share on other sites More sharing options...
Tom Posted January 16, 2006 Report Share Posted January 16, 2006 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. Link to comment Share on other sites More sharing options...
krounoi Posted January 16, 2006 Report Share Posted January 16, 2006 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. Link to comment Share on other sites More sharing options...
crackwilly21 Posted January 17, 2006 Author Report Share Posted January 17, 2006 Is that for Zmud, Krounoi? Link to comment Share on other sites More sharing options...
krounoi Posted January 17, 2006 Report Share Posted January 17, 2006 Yeppers! I have used it since version 4 or 5.something Link to comment Share on other sites More sharing options...
crackwilly21 Posted January 20, 2006 Author Report Share Posted January 20, 2006 What do you change to set the roll you want? Link to comment Share on other sites More sharing options...
Chayesh Posted January 20, 2006 Report Share Posted January 20, 2006 minn Link to comment Share on other sites More sharing options...
crackwilly21 Posted January 20, 2006 Author Report Share Posted January 20, 2006 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. Link to comment Share on other sites More sharing options...
krounoi Posted January 20, 2006 Report Share Posted January 20, 2006 #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. Link to comment Share on other sites More sharing options...
crackwilly21 Posted January 20, 2006 Author Report Share Posted January 20, 2006 But see, it doesn't even roll...it stays on 40 forever Link to comment Share on other sites More sharing options...
Magick Posted January 20, 2006 Report Share Posted January 20, 2006 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. Link to comment Share on other sites More sharing options...
krounoi Posted January 20, 2006 Report Share Posted January 20, 2006 Nice mod. What version are you running, Cracked? Link to comment Share on other sites More sharing options...
Magick Posted January 20, 2006 Report Share Posted January 20, 2006 v7.21, paid. Addition: Resetting the roll count automatically durring char creation: #trigger {You may choose from following professions~:} {#var count 0} Link to comment Share on other sites More sharing options...
crackwilly21 Posted January 21, 2006 Author Report Share Posted January 21, 2006 Cracked here. Link to comment Share on other sites More sharing options...
crackwilly21 Posted January 21, 2006 Author Report Share Posted January 21, 2006 Ok, got it, but how do I reset the count? Link to comment Share on other sites More sharing options...
Magick Posted January 21, 2006 Report Share Posted January 21, 2006 Addition: Resetting the roll count automatically durring char creation: #trigger {You may choose from following professions~:} {#var count 0} OR, plainly: #var count 0 Link to comment Share on other sites More sharing options...
crackwilly21 Posted June 27, 2006 Author Report Share Posted June 27, 2006 Bump, just in case. Link to comment Share on other sites More sharing options...
Grosek_ Posted February 18, 2008 Report Share Posted February 18, 2008 How awesome is it that well over a year since I last had to look for it, this thread is still here waiting for my return. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.