[DiscordArchive] So I'm too the point where I want to start customizing some things that have bothered me from day 1.
[DiscordArchive] So I'm too the point where I want to start customizing some things that have bothered me from day 1.
Archived author: Kek • Posted: 2022-08-29T03:17:27.373000+00:00
Original source
Here's an example of one of mine:
```sql
--
-- Various fixes/changes
--
-- fix uninteractable object
UPDATE `gameobject` SET `state` = 1 WHERE `guid` in (10354,10333);
-- made quest able to start when alchemy is picked up
UPDATE `quest_template_addon` SET `RequiredSkillPoints` = 1 WHERE `ID` = 1581;
UPDATE `quest_template` SET `QuestLevel` = 7 WHERE `ID` = 1581;
```