|
Greyhewn Newbie
Joined: 18 Jan 2003 Posts: 4 Location: USA
|
Posted: Tue Dec 02, 2003 8:42 am
!!!RavenMUD Roller Help!!! |
This is what I get:
Your abilities are:
Str [ Above Avg] Int [ Genius] Wis [ Naive]
Dex [ Below Avg] Con [ Average] Cha [ Average]
roll again?(y/n):
This is what ive been able to come up with, however the rollers will not continue rolling for some reason.
(I have 3 patterns, 1 for each line)
Pattern1:
Str ~[(*)~] Int ~[(*)~] Wis ~[(*)~]
Commands1:
str=%1
int=%2
wis=%3
Pattern2:
Dex ~[(*)~] Con ~[(*)~] Cha ~[(*)~]
Commands2:
dex=%1
int=%2
wis=%3
(this is where I get sorta confused. There may be a simpler way of doing that last part I dont know.)
(this triggers on prompt I do believe)
Pattern:
roll again?~(y/n~):
Commands:
???
|
|
|
|
Greyhewn Newbie
Joined: 18 Jan 2003 Posts: 4 Location: USA
|
Posted: Tue Dec 02, 2003 8:47 am |
Im attempting to just roll:
Int [ Genius] Wis [ Shrewd] Dex [ Agile] Con [ Sturdy]
(roughly) (int):20 (wis):16 (dex):18 (con):17 |
|
|
|
Kjata GURU
Joined: 10 Oct 2000 Posts: 4379 Location: USA
|
Posted: Tue Dec 02, 2003 12:24 pm |
If you just want those stats to have those exact values, then you check for this with an #IF in the third trigger:
#IF (@int = " Genius" and @wis = " Shrewd" and @dex = " Agile" and @con = " Sturdy") {n} {y}
and do make sure that the Trigger on Prompt option for this trigger is selected. |
|
|
|
Greyhewn Newbie
Joined: 18 Jan 2003 Posts: 4 Location: USA
|
Posted: Tue Dec 02, 2003 8:35 pm |
Alright I just copied and pasted:
#IF (@int = " Genius" and @wis = " Shrewd" and @dex = " Agile" and @con = " Sturdy") {n} {y}
However it just continues to roll, I check the command but just making it:
#IF (@int = " Genius") {n} {y}
and it just rolls infinitely |
|
|
|
LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Tue Dec 02, 2003 11:33 pm |
You probably just need to remove the leading spaces.
#IF (@int = "Genius" AND @wis = "Shrewd" AND @dex = "Agile" AND @con = "Sturdy") {n} {y} |
|
|
|
|
|