06.06.2016, 10:57
I can use MessageToAdmins and MessageToAll
But I cant use MessageToHG => /getallHG
This is my /getallHG command code >
I Hope You Help Me And Give Me The Right Code
Thanks To People Who Help Me And God Bless You All
But I cant use MessageToHG => /getallHG
This is my /getallHG command code >
PHP код:
CMD:getallhg(playerid,params[]) {
#pragma unused params
if(PlayerInfo[playerid][HGRank] >= 7) {
CMDMessageToAdmins(playerid,"GETAllHG"); //This Is The Problem
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[MaxHGRank]) {
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 SendClientMessageToAll(blue, string); //This Is The Second Problem. I Want It Change To SendClientMessageToHG (To HG Members)
} else return SendClientMessage(playerid,red,"ERROR: You need to be HG Member Rank 7 to use this command");
}
Thanks To People Who Help Me And God Bless You All