Non-threaded

Forums » Advanced Editor Forum » Read Thread

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

Dice

2 months ago
I have two variables being randomized both with 1D52, and they roll the same thing everytime. How do I fix this?

Dice

2 months ago
"The same thing every time"

Does that mean that every time you start the game you get the same number, such as 12 and 27?

Or does that mean that every time you generate a number you get the same value twice, like 41 and 41?

Dice

2 months ago
Everytime I generate a number, I get the same value twice, like 41 and 41. The variables are completely empty too.

Dice

2 months ago
Are you generating on the same page, in the same section of code? If they are generated within a millisecond of one another, the seed hasn't changed...

Dice

2 months ago
Yeah I'm just using the advanced variable tool. I select reset then type 1D52. They're both on the same link to the next page.

Dice

2 months ago
I was really hoping that wasn't the case...that could really use fixing sometime

Dice

2 months ago
"known diceroll issue. just gotta use separate dice" was what Ford grunted when I asked.

Dice

2 months ago
How do you use seperate dice?

Read it wrong, it says seperate not sep r ate

Dice

2 months ago
Could do something like
%DIE1 := 1D52
%DIE2 := 1D104

IF %DIE2 > 52 THEN %DIE2 := %DIE2 - 52

Should get you same result, 2 dice rolls that are up to 52 in value.