Originally Posted by
Agma
ehh... can i ask one thing i would like to remove the teles to the malls from the "taxi" guy... any idea how to delete the Tele to heartglen and Sky mall ? and add it back if needed later?
You can't because they are scripted into one of the dll files and the author hasnt posted the source only the compile .dll files
Originally Posted by
Agma
and how to del the quest from da panda ? and then how to makeit back if needed
in sqlyog or heidisql execute this to remove the quest
Code:
delete * from `creature_quest_starter` where quest = '1200000';
delete * from `creature_quest_finisher` where quest = '1200000';
and this to put it back in
Code:
insert into `creature_quest_starter` (`id`, `quest`) values('123457','1200000');
insert into `creature_quest_finisher` (`id`, `quest`) values('123457','1200000');