06.10.2016, 00:57
boa noite queria botar nesse meu comando um negocio , exemplo quando eu der /trazertodos a pessoa tem que aceita para poder puxar ela o meu comando ta assim oh :
{
#pragma unused params
if(Player[playerid][pAdmin] >= 5)
{
new Float:X,Float:Y,Float:Z;
GetPlayerPos(playerid,X,Y,Z);
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
if(Player[playerid][pFaccao] == Player[i][pFaccao])
{
new String[256];
SetPlayerPos(i, X+1, Y+1, Z);
format(String, sizeof(String), "O {FF0000}%s:{FFFFD2} Trouxe Todos da Facзгo ! ", getPName(playerid));
SCM(i, COR_INFO, String);
}
}
}
}
else
{
SCM(playerid, COR_ERRO, "Vocк Nгo Tem Permissгo!");
}
return 1;
}
{
#pragma unused params
if(Player[playerid][pAdmin] >= 5)
{
new Float:X,Float:Y,Float:Z;
GetPlayerPos(playerid,X,Y,Z);
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
if(Player[playerid][pFaccao] == Player[i][pFaccao])
{
new String[256];
SetPlayerPos(i, X+1, Y+1, Z);
format(String, sizeof(String), "O {FF0000}%s:{FFFFD2} Trouxe Todos da Facзгo ! ", getPName(playerid));
SCM(i, COR_INFO, String);
}
}
}
}
else
{
SCM(playerid, COR_ERRO, "Vocк Nгo Tem Permissгo!");
}
return 1;
}