1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-30 08:07:46 +00:00
sapphire/bin/config/settings_zone.xml

46 lines
1.5 KiB
XML
Raw Normal View History

2017-08-08 13:53:47 +02:00
<Settings>
<General>
<!-- Port the zone server accepts game conenctions on -->
<ListenPort>54992</ListenPort>
2017-08-29 12:06:13 +02:00
<!-- Ip the zone server conenctions on -->
2017-08-08 13:53:47 +02:00
<ListenIp>127.0.0.1</ListenIp>
<!-- Path of FFXIV dat files -->
<DataPath>H:\\SteamLibrary\\steamapps\\common\\FINAL FANTASY XIV - A Realm Reborn\\game\\sqpack\\ffxiv</DataPath>
<Scripts>
<!-- where compiled scripts are placed -->
<Path>./compiledscripts/</Path>
<!-- path relative to the path above, stores where scripts are when loaded -->
<CachePath>./cache/</CachePath>
<HotSwap>
<Enabled>1</Enabled>
<BuildDir>../cmake-build-debug/</BuildDir>
<BuildCmd>nmake %1%</BuildCmd>
</HotSwap>
</Scripts>
2017-11-26 00:38:33 +11:00
<!-- Path of Chai script files -->
2017-12-10 23:50:35 +11:00
<ScriptPath>./compiledscripts/</ScriptPath>
2017-08-08 13:53:47 +02:00
<!-- Connection settings for the mysql db -->
<Mysql>
<Host>127.0.0.1</Host>
<Port>3306</Port>
<Username>root</Username>
<Pass></Pass>
<Database>sapphire</Database>
<SyncThreads>2</SyncThreads>
<AsyncThreads>2</AsyncThreads>
2017-08-08 13:53:47 +02:00
</Mysql>
</General>
2017-09-10 02:24:29 +02:00
<Parameters>
<!-- Messages players see upon logging in - These *must* be smaller than 307 characters -->
<MotDArray>
<MotD>&lt;&lt;&lt;Welcome to Sapphire&gt;&gt;&gt;</MotD>
<MotD>This is a very good server</MotD>
<MotD>You can change these messages by editing MotDArray in config/settings_zone.xml</MotD>
2017-10-21 16:41:09 +11:00
</MotDArray>
2017-09-10 02:24:29 +02:00
</Parameters>
2017-08-29 12:06:13 +02:00
</Settings>