02.07.2014, 19:12
How Can I Create SomeThing That Will give me random numbers and then use it to give people money?
new randomvalue = random(2000); // this will choose a random value between 0 and 2000
GivePlayerMoney(playerid, randomvalue); // this will give a player the random value
stock RandomEx(min, max) // By ******
{
return random(max - min) + min;
}