me to ^^
-azzimi
Printable View
This NPC fix is for Life database only...
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;
ALTER TABLE creature_proto ADD walk_speed FLOAT DEFAULT "2.5" NOT NULL
AFTER death_state;
ALTER TABLE creature_proto ADD run_speed FLOAT DEFAULT "8" NOT NULL AFTER
walk_speed;
Webpage setup and completed; 1595 guide fixed (requires the use of given database);
If you need support, please contact on the website.
Girshare
I got everything up, but i have some problem with altering for mobs...
What does this instruction means "update creature_proto set maxhealth=minhealth;"???