08.06.2016, 09:53
I make this command >
That command must get all HG Clan Members Only.
But It's Get All Player.
I copying that command from this command >
I don't know how to fix that error.
Please Help Me To Solve This Problem.
Thanks And God Bless You All
PHP код:
CMD:getallhg(playerid,params[]) {
#pragma unused params
if(PlayerInfo[playerid][HGRank] >= 7) {
CMDMessageToAdmins(playerid,"GETAllHG");
new Float:x,Float:y,Float:z, interior = GetPlayerInterior(playerid);
GetPlayerPos(playerid,x,y,z);
for(new i = 0; i < MAX_PLAYERS; i++) {
if(IsPlayerConnected(i) && (i != playerid) && i != ServerInfo[MaxAdminLevel]) {
PlayerPlaySound(i,1057,0.0,0.0,0.0); SetPlayerPos(i,x+(playerid/4)+1,y+(playerid/4),z); SetPlayerInterior(i,interior);
}
}
new string[128]; format(string,sizeof(string),"HG Leader \"%s\" has teleported all HG Members", pName(playerid) );
return MessageToHG(blue, string);
} else return SendClientMessage(playerid,red,"ERROR: You need to be HG Member Rank 7 to use this command");
}
But It's Get All Player.
I copying that command from this command >
PHP код:
CMD:getall(playerid,params[]) {
#pragma unused params
if(PlayerInfo[playerid][Level] >= 5) {
CMDMessageToAdmins(playerid,"GETAll");
new Float:x,Float:y,Float:z, interior = GetPlayerInterior(playerid);
GetPlayerPos(playerid,x,y,z);
for(new i = 0; i < MAX_PLAYERS; i++) {
if(IsPlayerConnected(i) && (i != playerid) && i != ServerInfo[MaxAdminLevel]) {
PlayerPlaySound(i,1057,0.0,0.0,0.0); SetPlayerPos(i,x+(playerid/4)+1,y+(playerid/4),z); SetPlayerInterior(i,interior);
}
}
new string[128]; format(string,sizeof(string),"Administrator \"%s\" has teleported all players", pName(playerid) );
return SendClientMessageToAll(blue, string);
} else return SendClientMessage(playerid,red,"ERROR: You need to be level 5 to use this command");
}
Please Help Me To Solve This Problem.
Thanks And God Bless You All