-
Notifications
You must be signed in to change notification settings - Fork 656
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
217 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
----------------------------------- | ||
-- Area: Aht Urhgan Whitegate | ||
-- NPC: Zhamwaa | ||
-- !pos -103.323 0.001 -76.504 50 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 500, 7) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 500) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
----------------------------------- | ||
-- Area: Al Zahbi | ||
-- NPC: Krujaal | ||
-- !pos 36.522 0.000 -63.198 48 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 0, 7) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 0) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
----------------------------------- | ||
-- Area: Bastok Markets | ||
-- NPC: Hildith | ||
-- !pos -176.664 -8.000 25.158 235 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 488) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 488) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
----------------------------------- | ||
-- Area: Bastok Markets | ||
-- NPC: Loulia | ||
-- !pos -176.212 -8.000 -25.049 235 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 487) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 487) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
----------------------------------- | ||
-- Area: Bastok Mines | ||
-- NPC: Leonie | ||
-- !pos 118.871 0.996 -83.916 234 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 568) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 568) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
----------------------------------- | ||
-- Area: Northern San d'Oria | ||
-- NPC: Pulloie | ||
-- !pos 132.847 -0.199 -2.627 231 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
if player:getNation() == 0 then | ||
player:startEvent(595) | ||
else | ||
player:startEvent(598) | ||
end | ||
-- TODO: | ||
-- if player:getNation() == 0 then | ||
-- player:startEvent(595) | ||
-- else | ||
-- player:startEvent(598) | ||
-- end | ||
|
||
xi.moghouse.visitationNPCOnTrigger(player, npc, 838) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 838) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
----------------------------------- | ||
-- Area: Port Bastok | ||
-- NPC: Wurteh | ||
-- !pos 72.782 8.499 -242.102 236 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
-- TODO: What is csid 95? | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 382) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 382) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
----------------------------------- | ||
-- Area: Port San d'Oria | ||
-- NPC: Phersula | ||
-- !pos 80.316 -15.999 -134.112 232 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 775) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 775) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
----------------------------------- | ||
-- Area: Port Windurst | ||
-- NPC: Boronene | ||
-- !pos 201.651 -12.000 229.584 240 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 638) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 638) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
----------------------------------- | ||
-- Area: Northern San d'Oria | ||
-- NPC: Fulchia | ||
-- !pos 158.522 -1.999 164.928 230 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
-- TODO: 585, 587? | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 893) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 893) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
----------------------------------- | ||
-- Area: Windurst Woods | ||
-- NPC: Abby Jalunshi | ||
-- !pos -101.895 -4.000 36.172 241 | ||
----------------------------------- | ||
---@type TNpcEntity | ||
local entity = {} | ||
|
||
entity.onTrigger = function(player, npc) | ||
xi.moghouse.visitationNPCOnTrigger(player, npc, 798) | ||
end | ||
|
||
entity.onEventFinish = function(player, csid, option) | ||
xi.moghouse.visitationNPCOnEventFinish(player, csid, option, 798) | ||
end | ||
|
||
return entity |