Ariador Posted August 19, 2019 Report Posted August 19, 2019 This is not a question, I simply could not find bug reporting thread, so writing it here. I've compiled most recent MaNGOS Two 0.21 at Ubuntu 19.04 with MySQL, everything passed just fine. Got complete client 3.3.5a (12340) from some site, checked it for completeness - works good, Vanilla, BK, WoTL all available at that site. Extracted dbc, maps, vmaps, mmaps with no errors at all, set realmd and mangosd to start as daemons (as recommended by Talendrys - my personal thanks for perfect installation guide). Just had to correct priorities in mangosd.conf - LogLevel from 3 to 0 and LogFilelevel from 0 to 1 to avoid endless events loop in mangosd console when starting it manually. Well, mangosd shows lots of database mistakes when starting - incorrect spell targets, incorrect paths for monsters - but all these are non-ctitilal, it starts well. Then, when checking playability. I've found that predefined characters aren't able to go to BK and WoTLK areas, run within the Classic content only. Client says something kinda 'You must have BK/WoTLK expansion to be installed to go here or there'. Config.wtf says - SET accounttype "CL". Changing to "BK" or "LK" doesn't work indeed, it respawns at every client start. Checked mangosd.conf variable Expansion - it is set to 2 by default, it's okay. It took me a while to find that default accounts at MaNGOS Two 0.21 are set to use no expansion: column 'expansion' at table realm.account shows all zeroes. Why don't to correct this small omittance? Also it would be good to put LogLevel=0 and LogFileLevel=1 values into mangosd.conf (if it also fits for other systems than Linux).
madmax Posted August 19, 2019 Report Posted August 19, 2019 Hi, There is a bug tracker - https://www.getmangos.eu/bug-tracker/
antz Posted August 19, 2019 Report Posted August 19, 2019 I am currently working on a permanent fix for this issue: As a temporary fix, you can apply the follow SQL to the realm DB's: For TBC: ALTER TABLE account MODIFY COLUMN `expansion` TINYINT(3) UNSIGNED NOT NULL DEFAULT '1' COMMENT 'Which maximum expansion content a user has access to.'; For Wotlk: ALTER TABLE account MODIFY COLUMN `expansion` TINYINT(3) UNSIGNED NOT NULL DEFAULT '2' COMMENT 'Which maximum expansion content a user has access to.'; For Cata: ALTER TABLE account MODIFY COLUMN `expansion` TINYINT(3) UNSIGNED NOT NULL DEFAULT '3' COMMENT 'Which maximum expansion content a user has access to.';
Ariador Posted August 22, 2019 Author Report Posted August 22, 2019 Thanks Mr. MadMax, thanks Mr. Antz! I'll definitely send further bug reports (if any:) to /bug-tracker!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.