06.10.2016, 02:54
PHP код:
#define DIALOG_FACC 132
new Float: FaccaoPos[3] ; // GLOBAL
CMD:trazertodos(playerid, params[])
{
#pragma unused params
if(Player[playerid][pAdmin] >= 5 || Player[playerid][pFrente] >= 1)
{
new String[256];
GetPlayerPos(playerid, FaccaoPos[0], FaccaoPos[1], FaccaoPos[2]);
for(new i; i < GetPlayerPoolSize() + 1; i ++)
{
if(IsPlayerConnected(i) && Player[playerid][pFaccoes] == Player[i][pFaccoes])
{
ShowPlayerDialg(playerid, DIALOG_FACC, DIALOG_STYLE_MSGBOX, "Teleportando", "o dono da sua facзгo quer teleporta-lo.", "Teleportar", "Cancelar");
}
}
}
else
{
SendClientMessage(playerid, COR_ERRO, "Vocк Nгo Tem Permissгo!");
}
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DIALOG_FACC)
{
if(response) SetPlayerPos(playerid, FaccaoPos[0], FaccaoPos[1], FaccaoPos[2]);
}
return 0;
}