fix(Core/QuestNpc): Rework/fix the Stave of Ancients script (#7929)

* WIP Artorius the amiable

* Add Artorius sql update

* Splited npc script to stave of ancients script

  * Move reveal form to npcstaveqai
  * Change enum constant names
  * Refactor DoAction
  * Refactor feign death reset
This commit is contained in:
v.tihomirov 2021-10-28 19:08:19 +03:00 committed by GitHub
parent a650fd495c
commit 12b195e116
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 2162 additions and 189 deletions

View file

@ -31,6 +31,7 @@ void AddSC_chat_log(); // location: scripts\World\chat_log.cpp
void AddSC_character_creation();
void AddSC_action_ip_logger(); // location: scripts\World\action_ip_logger.cpp
void AddSC_player_scripts();
void AddSC_npc_stave_of_ancients();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
@ -51,4 +52,5 @@ void AddWorldScripts()
AddSC_character_creation();
AddSC_action_ip_logger(); // location: scripts\World\action_ip_logger.cpp
AddSC_player_scripts();
AddSC_npc_stave_of_ancients();
}