} if (strcmp(cmdtext,"/cnn", true)==0) { if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,COLOR_RED,"[ATENЗГO] - Voce nao й Admin ! Tente mais uma que levara Ban"); //comando cnn return 1; }
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
if(strcmp(cmd, "/cnn", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][Admin] >= 3)
{
new string[500];
GetPlayerName(playerid, sendername, sizeof(sendername));
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: /cnn [texto]");
SendClientMessage(playerid, COLOR_WHITE, "~p~ (Roxo); ~r~ (Vermelho); ~b~ (Azul); ~g~ (Verde); ~b~ (Preto) e ~y~ (Amarelo).");
return 1;
}
format(string, sizeof(string), "~r~%s: ~w~%s",sendername,result);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
GameTextForPlayer(i, string, 5000, 6);
}
}
return 1;
}
else
{
SendClientMessage(playerid, COLOR_RED, "Vocк nгo й Administrador!");
return 1;
}
}
return 1;
}
Acho que й isso que vocк quer:
PHP код:
Crйditos: Thug Life City RPG e Eu que modifiquei o comando. |
C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3913) : error 017: undefined symbol "cmd" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3917) : error 017: undefined symbol "PlayerInfo" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3917) : warning 215: expression has no effect C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3917) : error 001: expected token: ";", but found "]" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3917) : error 029: invalid expression, assumed zero C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3917) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 5 Errors.
Nгo precisa o gl_comman e so colocar o
pawn Код:
|
C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(4764) : error 021: symbol already defined: "strtok" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(4763) : error 021: symbol already defined: "strtok" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(4765) : error 021: symbol already defined: "strtok" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Errors.
if(strcmp(cmd, "/cnn", true) == 0)
{
if(IsPlayerAdmin(playerid)){
new tmp[256];
tmp = strtok(cmdtext, idx, strlen(cmdtext));
if (!strlen(tmp))
{
SendClientMessage(playerid, Vermelho, "Digite: /cnn [texto]");
return 1;
}
if(PlayerInfo[playerid][Logged] == 1)
{
format(string, sizeof(string), "~r~%s~w~: ~w~%s", aname, tmp);
GameTextForAll(string, 5000, 3);
}else{
SendClientMessage(playerid, Vermelho, "{FFFF00}[{FF0000} ERRO{FFFF00} ]{FFFFFF}: Vocк nгo tem permissгo para usar este comando!");
}
}else{
SendClientMessage(playerid, Vermelho, "{FFFF00}[{FF0000} ERRO{FFFF00} ]{FFFFFF}: Vocк tem que estar logado para usar este comando!");
}
return 1;
}
}
PHP код:
|
C:\Users\marcos\Desktop\MyServers\Brasil City Furious\pawno\include\cpstream.inc(38) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\pawno\include\cpstream.inc(38) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\pawno\include\cpstream.inc(38) : warning 219: local variable "Z" shadows a variable at a preceding level ..\include\gl_common.inc(74) : warning 219: local variable "string" shadows a variable at a preceding level ..\include\gl_common.inc(95) : warning 219: local variable "string" shadows a variable at a preceding level ..\include\gl_common.inc(118) : warning 219: local variable "string" shadows a variable at a preceding level ..\include\gl_common.inc(133) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1735) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1761) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1823) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1885) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1885) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1885) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1918) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1918) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1918) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1951) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1951) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1951) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1984) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1984) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1984) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2017) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2017) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2017) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2050) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2050) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2050) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2083) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2083) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2083) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2116) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2116) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2116) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2149) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2149) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2149) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2182) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2182) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2182) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2215) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2215) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2215) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2248) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2248) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2248) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2281) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2281) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2281) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2784) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2785) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2802) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2803) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2883) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2884) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2907) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2908) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2931) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2932) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2955) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2956) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2976) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2977) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2997) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2998) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3017) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3018) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3035) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3036) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3056) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3057) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3077) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3078) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3098) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3099) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3120) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3121) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3160) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3161) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3181) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3182) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3202) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3203) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3226) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3227) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3250) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3251) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3267) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3268) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3286) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3287) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3309) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3310) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3330) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3331) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3347) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3348) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3367) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3368) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3395) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3396) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3419) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3420) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3442) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3443) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3466) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3467) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3493) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3494) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3513) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3514) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3527) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3528) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3541) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3542) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3555) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3556) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3568) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3569) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3581) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3582) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3611) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3612) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3644) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3645) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3673) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3674) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3690) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3691) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3710) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3711) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3730) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3731) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3750) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3751) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3837) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3837) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3837) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3861) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3861) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3861) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3877) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3877) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3877) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3915) : error 017: undefined symbol "cmd" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3919) : error 017: undefined symbol "idx" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3922) : error 017: undefined symbol "Vermelho" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : error 017: undefined symbol "PlayerInfo" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : warning 215: expression has no effect C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : error 001: expected token: ";", but found "]" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : error 029: invalid expression, assumed zero C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 7 Errors.
Deu sу esses errinhos!!
Код:
C:\Users\marcos\Desktop\MyServers\Brasil City Furious\pawno\include\cpstream.inc(38) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\pawno\include\cpstream.inc(38) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\pawno\include\cpstream.inc(38) : warning 219: local variable "Z" shadows a variable at a preceding level ..\include\gl_common.inc(74) : warning 219: local variable "string" shadows a variable at a preceding level ..\include\gl_common.inc(95) : warning 219: local variable "string" shadows a variable at a preceding level ..\include\gl_common.inc(118) : warning 219: local variable "string" shadows a variable at a preceding level ..\include\gl_common.inc(133) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1735) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1761) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1823) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1885) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1885) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1885) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1918) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1918) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1918) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1951) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1951) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1951) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1984) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1984) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(1984) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2017) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2017) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2017) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2050) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2050) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2050) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2083) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2083) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2083) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2116) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2116) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2116) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2149) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2149) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2149) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2182) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2182) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2182) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2215) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2215) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2215) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2248) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2248) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2248) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2281) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2281) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2281) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2784) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2785) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2802) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2803) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2883) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2884) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2907) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2908) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2931) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2932) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2955) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2956) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2976) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2977) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2997) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(2998) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3017) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3018) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3035) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3036) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3056) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3057) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3077) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3078) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3098) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3099) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3120) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3121) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3160) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3161) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3181) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3182) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3202) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3203) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3226) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3227) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3250) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3251) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3267) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3268) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3286) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3287) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3309) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3310) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3330) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3331) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3347) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3348) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3367) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3368) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3395) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3396) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3419) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3420) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3442) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3443) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3466) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3467) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3493) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3494) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3513) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3514) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3527) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3528) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3541) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3542) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3555) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3556) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3568) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3569) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3581) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3582) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3611) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3612) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3644) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3645) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3673) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3674) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3690) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3691) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3710) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3711) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3730) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3731) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3750) : warning 219: local variable "pname" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3751) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3837) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3837) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3837) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3861) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3861) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3861) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3877) : warning 219: local variable "X" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3877) : warning 219: local variable "Y" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3877) : warning 219: local variable "Z" shadows a variable at a preceding level C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3915) : error 017: undefined symbol "cmd" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3919) : error 017: undefined symbol "idx" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3922) : error 017: undefined symbol "Vermelho" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : error 017: undefined symbol "PlayerInfo" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : warning 215: expression has no effect C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : error 001: expected token: ";", but found "]" C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : error 029: invalid expression, assumed zero C:\Users\marcos\Desktop\MyServers\Brasil City Furious\gamemodes\CityFurious.pwn(3925) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 7 Errors. NAO TEM COMO FAZER O CNN SEM ESSA %&$# DE STRTOK?? AJUDEM AE PELO AMOR DE DEUS !!! |
new PlayerInfo[MAX_PLAYERS][pInfo];
new cmd[256], idx;
cmd = strtok(cmdtext, idx);
if(strcmp(cmd, "/cnn", true) == 0)
{
if(IsPlayerAdmin(playerid)){
new tmp[256];
tmp = strtok(cmdtext, idx, strlen(cmdtext));
if (!strlen(tmp))
{
SendClientMessage(playerid, Vermelho, "Digite: /cnn [texto]");
return 1;
}
if(PlayerInfo[playerid][Logged] == 1)
{
format(string, sizeof(string), "~r~%s~w~: ~w~%s", aname, tmp);
GameTextForAll(string, 5000, 3);
}else{
SendClientMessage(playerid, Vermelho, "{FFFF00}[{FF0000} ERRO{FFFF00} ]{FFFFFF}: Vocк nгo tem permissгo para usar este comando!");
}
}else{
SendClientMessage(playerid, Vermelho, "{FFFF00}[{FF0000} ERRO{FFFF00} ]{FFFFFF}: Vocк tem que estar logado para usar este comando!");
}
return 1;
}
}