khanat-opennel-code/code/ryzom/server/ai_service.cfg

65 lines
1.5 KiB
INI
Raw Normal View History

2010-05-06 00:08:41 +00:00
// Use with commandline: ai_service -C. -L. --nobreak --writepid -mCommon:Newbieland:Post
2010-05-20 08:27:57 +00:00
// ---- config local variables
2010-05-06 00:08:41 +00:00
SUPort = 50505;
SUHost = "localhost";
2010-05-20 08:27:57 +00:00
// SU - listen address of the SU service (for L5 connections)
SUAddress = SUHost+":"+SUPort;
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
#include "ai_service_default.cfg"
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
// ---- service NeL variables (used by ConfigFile class)
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
AESAliasName= "ais_newbyland";
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
GraphVars += { "TickSpeedLoop", "60000" };
GraphVars += { "L5CallbackCount", "60000" };
GraphVars += { "L5CallbackTime", "60000" };
GraphVars += { "MirrorCallbackCount", "60000" };
GraphVars += { "MirrorCallbackTime", "60000" };
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
Paths = {
".",
"../common/data_common",
"../common/data_leveldesign",
};
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
// ---- service NeL variables (used by CVariable class)
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
// ---- service custom variables (used by ConfigFile class)
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
#include "used_continents.cfg"
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
// Mirror limits
DatasetSizefe_temp = 600000;
DatasetSizefame = 26000;
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
// define the primitives configuration used. (AIS, EGS)
UsedPrimitives =
2010-05-06 00:08:41 +00:00
{
2010-05-20 08:27:57 +00:00
"newbieland_all",
2010-05-06 00:08:41 +00:00
};
// the following variable must be defined but should be empty - it's presence is used to change the behaviour
// of the packed sheet reader
GeorgePaths = { "" };
// ---- service custom variables (used by CVariable class)
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
NbPlayersLimit = PlayerLimit;
2010-05-06 00:08:41 +00:00
// Entity Limits (AIS)
NbPetLimit = NbPlayersLimit*4;
NbFaunaLimit = 50000;
NbNpcLimit = 20000;
NbFxLimit = 500;
2010-05-20 08:27:57 +00:00
#include "backup_service_interface.cfg"
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
// Set this shard as a ring (1) or mainland (0) shard (main behavior switch)
IsRingShard = 0;
2010-05-06 00:08:41 +00:00
2010-05-20 08:27:57 +00:00
// Disable ryzom verbose logging
VerboseMIRROR = 0;