ItsMods

Full Version: Some nice dvars for LobbyTracker users
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

This is a small tutorial of some interesting dvars that can help those LobbyTracker users: http://www.itsmods.com/forum/Thread-LobbyTracker.html

The first dvar allow you to change the name that appears in lobbytracker, in Servername, to remove the COD4HOST thing:

Code:
setDvar("sv_hostname", "Your server name here");

Now, this dvars will allow you to change player limit from 18 to whatever(not more than 18, you can troll game but wont work), OMA . In this case is 4:

Code:
setDvar("party_maxPrivatePartyPlayers",4);
setDvar("party_maxplayers",4);
setDvar("sv_maxclients",4);
setDvar("ui_maxclients",4);

This dvar changes easily the message that appears when you load screen.

Code:
setDvar("didyouknow","Your Info");

This is it, enjoy your new lobby settings

OMA
(09-19-2011, 16:51)Yamato Wrote: [ -> ]This dvar changes easily the message that appears when you load screen.

Code:
setDvar("didyouknow","Your Info");
OMA

That should be a clientdvar (so it applies to the clients), but of course you can use it as a setdvar.

OMA