[AJUDA]Quando uso /trazerbopes o server fecha. -
Nake01 - 14.06.2011
Galera tф com um problema aqui quando uzo /trazerbopes e /trazercvs o server fecha :/ serб que poderiгo me ajudar ?
Код:
if(strcmp(cmd, "/trazercvs", true) == 0)
{
new Float:PlayerPos[3];
GetPlayerPos(playerid,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
for(new x = 0, y = GetMaxPlayers(); x != y; x++)
{
if(PlayerInfo[playerid][pCV] >= 5)
{
SetPlayerPos(x,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
}
}
{
format(string, sizeof(string), "Adm.Cmd: %s trouxe todos os CVS.", sendername);
SendClientMessageToAll(COLOR_ADM, string);
}
return 1;
}
if(strcmp(cmd, "/trazerbopes", true) == 0)
{
new Float:PlayerPos[3];
GetPlayerPos(playerid,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
for(new x = 0, y = GetMaxPlayers(); x != y; x++)
{
if(PlayerInfo[playerid][pBOPE] >= 5)
{
SetPlayerPos(x,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
}
}
{
format(string, sizeof(string), "Adm.Cmd: %s trouxe todos os BOPE.");
SendClientMessageToAll(COLOR_ADM, string);
}
return 1;
}
Re: [AJUDA]Quando uso /trazerbopes o server fecha. -
Shadoww5 - 14.06.2011
PHP код:
if(strcmp(cmd, "/trazercvs", true) == 0)
{
new Float:PlayerPos[3], string[128], nome[24];
GetPlayerPos(playerid,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
for(new x = 0; x < MAX_PLAYERS; x ++)
{
if(PlayerInfo[x][pCV] >= 5)
{
GetPlayerName(playerid, nome, 24);
SetPlayerPos(x,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
format(string, sizeof(string), "Adm.Cmd: %s trouxe todos os CVS.", nome);
SendClientMessageToAll(COLOR_ADM, string);
return 1;
}
}
return 1;
}
if(strcmp(cmd, "/trazerbopes", true) == 0)
{
new Float:PlayerPos[3], string[128], nome[24];
GetPlayerPos(playerid,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
for(new x = 0; x < MAX_PLAYERS; x ++)
{
if(PlayerInfo[x][pBOPE] >= 5)
{
GetPlayerName(playerid, nome, 24);
SetPlayerPos(x,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
format(string, sizeof(string), "Adm.Cmd: %s trouxe todos os BOPE.",nome);
SendClientMessageToAll(COLOR_ADM, string);
}
}
return 1;
}
Re: [AJUDA]Quando uso /trazerbopes o server fecha. -
Nake01 - 14.06.2011
mano esse cmd q tu posto ta trazendo td mundo do sv em vez de sу do bope !
Re: [AJUDA]Quando uso /trazerbopes o server fecha. -
Ricop522 - 14.06.2011
ihб
pawn Код:
if(strcmp(cmd, "/trazercvs", true) == 0)
{
new Float:PlayerPos[3];
GetPlayerPos(playerid,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
for(new i = 0; i < MAX_PLAYERS; ++i)
{
if(PlayerInfo[i][pCV] >= 5)
{
SetPlayerPos(i, PlayerPos[0],PlayerPos[1],PlayerPos[2]);
}
}
format(string, sizeof(string), "Adm.Cmd: %s trouxe todos os CVS.", sendername);
SendClientMessageToAll(COLOR_ADM, string);
return 0x01;
}
if(strcmp(cmd, "/trazerbope", true) == 0)
{
new Float:PlayerPos[3];
GetPlayerPos(playerid,PlayerPos[0],PlayerPos[1],PlayerPos[2]);
for(new i = 0; i < MAX_PLAYERS; ++i)
{
if(PlayerInfo[i][pBOPE] >= 5)
{
SetPlayerPos(i, PlayerPos[0],PlayerPos[1],PlayerPos[2]);
}
}
format(string, sizeof(string), "Adm.Cmd: %s trouxe todos os BOPES.", sendername);
SendClientMessageToAll(COLOR_ADM, string);
return 0x01;
}
Re: [AJUDA]Quando uso /trazerbopes o server fecha. -
Shadoww5 - 14.06.2011
Eita, kkkkkkkk й mesmo ....
Esqueci de trocar o "[playerid]" por "[x]".
Re: [AJUDA]Quando uso /trazerbopes o server fecha. -
Ricop522 - 14.06.2011
Hehehe. [x];
Re: [AJUDA]Quando uso /trazerbopes o server fecha. -
Shadoww5 - 14.06.2011
AAAAAAAAAAAAAAAAAAAAAAAAAAA !
To ruim hein ... kkkkk й o costume de usar "i".
Vo dormir, pessoal. Flws pra quem fica :*
Re: [AJUDA]Quando uso /trazerbopes o server fecha. -
Nake01 - 14.06.2011
1 Problema essa parte aк que ta
Код:
if(PlayerInfo[i][pBOPE] >= 5)
era pra requerir que o cara tivese lv 5 pra usar o cmd no caso nгo ta querindo lv nenhum pra usar o cmd e sу ta puxando quem tem lv 5 da bope :/ pode ajudar?
Re: [AJUDA]Quando uso /trazerbopes o server fecha. -
Ricop522 - 14.06.2011
Como assim ,vocк quer que apenas level 5 de bope possa puxar todos os outros bopes ?
Re: [AJUDA]Quando uso /trazerbopes o server fecha. -
Nake01 - 14.06.2011
sim apenas lv 5 do bope pode puxar todos os bopes