13.01.2015, 02:25
Код:
stock ShowPlayerFooter(playerid, string[], time = 5000) {
if (Player[playerid][pShowFooter]) {
PlayerTextDrawHide(playerid, Player[playerid][pTextdraws][39]); //line 12202
KillTimer(Player[playerid][pFooterTimer]);
}
PlayerTextDrawSetString(playerid, Player[playerid][pTextdraws][39], string);
PlayerTextDrawShow(playerid, Player[playerid][pTextdraws][39]);
Player[playerid][pShowFooter] = true;
Player[playerid][pFooterTimer] = SetTimerEx("HidePlayerFooter", time, false, "d", playerid);
}
Код:
test.pwn(12202) : warning 213: tag mismatch test.pwn(12202) : error 001: expected token: ",", but found "[" test.pwn(12202) : error 029: invalid expression, assumed zero test.pwn(12202) : warning 215: expression has no effect test.pwn(12202) : error 001: expected token: ";", but found "]" test.pwn(12202) : fatal error 107: too many error messages on one line 4 Errors.

