• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

TrinityCore Spell_Area table

Sixon

Emulation Addict
Hi guys,

Few questions if anyone would be so kind to help.

With the Spell_Area table. Can someone explain how it works exactly.. To my understanding its basically as follows:

Code:
INSERT INTO spell_area VALUES (150000, 5012, 50015, 0, 0, 0, 2, 1, 64, 11);

So using the above, The spell is a Aura by the way.
When the player completes the quest 50015 the spell is cast. This puts the player into phase 8

Now that works fine, I come into trouble when I want to change phase again.
So below is the next quest in the chain. And should put the player in Phase 16, But its seems like its not removing the previous phase so when the player completes the quest they're put into phase 24

Code:
INSERT INTO spell_area VALUES (150001, 5012, 50016, 0, 0, 0, 2, 1, 64, 11);

- - - Updated - - -

Never mind, Literally just figured it out after pressing post :)
 
Top