03.06.2009, 13:25
Quote:
Originally Posted by coole210
I'm trying to make a /shout command but i get these errors,
Код:
(481) : error 010: invalid function or declaration (483) : error 001: expected token: ";", but found "-identifier-" (486) : error 010: invalid function or declaration Here's my /shout command Код:
if(strcmp("/shout",cmdtext, true, 3)) new stringz[128] GetPlayerName(playerid, stringz, sizeof(stringz)); format(stringz, sizeof(stringz), "[SHOUT]%s: %s", stringz, cmdtext[4]); SendClientMessageToAll(COLOR_WHITE, stringz); return 1; } |
Код:
if(strcmp("/shout",cmdtext, true, 3)) { new stringz[128]; GetPlayerName(playerid, stringz, sizeof(stringz)); format(stringz, sizeof(stringz), "[SHOUT]%s: %s", stringz, cmdtext[4]); SendClientMessageToAll(COLOR_WHITE, stringz); return 1; }