21.01.2013, 16:19
I didn't get what you want to do with the command really, but to simulate chances you can use something alike:
Usage:
if(chance(50) == 1)....
pawn Code:
chance(num)
{
new raN = (random(100)+1);
return (raN <= num);
}
if(chance(50) == 1)....