29.08.2011, 17:40
pawn Код:
stock SetPlayerMoneyEx(playerid, cash)
{// 997
ResetPlayerMoney(playerid);
GivePlayerMoney(playerid, cash);
return true;
}
stock strreplace(string[], find, replace) // 1002
{
for(new i=0; string[i]; i++) // 1004
{
if(string[i] == find)
{
string[i] = replace;
}
}
return true;
}