Index: Lower_Jeuno/npcs/Subash.lua =================================================================== --- Lower_Jeuno/npcs/Subash.lua (revision 3276) +++ Lower_Jeuno/npcs/Subash.lua (working copy) @@ -1,8 +1,11 @@ +---------------------------------- +-- Area: Lower Jeuno +-- NPC: Subash +-- Type: Item Deliverer +-- @zone: 245 +-- @pos: -19.84 -0.101 -38.081 +-- ----------------------------------- --- Area: Lower Jeuno --- NPC: Subash --- Delivery NPC ------------------------------------ package.loaded["scripts/zones/Lower_Jeuno/TextIDs"] = nil; require("scripts/zones/Lower_Jeuno/TextIDs"); @@ -12,23 +15,24 @@ ----------------------------------- function onTrade(player,npc,trade) -end; +end; ----------------------------------- -- onTrigger Action ----------------------------------- function onTrigger(player,npc) + player:showText(npc, ITEM_DELIVERY_DIALOG); player:openSendBox(); -end; +end; ----------------------------------- -- onEventUpdate ----------------------------------- function onEventUpdate(player,csid,option) ---printf("CSID: %u",csid); ---printf("RESULT: %u",option); + -- printf("CSID: %u",csid); + -- printf("RESULT: %u",option); end; ----------------------------------- @@ -36,9 +40,7 @@ ----------------------------------- function onEventFinish(player,csid,option) ---printf("CSID: %u",csid); ---printf("RESULT: %u",option); + -- printf("CSID: %u",csid); + -- printf("RESULT: %u",option); end; - - Index: Selbina/npcs/Boris.lua =================================================================== --- Selbina/npcs/Boris.lua (revision 3276) +++ Selbina/npcs/Boris.lua (working copy) @@ -22,7 +22,7 @@ ----------------------------------- function onTrigger(player,npc) - player:showText(npc, BORIS_DELIVERY_DIALOG); + player:showText(npc, TextID_Selbina.BORIS_DELIVERY_DIALOG); player:openSendBox(); end; Index: Selbina/npcs/Wenzel.lua =================================================================== --- Selbina/npcs/Wenzel.lua (revision 3276) +++ Selbina/npcs/Wenzel.lua (working copy) @@ -22,7 +22,7 @@ ----------------------------------- function onTrigger(player,npc) - player:showText(npc, WENZEL_DELIVERY_DIALOG); + player:showText(npc, TextID_Selbina.WENZEL_DELIVERY_DIALOG); player:openSendBox(); end; Index: Selbina/TextIDs.lua =================================================================== --- Selbina/TextIDs.lua (revision 3276) +++ Selbina/TextIDs.lua (working copy) @@ -14,6 +14,8 @@ -- NPC texts NOMAD_MOOGLE_DIALOG = 6554, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. +BORIS_DELIVERY_DIALOG = 7485, -- My independent survey confirms the inn as the preferred location from which adventurers send parcels. +WENZEL_DELIVERY_DIALOG = 7484, -- My independent survey confirms the town entrance as the preferred location from which adventurers send parcels. -- Shop Texts HERMINIA_SHOP_DIALOG = 6930, -- Hello there. What can I do for you? @@ -24,5 +26,4 @@ CHUTARMIRE_SHOP_DIALOG = 6936, -- I have items for those who delve in the black arts! DOHDJUMA_SHOP_DIALOG = 6932, -- I'm Dohdjuma, and I sell all kinds of things. } -BORIS_DELIVERY_DIALOG = 7485, -- My independent survey confirms the inn as the preferred location from which adventurers send parcels. -WENZEL_DELIVERY_DIALOG = 7484, -- My independent survey confirms the town entrance as the preferred location from which adventurers send parcels. +