The problem here is that inside a function, there is say, the following code:
function blah()
{
setRandomSeed(1231410857510857584752610452674907490747475251113186867577116104117842712211751241120756767676774877366);
for(%a = 0; %a < 50; %a++)
{
echo(getRandom(0, 100));
}
}
Try that on mac and pc, it will return different results.
Why?
How can I fix that?