MW_052_053_alpha2 (released 12-21-03)
This release includes so many updates and fixes that i cant even begin to remember what all was intaled. Check Changelog for notes. Thanks to the MW team.
You will however notice that most zones are at leased populated, we will now begin work on faction and loot for the added spawns, and many other bug fixes. Note: This release is intended for 5.2 and 5.3dr1 (5.3dr2 works but you will loose caracter information) dont say i didnt warn you. http://osdn.dl.sourceforge.net/sourc...053_alpha2.zip Complete http://osdn.dl.sourceforge.net/sourc...a2_upgrade.zip Upgrade (keeps your bugs petitions guilds caracters variables and some other things) Reminder WE DO NOT TAKE RESPONSABILITY FOR DATA LOSS WITH 053dr2 for your caracters! |
Man, a EQlive compatible EQEmu and a new TCS release in one day. This kicks ass.
And to top it all off the seahawks won :) Woot Edit: btw, is this the version that is merged with the "Re-invention of the wheel" DB? |
Yes its the merge, being so, alot of areas took a huge forward step, but i fear that some things may have taken a backwards step so please report bugs in this forum so we may get them fixed up asap
|
This is tested in everfrost, low level mobs are still hiting for hundreds (incorrect maxdmg), and instant spawn.
Also rivervale halfing druid master now becomes BL master (incorrect class). Havent tested anything else yet. |
high level mobs and guards
anytime you attack a high lvel mob or they attack you you get disconnected.
ie attacking a guard you go ld. you pet can attack him after he kills your pet it disconnects you. |
The problem with LD isn't happening to me. 5.3DR2 + This DB. I just can't #zone to sebilis or gukbottom (haven't tried others) it crashes the Zone.exe and I have to #movechar the char out.
-- Veto |
i too am getting disconnected when fighting npcs, right before getting killed it just boots to character select. using the newly patched eq not sure if thats the problem or not. still have the eq right before the patch but thought i would try this out with newly patched eq to have the new spells affects :) wondering if yall are gonna work on fixing some of the aa's. im truly loving how fast you guys are getting these updates out to us. keep up the good work it's much appreciated.
|
I have no reason to belive that this is a db issue at this time as this version of the db works fine with 5.3dr1 i do know their are some bugs in the newest release that works with eqlive, but have no confermation on what bugs where as i havent even attempted to run it yet
|
I have no reason to belive that this is a db issue at this time as this version of the db works fine with 5.3dr1 i do know their are some bugs in the newest release that works with eqlive, but have no confermation on what bugs where as i havent even attempted to run it yet
|
You are correct bud9weiser, however the frequency of the disconnects can be worked around by fixing bad data in the database. The client crashes in 5.3 DR2 appear to be happening whenever your character dies, so your assumption is correct, it's a code problem. However I was frequently getting killed in one hit by several low level mobs which then caused the disconnect. This is happening because an inordinate amount of mobs have their maxdmg set to 400:
Code:
mysql> select count(*) from npc_types where maxdmg = 400; Code:
mysql> select count(*) from npc_types where maxdmg <> 400; Code:
mysql> select distinct level from npc_types where maxdmg > 400; EDIT: I realized the above should read "take the average of all the distinct maxdmg values other than 400" :roll: |
since you know sql code, you could just make a short fix by yourself (at least for your own use if you need it), of the kind :
update npc_types set maxdmg=9 where level=1; update npc_types set maxdmg=14 where level=2; ... |
Quote:
In mysql you can't do a subselect in an update when the subselect queries the table you are updating, so I had to break it in to two queries. The first grabs the average and the second updates the maxdmg. It will only update rows with maxdmg equal to 400. Obviously you will have to do this manually for each level or write a script/app to do it for you. Here's the SELECT query which gets the average, in this case for level 1: Code:
select ROUND(AVG(maxdmg)) from npc_types where level = 1 and maxdmg <> 400; Code:
update npc_types set maxdmg = 4 where level = 1 and maxdmg = 400; |
Quote:
By the way, I don't remember why I had the $EQEMU/Maps directory, what are those needed for? I see the zone loading the Maps/*.map file when it goes into a zone, however, it seems to work fine when I don't have them. What purpose do they serve? -- Veto |
Also if you want to make sure you get loot (but no drops) off of every kill with this database, run the following in mysql:
Code:
update npc_types set loottable_id = 1 where level <= 10 and loottable_id = 0; |
We will be fixing the issues with max and min damage as soon as we can, alot of this release is new data and still needs tweeking and adjusting. Their will be more updates to follow.
|
All times are GMT -4. The time now is 10:54 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.