summaryrefslogtreecommitdiff
path: root/docs/hooks-script.md
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2021-04-28 16:29:37 +0200
committerGitHub <noreply@github.com>2021-04-28 16:29:37 +0200
commitd0654049aeea675c4f43bc383d2a5935448a2d6e (patch)
tree8ae09e41075c00692ef4084d7d7927597f79e0f2 /docs/hooks-script.md
parentbb8584c1be258e76794d9d60637bea9a44d73f51 (diff)
downloadwiki-d0654049aeea675c4f43bc383d2a5935448a2d6e.tar.gz
wiki-d0654049aeea675c4f43bc383d2a5935448a2d6e.tar.bz2
wiki-d0654049aeea675c4f43bc383d2a5935448a2d6e.zip
Update hooks-script.md
Diffstat (limited to 'docs/hooks-script.md')
-rw-r--r--docs/hooks-script.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/hooks-script.md b/docs/hooks-script.md
index 9bb6ca1..927a225 100644
--- a/docs/hooks-script.md
+++ b/docs/hooks-script.md
@@ -8,13 +8,13 @@ The ScriptAI system implemented by AC uses a special [Observer pattern](https://
This guide, together with our [module system](Create-a-Module.md) lets you extend the AzerothCore without patching it directly. This allows you to update your repository by keeping your additions and customizations conflict-free!
-# Resources
+## Resources
-## Hook List
+### Hook List
The list of the hooks can be found inside the [ScriptMgr.h file](https://github.com/azerothcore/azerothcore-wotlk/blob/master/src/server/game/Scripting/ScriptMgr.h)
-## Glossary
+### Glossary
* **Hook**: A function that is declared inside a **_ScriptObject_** and that is defined by the **_Listeners_**
* **ScriptObject**: Abstract class that should be extended to create the **_Observer_**.