21.02.2011, 20:52
pawn Код:
C:\Documents and Settings\Luciano\Desktop\Gaming of Life - Gang War\filterscripts\Register_Login.pwn(543) : error 017: undefined symbol "string"
C:\Documents and Settings\Luciano\Desktop\Gaming of Life - Gang War\filterscripts\Register_Login.pwn(543) : error 017: undefined symbol "string"
C:\Documents and Settings\Luciano\Desktop\Gaming of Life - Gang War\filterscripts\Register_Login.pwn(543) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Luciano\Desktop\Gaming of Life - Gang War\filterscripts\Register_Login.pwn(543) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.
Aqui tб o comando inteiro:
pawn Код:
if(strcmp(cmd, "/avisar", true) == 0 || strcmp(cmd, "/av", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][PlayerAdmin] == 0)
{
SendClientMessage(playerid, COLOR_RED, "Vocк nгo й Administrador!");
return 1;
}
GetPlayerName(playerid, Pname, sizeof(Pname));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_RED, "USE: /av [texto]");
return 1;
}
SendClientMessageToAll(COLOR_WHITE, "|______________ Aviso da Administraзгo [TAG] ______________|");
format(string, sizeof(string), "{FF0000}Administrador %s: %s", sendername, result);
}
return 1;
}