View Single Post
Emp`
AMX Mod X Plugin Approver
Join Date: Aug 2005
Location: Decapod 10
Old 02-22-2017 , 12:09   Re: Trigger function with % chance
Reply With Quote #8

Code:
stock bool Chance( iNum, iMult=100 )
	return ( iNum * iMult >= random_num( 1, 100 * iMult ) );
Code:
if ( Chance( 5 ) )
{
   //...
}
Emp` is offline
Send a message via AIM to Emp` Send a message via MSN to Emp` Send a message via Yahoo to Emp` Send a message via Skype™ to Emp`