09.05.2016, 17:53
It is random but that will not work.
Using random(1) will return 0 all the time. Use:
Using random(1) will return 0 all the time. Use:
pawn Код:
switch (random(2))
{
case 0:
{
// code..
}
default: // 1
{
// code..
}
}