Hi guys, this is my latest issue.
If you are level 1 you can roll 1 dice.
If you are level 2 you can roll 2 die.
This is the script I have tried:
%RESULT := %RESULT + %LEVEL + "D6"
I then tried to change the dice value instead:
%RESULT := %RESULT + "1D" + %LEVEL
Didn't work either. Do I really have to surrender and script:
IF %LEVEL := 1
THEN %RESULT := 1D6
IF %LEVEL := 2
THEN %LEVEL := 2D6
because this method could take a while.
Any help would be greatly appreciated.