61
Music / Jontron theme song
« on: March 29, 2014, 07:13:38 PM »
The Jontron intro music.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.





package HideNames{
function serverCmdToggleNames(%client){
if(%client.isSuperAdmin){
if($HidePlayerNames){
messageClient(%client, '', 'Player names ON.');
$HidePlayerNames = 0;
for(%i=0;%i<ClientGroup.getCount();%i++){
%cl = ClientGroup.getObject(%i);
if(isObject(%cl.player)){
%cl.player.setShapeName(%cl.name);
}
}
} else {
messageClient(%client, '', 'Player names OFF.');
$HidePlayerNames = 1;
for(%i=0;%i<ClientGroup.getCount();%i++){
%cl = ClientGroup.getObject(%i);
if(isObject(%cl.player)){
%cl.player.setShapeName("");
}
}
}
}
}
function GameConnection::spawnPlayer(%this){
Parent::spawnPlayer(%this);
if($HidePlayerNames){
%this.player.setShapeName("");
}
}
};
ActivatePackage(HideNames);