Code: Select all
if(rand(1,500) > 250)
{
print"You win.";
}
else
{
print"You lose.";
}
Code: Select all
if(rand(1,500) > 250)
{
print"You win.";
}
else
{
print"You lose.";
}
That is probably a good idea. Whenever something seems to be "cracked" in your game and you don't get what is going on, log, log, logLiquid wrote:Thanks for the replies, I decided to change up the code a bit & also code in better logs (logging the rand numbers generated) so I can get a better idea of what's going on.