How to do this?
my code is:
in collision event of the player:
load = rand(10);
if(load == 7)
{
LoadGame("Fight.ged");
}
if(load == 3)
{
LoadGame("Fight.ged");
}
i want to load the Fight.ged when the random number is 3 or 7.
How to do that?