03.01.2012, 23:33
sorry for double post but is there any difference if i give my serverside money like this
or this?
pawn Код:
pCash[playerid]+=amount;
//this would be as safe as the stock function right?
pawn Код:
Stock SafeGivePlayerMoney(playerid, amount)
{
pCash[playerid] =+amount;
GivePlayerMoney(playerid,amount);
}

