Random Numbers - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Random Numbers (
/showthread.php?tid=488186)
Random Numbers -
ZBits - 17.01.2014
Hello there, i've been tring to set a random number between 17 and 19 but its not working, it always comes out as 18.
Heres what i use for rand:
pawn Код:
//random(max- min) + min;
new rand = random(19 - 17) + 17;
Any help will be appriciated
Re: Random Numbers -
Ari - 17.01.2014
pawn Код:
stock minrand(min, max) //By Alex "******" Cole
{
return random(max - min) + min;
}
pawn Код:
new rand = minrand(17, 19);
Re: Random Numbers -
ZBits - 17.01.2014
Thanks
Re: Random Numbers -
Snir_sofer - 17.01.2014
Very Faster:
PHP код:
#define minrand(%0, %1) random(%1- %0) + %0 //By Alex "******" Cole