Since a version for 2.1.3 was posted here is one for 2.3
The (non)famous emu kobold!
Code:------------------ Kobold Server V5 ------------------ Supported client version: 7561 Server version: 2337 [!!! Most AI driven world among all emulators !!!] 90379 spawned creatures 77754 spawned creatures with AI modules [!] Use our own provided Database to get fully correct world behaviour. Kobold Team is glad to release next server update V5. [!]This update must be put over V4 Kobold Server version only. It is not full server. Binaries - Tools - Scripts - SQL updates: -------- x86 - x64: Deposit Files Updated full database: --------------- Deposit Files Crashes: -------- [!] In case of crashes you will get crash dump file generated in errors folder of each server. Please give download link to them so that we could fix crashes rapidly. Although it shall not crash at all[!] For Doomies: We are planning to release full server compilation (Novice Pak) with SQLite DB for those who find it difficult to setup/configure/use MySQL DBs and prefer file-based method with one-click start. Performance hints: ------------------ 1) To achieve best performance on populated servers pls make sure you have: DatabaseUseExecutorThread = yes Option like this in your sql.conf file for WS and ES. This will turn all DB operations be fully asynchronious for interface you enable this option. 2) To improve DB performance even more on more powerfull machnies you have an option to convert some of your MySQL tables into InnoDB:
Code:ALTER TABLE `characters` ENGINE = InnoDB; ALTER TABLE `char_enum` ENGINE = InnoDB; ALTER TABLE `char_auras` ENGINE = InnoDB; ALTER TABLE `chars_data` ENGINE = InnoDB; ALTER TABLE `auctionhouse` ENGINE = InnoDB; ALTER TABLE `bindpoint` ENGINE = InnoDB; ALTER TABLE `chars_data` ENGINE = InnoDB; ALTER TABLE `char_spells` ENGINE = InnoDB; ALTER TABLE `char_actionbuttons` ENGINE = InnoDB; ALTER TABLE `queststatus` ENGINE = InnoDB; ALTER TABLE `char_reputation` ENGINE = InnoDB; ALTER TABLE `inventory` ENGINE = InnoDB; ALTER TABLE `honor` ENGINE = InnoDB; ALTER TABLE `item_instances` ENGINE = InnoDB; ALTER TABLE `mail` ENGINE = InnoDB;