- Joined
- Jul 4, 2007
- Messages
- 11
- Reaction score
- 0
I know some 1 can help with this1. Log in, character is up and working, just no npc's any where. please help
:man:
:man:
Last edited:
1)alter table creature_proto change health minhealth int(30) unsigned not null;
2)alter table creature_proto add column maxhealth int(30) unsigned not null after minhealth;
3)update creature_proto set maxhealth=minhealth;
4)alter table creature_proto change level minlevel int(30) unsigned not null;
5)alter table creature_proto add column maxlevel int(30) unsigned not null after minlevel;
6)update creature_proto set maxlevel=minlevel;
7)alter table creature_proto add column invisibility_type int(30) unsigned not null;
8)alter table creature_proto add column death_state int(30) unsigned not null;
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;