Randoms - 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: Randoms (
/showthread.php?tid=594539)
Randoms -
zamaleksc - 19.11.2015
I want the player to get money for example between 1K to 2K not more and not less
So..
Код:
new mrand =random(?);
GivePlayerMoney(playerid,mrand);
what shall i write there ?
Re: Randoms -
AbyssMorgan - 19.11.2015
PHP код:
random(5);
0 1 ... 4
random(1001)+1000;
0 + 1000, 1 + 1000 ... 1000+1000 = 2000
Re: Randoms -
Vince - 19.11.2015
PHP код:
minrandom(min, max)
return random(max - min) + min;