09.07.2013, 17:17
pawn Код:
CMD:smelt(playerid, params[])
{
if(IsPlayerInRangeOfPoint(playerid, 7.0, -53.2012,-1133.2292,1.0781))
{
if(PlayerInfo[playerid][pOres] >= 1)
{
TogglePlayerControllable(playerid, 0);
SetTimerEx("MeltingOres", 10000, false, "i", playerid);
SendClientMessage(playerid, COL_WHITE, "You started melting the ores"); //LINE 435
SendClientMessage(playerid, COL_WHITE, "Please wait until all of your ores are melted"); //LINE 436
SendClientMessage(playerid, COL_WHITE, "It will take 10 seconds"); //LINE 437
}
}
return 1;
}
pawn Код:
NOT IMPORTANT LOCATIONS(435) : error 035: argument type mismatch (argument 2)
NOT IMPORTANT LOCATIONS(436) : error 035: argument type mismatch (argument 2)
NOT IMPORTANT LOCATIONS(437) : error 035: argument type mismatch (argument 2)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
3 Errors.