14.11.2009, 07:34
I would do something like this and forget the rest that is listed above.
pawn Код:
new Health = random(6);//Number of combination's here
if (Health == 0)
{
SetPlayerHealth(playerid, 100);
}
if (Health == 1)
{
SetPlayerHealth(playerid, 50);
}
if (Health == 2)
{
SetPlayerHealth(playerid, 35);
}
}
//etc like that make whatever combination's you want.