09.07.2012, 03:55
pawn Код:
stock GivePlayerRobberyAmount(playerid, amount , stars, place)
{
SetPlayerWantedLevel(playerid, stars);
GivePlayerMoney(playerid, amount);
return 1;
}
place (as defined on stock) would be a string , how can i make that?
like
pawn Код:
stock GivePlayerRobberyAmount(playerid, amount, stars, place[])
{
new place[250];
SetPlayerWantedLevel(playerid, stars);
GivePlayerMoney(playerid, amount);
place = "Cluckin Bell"; // Example
return 1;
}