Random
#1

Hi,

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

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

Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)