Reply to Re: Amusing bug?
If you don't have an account, just leave the password field blank.
void poison( void )
{
loop_here:
wait(500);
&random = random(2,1);
if (&random == 2)
{
hurt(¤t_sprite, 5);
}
goto loop_here;
}
i fixed it so that it doesn't just do nothing when the random number is 2.
{
loop_here:
wait(500);
&random = random(2,1);
if (&random == 2)
{
hurt(¤t_sprite, 5);
}
goto loop_here;
}
i fixed it so that it doesn't just do nothing when the random number is 2.