mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-19 16:14:44 +00:00
Admin messages
This commit is contained in:
parent
648d3caa29
commit
25653871e8
|
|
@ -564,13 +564,13 @@ function serverCmdStartNewVote(%client, %typeName, %arg1, %arg2, %arg3, %arg4, %
|
|||
if($Host::Password !$= "")
|
||||
{
|
||||
$Host::Password = "";
|
||||
messageClient( %client, '', "PUG password been disabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
messageAdmins('', "PUG password been disabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
adminLog(%client, " has disabled pug password." );
|
||||
}
|
||||
else
|
||||
{
|
||||
$Host::Password = $Host::PUGPassword;
|
||||
messageClient( %client, '', "PUG password been enabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
messageAdmins('', "PUG password been enabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
adminLog(%client, " has enabled pug password." );
|
||||
}
|
||||
}
|
||||
|
|
@ -583,7 +583,7 @@ function serverCmdStartNewVote(%client, %typeName, %arg1, %arg2, %arg3, %arg4, %
|
|||
if(!isActivePackage(LockedTeams))
|
||||
activatePackage(LockedTeams);
|
||||
$LockedTeams = 1;
|
||||
messageClient( %client, '', "Locked Teams has been enabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
messageAdmins('', "Locked Teams has been enabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
adminLog(%client, " has enabled Locked Teams.");
|
||||
}
|
||||
else
|
||||
|
|
@ -591,7 +591,7 @@ function serverCmdStartNewVote(%client, %typeName, %arg1, %arg2, %arg3, %arg4, %
|
|||
if(isActivePackage(LockedTeams))
|
||||
deactivatePackage(LockedTeams);
|
||||
$LockedTeams = 0;
|
||||
messageClient( %client, '', "Locked Teams has been disabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
messageAdmins('', "Locked Teams has been disabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
adminLog(%client, " has disabled Locked Teams.");
|
||||
}
|
||||
}
|
||||
|
|
@ -606,7 +606,7 @@ function serverCmdStartNewVote(%client, %typeName, %arg1, %arg2, %arg3, %arg4, %
|
|||
if(isActivePackage(checkver))
|
||||
deactivatePackage(checkver);
|
||||
|
||||
messageClient( %client, '', "Tournament Net Client checking has been disabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
messageAdmins('', "Tournament Net Client checking has been disabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
adminLog(%client, " has disabled Net Tourney Client checking.");
|
||||
}
|
||||
else
|
||||
|
|
@ -619,7 +619,7 @@ function serverCmdStartNewVote(%client, %typeName, %arg1, %arg2, %arg3, %arg4, %
|
|||
//Boot Offenders into Obs
|
||||
CheckVerObserver(%client);
|
||||
|
||||
messageClient( %client, '', "Tournament Net Client checking has been enabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
messageAdmins('', "Tournament Net Client checking has been enabled.~wfx/powered/vehicle_screen_on.wav" );
|
||||
ResetGetCountsStatus();
|
||||
adminLog(%client, " has enabled Net Tourney Client checking.");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue