mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-18 11:42:25 +00:00
* Fix for GENERIC_9_STRINGS * Update .gitignore * OP_ExpansionPacketData for Titanium and RoF2 * Update for login_opcodes_sod.conf * Add OP_LoginExpansionPacketData for Titanium and RoF2 * Few expansion fixes * Update client.h * Update client.h * l * Updates based on PR feedback. Moved configuration to login.json Set Titanium limits to constants * Update login.json Added the two configurations to login.json display_expansions - true/false to display on the server select screen max_expansions - the bitmask of expansions enabled (http://spire.akkadius.com/calculators#expansions-bitmask-calculator) * Further cleanup based on feedback. * Further cleanup and refactor max_expansions to max_expansions_mask to better reflect its purpose * Missed rename of max_expansions corrected.
43 lines
931 B
JSON
43 lines
931 B
JSON
{
|
|
"database": {
|
|
"host": "127.0.0.1",
|
|
"port": "3306",
|
|
"db": "peq",
|
|
"user": "root",
|
|
"password": "eqemu"
|
|
},
|
|
"account": {
|
|
"auto_create_accounts": true
|
|
},
|
|
"worldservers": {
|
|
"unregistered_allowed": true,
|
|
"show_player_count": false,
|
|
"dev_test_servers_list_bottom": false,
|
|
"special_character_start_list_bottom": false,
|
|
"reject_duplicate_servers": false
|
|
},
|
|
"web_api": {
|
|
"enabled": true,
|
|
"port": 6000
|
|
},
|
|
"security": {
|
|
"mode": 14,
|
|
"allow_password_login": true,
|
|
"allow_token_login": true
|
|
},
|
|
"logging": {
|
|
"trace": false,
|
|
"world_trace": false,
|
|
"dump_packets_in": false,
|
|
"dump_packets_out": false
|
|
},
|
|
"client_configuration": {
|
|
"titanium_port": 5998,
|
|
"titanium_opcodes": "login_opcodes.conf",
|
|
"sod_port": 5999,
|
|
"sod_opcodes": "login_opcodes_sod.conf",
|
|
"display_expansions" : true,
|
|
"max_expansions_mask" : 524287
|
|
}
|
|
}
|