SA-MP Forums Archive
Random - 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 (/showthread.php?tid=607130)



Random - ScIrUsna - 15.05.2016

Hi,

How to make random that i could calculate any proc possibilty. i want 1/100 5/100 78/100 any possibily.


Re: Random - AbyssMorgan - 15.05.2016

PHP код:
stock bool:IsProbable(chance){
    if(
chance <= 0) return false;
    if(
chance >= 100) return true;
    if((
random(100)+1) <= chance) return true;
    return 
false;