Quote:
Originally Posted by Sum41Freeeeek
yeah, that's what I'm worried about.
snake says he added something a long time ago to disable certain things in levels, i'll have kinetaro or someone check the system npc.
|
Incase Era has really bad NATs, here's some code they could use:
Weapon/GUI-Script +Features
PHP Code:
//#CLIENTSIDE
function onCreated()
{
if ( player.level.name == "sparlevel.nw" )
{
enablefeatures( allfeatures - 2 - 0x200 ) // disable all the other feautres
}
else
{
enablefeatures( allfeatures - 2 ); // disable all the other features
}
}
function onPlayerEnters()
{
onCreated();
}