From f9cb6aa8bc263d8003c3188b6b27896e1a49ce5d Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 21 Jun 2013 18:42:36 -0700 Subject: [PATCH] Updated Lua Parser (markdown) --- Lua-Parser.md | 4 ++++ 1 file changed, 4 insertions(+) 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