diff --git a/Lua-Parser.md b/Lua-Parser.md index 31771d7..36b3cee 100644 --- a/Lua-Parser.md +++ b/Lua-Parser.md @@ -55,6 +55,8 @@ Item Scripts are quest scripts attached to Items. Items will load a script on the first event that triggers them and will load one and only one from the following location. Which ever it finds first in the following order: * ./quests/zone/items/item_script.lua * ./quests/items/item_script.lua +* ./quests/zone/items/default.lua +* ./quests/items/default.lua The format of the item_script is as follows: ``` @@ -72,6 +74,8 @@ Spell Scripts are quest scripts attached to Spells. Spells will load a script on the first event that triggers them and will load one and only one from the following location. Which ever it finds first in the following order: * ./quests/zone/spells/spell_id.lua * ./quests/spells/spell_id.lua +* ./quests/zone/spells/default.lua +* ./quests/spells/default.lua ### Encounter Scripts