Bue como dice el titulo quiero saber si pueden pasarme un comando /nmute [ID] y lo que busco [Razon] Gracias.
4 participantes
[Pedido] Comando /nmute [ID] [Razón]
M4goadicto- Mensajes : 16
Fecha de inscripción : 13/02/2014
Edad : 24
- Mensaje n°1
[Pedido] Comando /nmute [ID] [Razón]
Tusso- Mensajes : 3
Fecha de inscripción : 21/05/2014
Edad : 31
- Mensaje n°2
Re: [Pedido] Comando /nmute [ID] [Razón]
Que GM o en que procesador de comandos lo quieres?.
KratosP- Mensajes : 11
Fecha de inscripción : 22/07/2014
Edad : 30
- Mensaje n°3
Re: [Pedido] Comando /nmute [ID] [Razón]
zcmd(nmute, playerid, params[])
{
new giveplayerid;
if(Info[playerid][pAdminZC] < 1 &&Info[playerid][pHelper] < 1) return SendClientMessageEx(playerid, COLOR_GRAD2, "¡No puedes usar este comando!");
if(!sscanf(params, "d", giveplayerid))
{
if(!IsPlayerConnected(giveplayerid)) return SendClientMessageEx(playerid, COLOR_GRAD2, "Esa ID es inválida.");
if(Info[giveplayerid][pAdminZC] >= 1)
{
return SendClientMessageEx(playerid, COLOR_LIGHTRED, "No puedes /nmute a administradores.");
}
if(Info[giveplayerid][pNMute] == 0)
{
new string[128];
Info[giveplayerid][pNMute] = 1;
Info[giveplayerid][pNMuteTotal]++;
if(Info[giveplayerid][pNMuteTotal] == 10)
{
Info[giveplayerid][pBannedZC] = 2;
format(string, sizeof(string), "AdmCmd: %s fue baneado automaticamente - Razón: 10 Newbie Muted en Total.", GetPlayerNameEx(giveplayerid));
BroadCast(COLOR_LIGHTRED,string);
SetTimerEx("KickxD",1000,0,"d",giveplayerid);
return 1;
}
format(string, sizeof(string), "* %s te ha silenciado del canal de ayuda por 5 minutos, razón: Mal uso del canal",GetPlayerNameEx(playerid));
SendClientMessageEx(giveplayerid,COLOR_LIGHTRED,string);
foreach(Player, n)
{
if (gNewbie[n] == 0 || Info[n][pNMute] == 0)
{
format(string, sizeof(string), "AdmCmdExe: %s ha silenciado del canal de ayuda a %s por 5 minutos, razón: Mal uso del canal",GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid));
SendClientMessageEx(n, COLOR_LIGHTRED, string);
}
}
SetTimerEx("NewbieUnMuted", 300000, 0, "d", giveplayerid);
}
} else SendClientMessageEx(playerid, COLOR_GRAD2, "* /nmute <PlayerID>");
return 1;
}
zcmd(dmute, playerid, params[])
{
new giveplayerid;
if(Info[playerid][pAdminZC] < 1 &&Info[playerid][pHelper] < 1) return SendClientMessageEx(playerid, COLOR_GRAD2, "¡No puedes usar este comando!");
if(!sscanf(params, "d", giveplayerid))
{
if(!IsPlayerConnected(giveplayerid)) return SendClientMessageEx(playerid, COLOR_GRAD2, "Esa ID es inválida.");
if(Info[giveplayerid][pAdminZC] >= 1)
{
return SendClientMessageEx(playerid, COLOR_LIGHTRED, "No puedes /dmute a administradores.");
}
if(Info[giveplayerid][pNMute] == 1)
{
new string[128];
Info[giveplayerid][pNMute] = 0;
Info[giveplayerid][pNMuteTotal]--;
format(string, sizeof(string), "* %s te ha desmuteado del canal de ayuda.",GetPlayerNameEx(playerid));
SendClientMessageEx(giveplayerid,COLOR_LIGHTRED,string);
foreach(Player, n)
{
if (gNewbie[n] == 0 || Info[n][pNMute] == 0)
{
format(string, sizeof(string), "AdmCmdExe: %s ha desmuteado del canal de ayuda a %s por 5 minutos, razón: Error de ID o duda",GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid));
SendClientMessageEx(n, COLOR_LIGHTRED, string);
}
}
}
} else SendClientMessageEx(playerid, COLOR_GRAD2, "* /dmute <PlayerID>");
return 1;
}
{
new giveplayerid;
if(Info[playerid][pAdminZC] < 1 &&Info[playerid][pHelper] < 1) return SendClientMessageEx(playerid, COLOR_GRAD2, "¡No puedes usar este comando!");
if(!sscanf(params, "d", giveplayerid))
{
if(!IsPlayerConnected(giveplayerid)) return SendClientMessageEx(playerid, COLOR_GRAD2, "Esa ID es inválida.");
if(Info[giveplayerid][pAdminZC] >= 1)
{
return SendClientMessageEx(playerid, COLOR_LIGHTRED, "No puedes /nmute a administradores.");
}
if(Info[giveplayerid][pNMute] == 0)
{
new string[128];
Info[giveplayerid][pNMute] = 1;
Info[giveplayerid][pNMuteTotal]++;
if(Info[giveplayerid][pNMuteTotal] == 10)
{
Info[giveplayerid][pBannedZC] = 2;
format(string, sizeof(string), "AdmCmd: %s fue baneado automaticamente - Razón: 10 Newbie Muted en Total.", GetPlayerNameEx(giveplayerid));
BroadCast(COLOR_LIGHTRED,string);
SetTimerEx("KickxD",1000,0,"d",giveplayerid);
return 1;
}
format(string, sizeof(string), "* %s te ha silenciado del canal de ayuda por 5 minutos, razón: Mal uso del canal",GetPlayerNameEx(playerid));
SendClientMessageEx(giveplayerid,COLOR_LIGHTRED,string);
foreach(Player, n)
{
if (gNewbie[n] == 0 || Info[n][pNMute] == 0)
{
format(string, sizeof(string), "AdmCmdExe: %s ha silenciado del canal de ayuda a %s por 5 minutos, razón: Mal uso del canal",GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid));
SendClientMessageEx(n, COLOR_LIGHTRED, string);
}
}
SetTimerEx("NewbieUnMuted", 300000, 0, "d", giveplayerid);
}
} else SendClientMessageEx(playerid, COLOR_GRAD2, "* /nmute <PlayerID>");
return 1;
}
zcmd(dmute, playerid, params[])
{
new giveplayerid;
if(Info[playerid][pAdminZC] < 1 &&Info[playerid][pHelper] < 1) return SendClientMessageEx(playerid, COLOR_GRAD2, "¡No puedes usar este comando!");
if(!sscanf(params, "d", giveplayerid))
{
if(!IsPlayerConnected(giveplayerid)) return SendClientMessageEx(playerid, COLOR_GRAD2, "Esa ID es inválida.");
if(Info[giveplayerid][pAdminZC] >= 1)
{
return SendClientMessageEx(playerid, COLOR_LIGHTRED, "No puedes /dmute a administradores.");
}
if(Info[giveplayerid][pNMute] == 1)
{
new string[128];
Info[giveplayerid][pNMute] = 0;
Info[giveplayerid][pNMuteTotal]--;
format(string, sizeof(string), "* %s te ha desmuteado del canal de ayuda.",GetPlayerNameEx(playerid));
SendClientMessageEx(giveplayerid,COLOR_LIGHTRED,string);
foreach(Player, n)
{
if (gNewbie[n] == 0 || Info[n][pNMute] == 0)
{
format(string, sizeof(string), "AdmCmdExe: %s ha desmuteado del canal de ayuda a %s por 5 minutos, razón: Error de ID o duda",GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid));
SendClientMessageEx(n, COLOR_LIGHTRED, string);
}
}
}
} else SendClientMessageEx(playerid, COLOR_GRAD2, "* /dmute <PlayerID>");
return 1;
}
KratosP- Mensajes : 11
Fecha de inscripción : 22/07/2014
Edad : 30
- Mensaje n°4
Re: [Pedido] Comando /nmute [ID] [Razón]
Es para mutear y desmutear :P
Pony Negro- Mensajes : 166
Fecha de inscripción : 07/02/2015
Edad : 25
- Mensaje n°5
Re: [Pedido] Comando /nmute [ID] [Razón]
que gm usas?