Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Serverside Modding => Topic started by: gabrielesani on January 11, 2013, 11:22:49 am

Title: [QUESTION] Quest Helper
Post by: gabrielesani on January 11, 2013, 11:22:49 am
Is there any way to delete the internal wow quest helper?

I'm using Trinity Core, with Wow at version 3.3.5a.

Thanks in advice!
Title: Re: [QUESTION] Quest Helper
Post by: stoneharry on January 11, 2013, 12:01:59 pm
Quote from: "gabrielesani"
Is there any way to delete the internal wow quest helper?

I'm using Trinity Core, with Wow at version 3.3.5a.

Thanks in advice!

Delete all quest_poi and quest_poi_points. You can use the following SQL query:

Code: [Select]
TRUNCATE TABLE `quest_poi`;
TRUNCATE TABLE `quest_poi_points`;

Restart server -> done.
Title: Re: [QUESTION] Quest Helper
Post by: gabrielesani on January 11, 2013, 12:08:47 pm
I love you!!!! Thanks you very much!