Apperance Block
Server Side Mods - Mrx's Mods For RTB

Home

X Menu (Mod Pack)

Maps & Saves

Client Side Mods

Server Side Mods

Game Tips

Screenshots

Contact

Links

Apperance block

This blocks the person from changing their apperance on your server.

Can be used if you wish to give someone an apperance after choosing a class in an RPG

Open rtb/server/scripts/ptta/serverCmd.cs for bacs

Or rtb/server/scripts/servercmd.cs for normal RTB

Find:

function ServerCmdUpdatePrefs


Below you should see:

if($pref::server::copsandrobbers)
{
return;
}

add this below:

if($pref::server::RPGGame)
{
return;
}

When running your RPG simply enter:

$pref::server::RPGGame = 1;

Into the console to turn apperance blocking on or

$pref::server::RPGGame = 0;

into the console to turn apperance blocking off.