Non-threaded

Forums » Advanced Editor Forum » Read Thread

Get help from the experts on variables, scripts, items, and other scary things.

Help

7 years ago

How do you make links have 'chance?' 

For example: a 25% chance of a sucess attack and a 75% chance of a miss?

Help

7 years ago

This kind of thing goes in advanced editor forum, just a tip for the future.

This should help:
http://chooseyourstory.com/help/articles/article.aspx?ArticleId=14

Help

7 years ago

Thanks :)

Help

7 years ago
Do a 1D4 roll and then direct each number to a corresponding page. The first number is the number of dice. The second is how many sides each die has.

e.g. for a 50% chance

%RAND := 1D2

IF %RAND = 1 THEN $DEST = @P96
IF %RAND = 2 THEN $DEST = @P69

Help

7 years ago

THANK YOU ALL :)