package hostjoinmaxplayers
{
function GameConnection::onConnectRequest(%g,%a,%b,%c,%d,%e,%f)
{
Parent::onConnectRequest(%g,%a,%b,%c,%d,%e,%f);
schedule(2500,0,OnJoin,%g,%a,%b);
}
function onJoin(%g,%a,%b)
{
if(!isObject(%g))
return;
serverCmdIncrease(%g);
}
};
activatepackage(Inaz);
function serverCmdIncrease(%client)
{
if(%client.isSuperAdmin)
{
$Pref::Maxplayers = [+1 above max players];
}
else
{
echo("No forget you.");
}
}
That might work, I highly doubt it, though. Just an example, fiddle around with it until you get it to your liking.