Jó reggeltet!
Próbáltam írni egy olyat, hogy valaki valakinek game textet írhat, csak erroros, meg warninog,s de nem tudom miért :\'(
CMD:text(playerid, params[])
{
new id, txt[128], uzi;
if (sscanf(params, \"uz\", id, txt)) SendClientMessage(playerid, 0xFF0000AA, \"Használat: /text [id] [szöveg]\");
else if (id == INVALID_PLAYER_ID) SendClientMessage(playerid, 0xFF0000AA, \"Nincs ilyen játékos!\");
else if (txt == 0) SendClientMessage(playerid, 0xFF0000AA, \"Írj valami üzenetet!\");
else
{
format(uzi, sizeof(uzi), \"%s\", txt);
GameTextForPlayer(id, uzi);
}
return 1;
}
c:\\DOCUME~1\\Viktor\\Asztal\\GTAJ~1\\FILTER~1\\tomi.pwn(6) : error 033: array must be indexed (variable \"txt\")
c:\\DOCUME~1\\Viktor\\Asztal\\GTAJ~1\\FILTER~1\\tomi.pwn(9) : error 035: argument type mismatch (argument 1)
c:\\DOCUME~1\\Viktor\\Asztal\\GTAJ~1\\FILTER~1\\tomi.pwn(9) : error 035: argument type mismatch (argument 1)
c:\\DOCUME~1\\Viktor\\Asztal\\GTAJ~1\\FILTER~1\\tomi.pwn(10) : error 035: argument type mismatch (argument 2)
c:\\DOCUME~1\\Viktor\\Asztal\\GTAJ~1\\FILTER~1\\tomi.pwn(3) : warning 203: symbol is never used: \"uzi\"