How to disable an instance?

Viewed 243

I want to disable an instance in AzerothCore but I don't know how.

It's for a progressive server.

Question asked in our Discord, the user had not tried anything.

1 Answers

You can disable maps with this the table disables in the world database

http://www.azerothcore.org/wiki/disables

Example by Shard-MW:

INSERT INTO disables (2, 631, 15, 0, 0, "Raid - ICC - Disable");

If you want to disable a dungeon, replace 15 by 3. 15 is for raids

Related