- Joined
- Aug 22, 2006
- Messages
- 1,495
- Reaction score
- 24
ok today I wanted to set up a wow server just for fun
all went great but I cant see monsters and npcs
im using im using ascent rev 1595 and life database rev 0.1
I did found a query for if that didnt work :
alter 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;
but after that its stil not working any ideas
maybe another database ?
all went great but I cant see monsters and npcs
im using im using ascent rev 1595 and life database rev 0.1
I did found a query for if that didnt work :
alter 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;
but after that its stil not working any ideas
maybe another database ?