ANyone know how I can keep lights disabled in slayer and be able to still use the duplicator?
This wouldn't have anything to do with Slayer, unless you want light disabling to be a mini-game only feature, but you could make a script for that with or without Slayer....
$Pref::Server::AllowPlayerLight = false;
package NoLights
{
function servercmdLight(%client)
{
if($Pref::Server::AllowPlayerLight $= false)
{
if(%client.ndModeIndex)
%client.ndMode.onLight(%client);
else
return;
}
else
{
if(%client.ndModeIndex)
%client.ndMode.onLight(%client);
else
parent::servercmdLight(%client);
}
}
};
activatePackage(NoLights);
Put that into a server.cs with a description.txt and package them into a .zip called something like Script_NoPlayerLight
You can re-enable the /light command by typing $Pref::Server::AllowPlayerLight = true; into the console