Go back to previous topic
Forum Name New Player Q&A
Topic subjectI can't get this trigger roller to work... Any help ple...
Topic URLhttps://forums.carrionfields.com/dcboard.php?az=show_topic&forum=5&topic_id=792
792, I can't get this trigger roller to work... Any help ple...
Posted by Meoilaxenz on Wed 31-Dec-69 07:00 PM
This was the original 1 trigger script I went used.

Trigger pattern:
(*)str (*)int (*)wis (*)dex (*)con

Value:
#math curr {%1 + %2 + %3 + %4 + %5}
#if (@cmax<@curr) {cmax=@curr}
#if (@curr<91) {n @curr @cmax}
#if (@curr>=91) {#say @curr}

I Modified it to look like this but it doesn't help... What is wrong?
I want to be able to roll for Charisma too. Any help is much appreciated

Pattern:
(*)str (*)int (*)wis (*)dex (*)con (*)chr Accept these stats?

Value:

#math curr {%1 + %2 + %3 + %4 + %5 + %6}
#if (@cmax<@curr) {cmax=@curr}
#if (@curr<116) {n @curr @cmax}
#if (@curr>=116) {#say @curr}
795, Roller
Posted by Aarn on Wed 31-Dec-69 07:00 PM
Here's a very simple roller for Zmud that I use. It's got no bells and whistles, it just works. Just change the 93 there to whatever value you want to see on your total rolls at a minimum, and away you go. Oh, and make sure under the options for that trigger, you make it fire on "prompt" and NOT on "new line". Should be much easier to modify this to accomodate charisma.

Pattern: ^&{str}str &{int}int &{wis}wis &{dex}dex &{con}con &{chr}chr Accept these stats~? ~

Value: #IF ((@str+@int+@wis+@dex+@con)<93) {n}
796, Wow, thanks for being helpful Aarn! :) nt
Posted by Larcat on Wed 31-Dec-69 07:00 PM
nt
794, www.yacfr.org
Posted by Larcat on Wed 31-Dec-69 07:00 PM
nt
793, My best guess is that the pattern is wrong.
Posted by DurNominator on Wed 31-Dec-69 07:00 PM
Try using pattern:

*str *int *wis *dex *con *chr

If the trigger fired as it should have, then this isn't the problem, but if it didn't, the pattern is likely to be the problem.