Just a little guide for those who wanna test 1141 core and they need a DB structure update:
1)open SQLyog (recommended) find you database like 'ascent' right click and
choose 'restore from sql dump' and use this file:
fixes.sql
if you already have a 'pickpocketingloot' table you can delete it and make an empty one and then apply the fixes.sql
2)In the query box of SQLyog paste the below text
then select edit-execute-execute all queriesalter table creature_proto change health minhealth int(30) unsigned not null;
alter table creature_proto add column maxhealth int(30) unsigned not null after minhealth;
update creature_proto set maxhealth=minhealth;
alter table creature_proto change level minlevel int(30) unsigned not null;
alter table creature_proto add column maxlevel int(30) unsigned not null after minlevel;
update creature_proto set maxlevel=minlevel;
alter table creature_proto add column invisibility_type int(30) unsigned not null;
alter table creature_proto add column death_state int(30) unsigned not null;
and you are ready for the 1141 core :)
3)Execute this update for 1149.sql for the 1149 core
I hope i helped..post your comments
ATTENTION:these fixes are not made by me i am just putting them all together


Reply With Quote![[GUIDE]TNDB 8 SQL Structure update](http://ragezone.com/hyper728.png)


