Quote:
Originally Posted by ToiletDuck
This should be fixed
pawn Код:
stock StopRefueling(playerid) { new string [256]; GivePlayerCash(playerid, -RefuelingVehiclePrice[playerid]); format(strng,sizeof(string),"Your vehicle's tank has been refilled for $%d.", RefuelingVehiclePrice[playerid]); SendClientMessageEx(playerid, COLOR_WHITE,string);
new mypoint = -1; for (new i=0; i<MAX_POINTS; i++) { if(strcmp(Points[i][Name], "Fossil Fuel Company", true) == 0) { mypoint = i; } } for(new i = 0; i < sizeof(FamilyInfo); i++) { if(strcmp(Points[mypoint][Owner], FamilyInfo[i][FamilyName], true) == 0) { FamilyInfo[i][FamilyBank] = FamilyInfo[i][FamilyBank]+(RefuelingVehiclePrice[playerid]/10); } }
RefuelingVehicle[playerid] = 0; RefuelingVehiclePrice[playerid] = 0; KillTimer(RefuelingVehicleTimer[playerid]); return true; }
|
This won't fix it, the same error.Look what the error says: "undefined symbol "strng"", Which means that there is something wrong with strng.