mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 01:40:00 +00:00
23 lines
979 B
PHP
23 lines
979 B
PHP
<?php
|
|
// ----------------------------------------------------------------------------------------
|
|
// Variables for PdrUtil class
|
|
// ----------------------------------------------------------------------------------------
|
|
define('CMD_PDR_UTIL', 'C:/RyzomCore/ryzom_core_server/ryzom/tools/pdr_util');
|
|
define('SHARD_SAVE', 'C:/RyzomCore/ryzom_core_server/ryzom/server/save_shard');
|
|
define('SHEETID_DIR', 'C:/RyzomCore/ryzom_core_server/ryzom/common/data_leveldesign/leveldesign/Game_elem');
|
|
define('TEMP_UNPACK', 'c:/temp');
|
|
|
|
// ----------------------------------------------------------------------------------------
|
|
// Variables for nel database access
|
|
// ----------------------------------------------------------------------------------------
|
|
|
|
// where we can find the mysql database
|
|
$DBHost = 'localhost';
|
|
$DBUserName = 'shard';
|
|
$DBPassword = '';
|
|
$DBName = 'nel';
|
|
|
|
//
|
|
$RingDBUserName = 'shard';
|
|
$RingDBName = 'ring_open';
|
|
$RingDBPassword = '';
|