26.02.2012, 14:02
Remove
It is already defined somewhere in your script.
OR
You can change the name of string.
pawn Код:
new string[128];
OR
You can change the name of string.
pawn Код:
if(cars[playerid]>0){
new string2[128];//1604
cars[playerid]--;
format(string2,sizeof(string2),"It worked! You still have %i cars left!",cars[playerid]);
SendClientMessage(playerid,COLOR_LIGHTGREEN,string2);}