27.09.2018, 12:05
One question, where have you got this script from? Because it's the same exact like mine..
Even the AdmWarnings are the same ffs.. Why do you keep copying other's script
PHP код:
Timer:PlayerChecker[1000]()
{
foreach(Player, i)
{
if(PlayerInfo[i][pMuted] == true)
{
PlayerInfo[i][pMutedTime]--;
if(PlayerInfo[i][pMutedTime] < 1)
{
PlayerInfo[i][pMuted] = false;
PlayerInfo[i][pMutedTime] = 0;
SendClientMessage(i, COLOR_YELLOW, "AdmCmd(1): You have been automatically unmuted after serving the mute-time.");
new string[150];
format(string, sizeof(string), "AdmWarn(2): {FF0000}%s has been automatically unmuted after serving his mute-time", GetName(i));
SendAdminMessage(COLOR_ORANGE, string);
}
}