22.06.2018, 10:16
TIL that passing the params (1, 1) to the function below returns weird (expected?) results!
I then went on the SA:MP wiki and saw that was documented. I was excited for a minute.
pawn Код:
RandomInt(min, max)
{
new r = random(max - min) + min;
return r;
}