diff --git a/FFXIVClassic Map Server/actors/chara/npc/Npc.cs b/FFXIVClassic Map Server/actors/chara/npc/Npc.cs index 684c687d..e711dbd0 100644 --- a/FFXIVClassic Map Server/actors/chara/npc/Npc.cs +++ b/FFXIVClassic Map Server/actors/chara/npc/Npc.cs @@ -335,7 +335,7 @@ namespace FFXIVClassic_Map_Server.Actors if (File.Exists(String.Format("./scripts/unique/{0}/{1}/{2}.lua", zone.zoneName, className, uniqueIdentifier))) child = LuaEngine.LoadScript(String.Format("./scripts/unique/{0}/{1}/{2}.lua", zone.zoneName, className, uniqueIdentifier)); - if (parent == null) + if (parent == null && child == null) { LuaEngine.SendError(player, String.Format("ERROR: Could not find script for actor {0}.", GetName())); return null; @@ -363,9 +363,9 @@ namespace FFXIVClassic_Map_Server.Actors if (File.Exists(String.Format("./scripts/unique/{0}/{1}/{2}.lua", zone.zoneName, className, uniqueIdentifier))) child = LuaEngine.LoadScript(String.Format("./scripts/unique/{0}/{1}/{2}.lua", zone.zoneName, className, uniqueIdentifier)); - if (parent == null) + if (parent == null && child == null) { - LuaEngine.SendError(player, String.Format("ERROR: Could not find script for actor {0}.", GetName())); + //LuaEngine.SendError(player, String.Format("ERROR: Could not find script for actor {0}.", GetName())); return; } @@ -397,19 +397,19 @@ namespace FFXIVClassic_Map_Server.Actors if (File.Exists(String.Format("./scripts/unique/{0}/{1}/{2}.lua", zone.zoneName, className, uniqueIdentifier))) child = LuaEngine.LoadScript(String.Format("./scripts/unique/{0}/{1}/{2}.lua", zone.zoneName, className, uniqueIdentifier)); - if (parent == null) + if (parent == null && child == null) { - LuaEngine.SendError(player, String.Format("ERROR: Could not find script for actor {0}.", GetName())); + //LuaEngine.SendError(player, String.Format("ERROR: Could not find script for actor {0}.", GetName())); return; } //Run Script - if (child != null && !child.Globals.Get("onSpawn").IsNil()) + if (child != null && child.Globals["onSpawn"] != null) child.Call(child.Globals["onSpawn"], player, this); - else if (!parent.Globals.Get("onSpawn").IsNil()) + else if (parent != null && parent.Globals["onSpawn"] != null) parent.Call(parent.Globals["onSpawn"], player, this); else - return; + return; } } } diff --git a/data/scripts/base/chara/npc/mapobj/MapObjShipRouteLand.lua b/data/scripts/base/chara/npc/mapobj/MapObjShipRouteLand.lua new file mode 100644 index 00000000..bf78cd51 --- /dev/null +++ b/data/scripts/base/chara/npc/mapobj/MapObjShipRouteLand.lua @@ -0,0 +1,5 @@ +require ("global") + +function init(npc) + return false, false, 0, 0, 0, 0; +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/object/BgKeepout.lua b/data/scripts/base/chara/npc/object/BgKeepout.lua new file mode 100644 index 00000000..08e2ea14 --- /dev/null +++ b/data/scripts/base/chara/npc/object/BgKeepout.lua @@ -0,0 +1,5 @@ +require ("global") + +function init(npc) + return false, false, 0, 0; +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/object/MarketEntrance.lua b/data/scripts/base/chara/npc/object/MarketEntrance.lua new file mode 100644 index 00000000..9a26d2d2 --- /dev/null +++ b/data/scripts/base/chara/npc/object/MarketEntrance.lua @@ -0,0 +1,22 @@ +--[[ + +MarketEntrance Script + +Functions: + +eventPushChoiceAreaOrQuest(0xc13, 0xc1a, 0xdba,0, false, 0) - +eventPushStepPrvMarket(?, ?, ?) - + +--]] + +require ("global") + +function init(npc) + return false, false, 0, 0; +end + +function onEventStarted(player, npc, triggerName) + callClientFunction(player, "eventPushChoiceAreaOrQuest", 0xc13, 0xc1a, 0xdba,0, false, 0)); + + player:EndEvent(); +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/object/MiningPoint.lua b/data/scripts/base/chara/npc/object/MiningPoint.lua new file mode 100644 index 00000000..122887e1 --- /dev/null +++ b/data/scripts/base/chara/npc/object/MiningPoint.lua @@ -0,0 +1,19 @@ +require ("global") + +function init(npc) + return false, false, 0, 0; +end + +function onEventStarted(player, npc, triggerName) + + harvestJudge = GetStaticActor("HarvestJudge"); + + --callClientFunction(player, "delegateEvent", player, harvestJudge, "loadTextData", dummy); + --callClientFunction(player, "delegateEvent", player, harvestJudge, "targetCancel", dummy); + --callClientFunction(player, "delegateEvent", player, harvestJudge, "turnToTarget", dummy, 0); + --callClientFunction(player, "delegateEvent", player, harvestJudge, "openInputWidget", 22002, 1); + --callClientFunction(player, "delegateEvent", player, harvestJudge, "textInputWidget", harvestJudge, 22002, npc, false); + --callClientFunction(player, "delegateEvent", player, harvestJudge, "askInputWidget", harvestJudge, 22002, 1); + + player:EndEvent(); +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/object/ObjectEventDoor.lua b/data/scripts/base/chara/npc/object/ObjectEventDoor.lua new file mode 100644 index 00000000..8118453b --- /dev/null +++ b/data/scripts/base/chara/npc/object/ObjectEventDoor.lua @@ -0,0 +1,25 @@ +--[[ + +ObjectEventDoor Script + +Functions: + +eventDoorMoveAsk() - Shows confirm to move into event + +--]] + +require ("global") + +function init(npc) + return false, false, 0, 0; +end + +function onEventStarted(player, npc, triggerName) + choice = callClientFunction(player, "eventDoorMoveAsk"); + + if (choice == 1) then + + end + + player:EndEvent(); +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/object/ObjectShip.lua b/data/scripts/base/chara/npc/object/ObjectShip.lua new file mode 100644 index 00000000..6e562999 --- /dev/null +++ b/data/scripts/base/chara/npc/object/ObjectShip.lua @@ -0,0 +1,6 @@ + +require ("global") + +function init(npc) + return false, false, 0, 0; +end diff --git a/data/scripts/base/chara/npc/populace/PopulaceBlackMarketeer.lua b/data/scripts/base/chara/npc/populace/PopulaceBlackMarketeer.lua new file mode 100644 index 00000000..2015e023 --- /dev/null +++ b/data/scripts/base/chara/npc/populace/PopulaceBlackMarketeer.lua @@ -0,0 +1,37 @@ +--[[ + +PopulaceBlackMarketeer Script + +Functions: + +eventTalkWelcome(player) - Start Text +eventSellItemAsk(player, ?, ?) +eventAskMainMenu(player, index) - Shows +eventTalkBye(player) - Says bye text +eventTalkStepBreak() - Ends talk + +eventSealShopMenuOpen() - +eventSealShopMenuAsk() - +eventSealShopMenuClose() - +eventGilShopMenuOpen() - +eventGilShopMenuAsk() - +eventGilShopMenuClose() - + +--]] + +require ("global") + +function init(npc) + return false, false, 0, 0; +end + +function onEventStarted(player, npc, triggerName) + + callClientFunction(player, "eventTalkWelcome", player); + + currancyType = callClientFunction(player, "eventAskMainMenu", player); + callClientFunction(player, "eventSealShopMenuAsk", player); + + + player:EndEvent(); +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/populace/PopulaceChocoboLender.lua b/data/scripts/base/chara/npc/populace/PopulaceChocoboLender.lua new file mode 100644 index 00000000..0440d6da --- /dev/null +++ b/data/scripts/base/chara/npc/populace/PopulaceChocoboLender.lua @@ -0,0 +1,31 @@ +--[[ + +PopulaceChocoboLender Script + +Functions: + +eventTalkWelcome(player) - Start Text +eventAskMainMenu(player, curLevel, hasFundsForRent, isPresentChocoboIssuance, isSummonMyChocobo, isChangeBarding, currentChocoboWare) - Shows the main menu +eventTalkMyChocobo(player) - Starts the cutscene for getting a chocobo +eventSetChocoboName(true) - Opens the set name dialog +eventAfterChocoboName(player) - Called if player done naming chocobo, shows cutscene, returns state and waits to teleport outside city. +eventCancelChocoboName(player) - Called if player cancels naming chocobo, returns state. +eventTalkStepBreak(player) - Finishes talkTurn and says a goodbye +--]] + +require ("global") + +function init(npc) + return false, false, 0, 0; +end + +function onEventStarted(player, npc, triggerName) + + --callClientFunction(player, "eventTalkWelcome", player); + callClientFunction(player, "eventAskMainMenu", player, 20, true, true, true, true, 4); + callClientFunction(player, "eventTalkMyChocobo", player); + callClientFunction(player, "eventSetChocoboName", false); + callClientFunction(player, "eventAfterChocoboName", player); + + player:EndEvent(); +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/populace/PopulaceCompanyWarp.lua b/data/scripts/base/chara/npc/populace/PopulaceCompanyWarp.lua new file mode 100644 index 00000000..0b37b92f --- /dev/null +++ b/data/scripts/base/chara/npc/populace/PopulaceCompanyWarp.lua @@ -0,0 +1,24 @@ +--[[ + +PopulaceCompanyWarp Script + +Functions: + +eventTalkWelcome(player) - Start Text +eventAskMainMenu(player, index) - Shows teleport menu +eventAfterWarpOtherZone(player) - Fades out for warp +eventTalkStepBreak() - Ends talk +--]] + +require ("global") + +function init(npc) + return false, false, 0, 0; +end + +function onEventStarted(player, npc, triggerName) + + callClientFunction(player, "eventAskMainMenu", player, 1); + + player:EndEvent(); +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/populace/PopulaceFlyingShip.lua b/data/scripts/base/chara/npc/populace/PopulaceFlyingShip.lua new file mode 100644 index 00000000..47361518 --- /dev/null +++ b/data/scripts/base/chara/npc/populace/PopulaceFlyingShip.lua @@ -0,0 +1,24 @@ +--[[ + +PopulaceFlyingShip Script + +Functions: + +eventIn(player, hasTicket, nil?, travelPrice) - If hasTicket == nil, say no money text. +eventOut(isAborting) - Set isAborting to 30010 if player didn't "use" the airship. Shows no refund warning. +eventNG(player) - Message said when player is talking to the wrong npc. + +--]] + +require ("global") + +function init(npc) + return false, false, 0, 0; +end + +function onEventStarted(player, npc, triggerName) + + callClientFunction(player, "eventIn", player, false, nil, 5); + + player:EndEvent(); +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/populace/PopulaceItemRepairer.lua b/data/scripts/base/chara/npc/populace/PopulaceItemRepairer.lua new file mode 100644 index 00000000..fdbac72d --- /dev/null +++ b/data/scripts/base/chara/npc/populace/PopulaceItemRepairer.lua @@ -0,0 +1,34 @@ +--[[ + +PopulaceItemRepairer Script + +Functions: + +talkWelcome(player, bool, number, bool) - Opens the main menu +selectItem(nil, pageNumber, ?, condition1, condition2, condition3, condition4, condition5) - "Ain't running a charity here", message said when you have insufficent funds +confirmRepairItem(player, price, itemId, hq grade) - Shows the confirm box for item repair. +confirmUseFacility(player, price) - Shows confirm box for using facility. Default price is 11k? +finishTalkTurn() - Call at end to stop npc from staring at the player (eeeek) + +--]] + +require ("global") + +function init(npc) + return false, false, 0, 0; +end + +function onEventStarted(player, npc, triggerName) + + result = callClientFunction(player, "talkWelcome", player, false, 20, false); + + if (result == 1) then + callClientFunction(player, "selectItem", nil, 1, 4, 2, 3, 4, 5, 6, 7); + elseif (result == 2) then + callClientFunction(player, "confirmUseFacility", player); + end + + callClientFunction(player, "finishTalkTurn"); + + player:EndEvent(); +end \ No newline at end of file diff --git a/data/scripts/base/chara/npc/populace/shop/PopulaceShopSalesman.lua b/data/scripts/base/chara/npc/populace/shop/PopulaceShopSalesman.lua index a869a80d..bc70c0a7 100644 --- a/data/scripts/base/chara/npc/populace/shop/PopulaceShopSalesman.lua +++ b/data/scripts/base/chara/npc/populace/shop/PopulaceShopSalesman.lua @@ -39,6 +39,10 @@ function onEventStarted(player, npc, triggerName) require("/unique/".. npc.zone.zoneName .."/PopulaceShopSalesman/" .. npc:GetUniqueId()) + if (shopInfo.shopCurrancy == nil) then + shopInfo.shopCurrancy = 1000001; + end + callClientFunction(player, "welcomeTalk", shopInfo.welcomeText, player); while (true) do @@ -85,13 +89,14 @@ function processNormalShop(player, choice) callClientFunction(player, "openShopBuy", player, shopInfo.shopPack, shopInfo.shopCurrancy); while (true) do - buyResult = callClientFunction(player, "selectShopBuy", player); + buyResult, index, quantity = callClientFunction(player, "selectShopBuy", player); + player:GetInventory(location):AddItem(3020308, 1); if (buyResult == 0) then callClientFunction(player, "closeShopBuy", player); break; else - player:SendMessage(0x20, "", "Player bought a thing at slot " .. tostring(buyResult).."."); + player:SendMessage(0x20, "", "Player bought a thing at slot " .. tostring(buyResult).. " with quantity "..tostring(index).."."); end end @@ -106,6 +111,12 @@ function processNormalShop(player, choice) break; else player:SendMessage(0x20, "", "Player sold a thing at slot " .. tostring(sellResult).."."); + + itemToSell = player:GetInventory(0x00):GetItemBySlot(sellResult.slot); + gItemTOSell = GetItemGamedata(itemToSell.itemId); + + player:GetInventory(0x63):AddItem(shopInfo.shopCurrancy, gItemTOSell.sellPrice); + player:GetInventory(0x00):RemoveItemAtSlot(sellResult.slot); end end @@ -123,8 +134,8 @@ function processMultiShop(player, choice, sellType) callClientFunction(player, "openShopBuy", player, shopInfo.shopPack[choice], shopInfo.shopCurrancy); while (true) do - buyResult = callClientFunction(player, "selectShopBuy", player); - + buyResult, index, quantity = callClientFunction(player, "selectShopBuy", player); + player:GetInventory(location):AddItem(3020308, 1); if (buyResult == 0) then callClientFunction(player, "closeShopBuy", player); break; @@ -133,7 +144,7 @@ function processMultiShop(player, choice, sellType) end end - elseif (choice == 5) then + elseif (choice == 0) then callClientFunction(player, "openShopSell", player); while (true) do diff --git a/data/scripts/commands/PlaceDrivenCommand.lua b/data/scripts/commands/PlaceDrivenCommand.lua index 0df7be1e..291ccec8 100644 --- a/data/scripts/commands/PlaceDrivenCommand.lua +++ b/data/scripts/commands/PlaceDrivenCommand.lua @@ -7,12 +7,16 @@ Notes: --]] -function onEventStarted(player, commandActor, triggerName, pushCommand, unk1, unk2, unk3, ownerActorId, unk4, unk5, unk6, unk7) +function onEventStarted(player, actor, triggerName, pushCommand, unk1, unk2, unk3, ownerActorId, unk4, unk5, unk6, unk7) actor = player:GetActorInInstance(ownerActorId); if (actor != nil) then - player:kickEvent(actor, "pushCommand", "pushCommand"); + if (actor:GetActorClassId() == 1200052) then + player:kickEvent(actor, "commandJudgeMode", "commandJudgeMode"); + else + player:kickEvent(actor, "pushCommand", "pushCommand"); + end else player:endEvent(); end diff --git a/data/scripts/directors1/questDirect_fst0Btl03_01@0A615.lua b/data/scripts/directors/questDirect_fst0Btl03_01@0A615.lua similarity index 100% rename from data/scripts/directors1/questDirect_fst0Btl03_01@0A615.lua rename to data/scripts/directors/questDirect_fst0Btl03_01@0A615.lua diff --git a/data/scripts/directors1/questDirect_ocn0Btl02_01@0C196.lua b/data/scripts/directors/questDirect_ocn0Btl02_01@0C196.lua similarity index 100% rename from data/scripts/directors1/questDirect_ocn0Btl02_01@0C196.lua rename to data/scripts/directors/questDirect_ocn0Btl02_01@0C196.lua diff --git a/data/scripts/directors1/openingDire_fst0Btl03_04@0A600.lua b/data/scripts/unique/fst0Battle03/Director/opening_director.lua similarity index 81% rename from data/scripts/directors1/openingDire_fst0Btl03_04@0A600.lua rename to data/scripts/unique/fst0Battle03/Director/opening_director.lua index c4675f66..cc50d59a 100644 --- a/data/scripts/directors1/openingDire_fst0Btl03_04@0A600.lua +++ b/data/scripts/unique/fst0Battle03/Director/opening_director.lua @@ -1,14 +1,10 @@ +require ("global") require("/quests/man/man0g0") function onEventStarted(player, actor, triggerName) man0g0Quest = GetStaticActor("Man0g0"); - player:RunEventFunction("delegateEvent", player, man0g0Quest, "processTtrNomal001withHQ", nil, nil, nil, nil); - -end - -function onEventUpdate(player, npc, resultId) - + callClientFunction(player, "delegateEvent", player, man0g0Quest, "processTtrNomal001withHQ", nil, nil, nil, nil); player:EndEvent(); end diff --git a/data/scripts/unique/fst0Battle03/pplStd_fst0Btl03_01@0A600.lua b/data/scripts/unique/fst0Battle03/OpeningStoperF0B1/pplStd_fst0Btl03_01@0A600.lua similarity index 100% rename from data/scripts/unique/fst0Battle03/pplStd_fst0Btl03_01@0A600.lua rename to data/scripts/unique/fst0Battle03/OpeningStoperF0B1/pplStd_fst0Btl03_01@0A600.lua diff --git a/data/scripts/unique/fst0Battle03/pplStd_fst0Btl03_02@0A600.lua b/data/scripts/unique/fst0Battle03/OpeningStoperF0B1/pplStd_fst0Btl03_02@0A600.lua similarity index 100% rename from data/scripts/unique/fst0Battle03/pplStd_fst0Btl03_02@0A600.lua rename to data/scripts/unique/fst0Battle03/OpeningStoperF0B1/pplStd_fst0Btl03_02@0A600.lua diff --git a/data/scripts/unique/fst0Battle03/zone.lua b/data/scripts/unique/fst0Battle03/zone.lua new file mode 100644 index 00000000..11ed913d --- /dev/null +++ b/data/scripts/unique/fst0Battle03/zone.lua @@ -0,0 +1,20 @@ +require ("global") + +function onZoneInit(zone) +end + +function onZoneIn(player) + + openingQuest = player:getQuest(110005); + + --Opening Quest + if (openingQuest ~= nil) then + if (openingQuest:GetQuestFlag(0) == false) then + player:kickEvent(player:getDirector(), "noticeEvent"); + end + end + +end + +function onZoneOut(zone, player) +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/InstanceRaidGuide/serpent_private_dauremant.lua b/data/scripts/unique/fst0Town01/InstanceRaidGuide/serpent_private_dauremant.lua new file mode 100644 index 00000000..a56b8190 --- /dev/null +++ b/data/scripts/unique/fst0Town01/InstanceRaidGuide/serpent_private_dauremant.lua @@ -0,0 +1,10 @@ +require ("global") + +function init(npc) + return false, false, 0, 0, 0x1eb, 0x2; +end + +function onEventStarted(player, npc) + callClientFunction(player, "askEnterInstanceRaid", 16); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/InstanceRaidGuide/serpent_private_hodder.lua b/data/scripts/unique/fst0Town01/InstanceRaidGuide/serpent_private_hodder.lua new file mode 100644 index 00000000..7c754fdc --- /dev/null +++ b/data/scripts/unique/fst0Town01/InstanceRaidGuide/serpent_private_hodder.lua @@ -0,0 +1,10 @@ +require ("global") + +function init(npc) + return false, false, 0, 0, 0x1eb, 0x2; +end + +function onEventStarted(player, npc) + callClientFunction(player, "askEnterInstanceRaid", 15); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/MapObjShipPort/gridania_shipport.lua b/data/scripts/unique/fst0Town01/MapObjShipPort/gridania_shipport.lua new file mode 100644 index 00000000..670c0f3c --- /dev/null +++ b/data/scripts/unique/fst0Town01/MapObjShipPort/gridania_shipport.lua @@ -0,0 +1,5 @@ +require ("global") + +function init(npc) + return false, false, 0, 0, 0x141, 0xcde; +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/MapObjShipPort/gridania_shipport2.lua b/data/scripts/unique/fst0Town01/MapObjShipPort/gridania_shipport2.lua new file mode 100644 index 00000000..3b372965 --- /dev/null +++ b/data/scripts/unique/fst0Town01/MapObjShipPort/gridania_shipport2.lua @@ -0,0 +1,5 @@ +require ("global") + +function init(npc) + return false, false, 0, 0, 0x187, 0x2; +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/aeduin.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/aeduin.lua new file mode 100644 index 00000000..10d67a8a --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/aeduin.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAeduin_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/anene.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/anene.lua new file mode 100644 index 00000000..4b0461b7 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/anene.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAnene_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/anselm.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/anselm.lua new file mode 100644 index 00000000..32b822d8 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/anselm.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAnselm_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/basewin.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/basewin.lua new file mode 100644 index 00000000..7f7a5ff7 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/basewin.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithBasewin_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/beaudonet.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/beaudonet.lua new file mode 100644 index 00000000..a3f57545 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/beaudonet.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithBeaudonet_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/bertennant.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/bertennant.lua new file mode 100644 index 00000000..1a7fe00d --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/bertennant.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithBertennant_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/drividot.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/drividot.lua new file mode 100644 index 00000000..868fb996 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/drividot.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithDrividot_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/edasshym.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/edasshym.lua new file mode 100644 index 00000000..43108cf5 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/edasshym.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithEdasshym_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/emoni.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/emoni.lua new file mode 100644 index 00000000..6c6f7c81 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/emoni.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithEmoni_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/flavielle.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/flavielle.lua new file mode 100644 index 00000000..11d862e2 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/flavielle.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithFlavielle_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/fryswyde.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/fryswyde.lua new file mode 100644 index 00000000..73f4ec3a --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/fryswyde.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithFryswyde_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/gontrant.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/gontrant.lua new file mode 100644 index 00000000..3b46c444 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/gontrant.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithGontrant_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/gyles.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/gyles.lua new file mode 100644 index 00000000..3b71d575 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/gyles.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithGyles_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/hida.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/hida.lua new file mode 100644 index 00000000..9f53667a --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/hida.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithHida_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/honga_vunga.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/honga_vunga.lua new file mode 100644 index 00000000..30042eb2 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/honga_vunga.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithHongavunga_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/l'tandhaa.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/l'tandhaa.lua new file mode 100644 index 00000000..37731274 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/l'tandhaa.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithL'tandhaa_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/lionnellais.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/lionnellais.lua new file mode 100644 index 00000000..7a6a8c3a --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/lionnellais.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithLionnellais_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/lonsygg.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/lonsygg.lua new file mode 100644 index 00000000..d26669f7 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/lonsygg.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithLonsygg_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/mathye.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/mathye.lua new file mode 100644 index 00000000..6cf85ad9 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/mathye.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMathye_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/memama.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/memama.lua new file mode 100644 index 00000000..2466888b --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/memama.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMemama_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/miniaeth_adv.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/miniaeth_adv.lua new file mode 100644 index 00000000..0fe03ebf --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/miniaeth_adv.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMiniaeth_adv_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/miounne.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/miounne.lua new file mode 100644 index 00000000..7d15aff6 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/miounne.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMiounne_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/naih_khamazom.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/naih_khamazom.lua new file mode 100644 index 00000000..e3a914dc --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/naih_khamazom.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithNaih_khamazom_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/nonco_menanco.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/nonco_menanco.lua new file mode 100644 index 00000000..36c701a3 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/nonco_menanco.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithNonco_menanco_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/odilie.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/odilie.lua new file mode 100644 index 00000000..78a97b7b --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/odilie.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithOdilie_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/penelope.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/penelope.lua new file mode 100644 index 00000000..ce5e5aaa --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/penelope.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithPenelope_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/pfarahr.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/pfarahr.lua new file mode 100644 index 00000000..44ad9927 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/pfarahr.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithPfarahr_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/pofufu.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/pofufu.lua new file mode 100644 index 00000000..bf6356dc --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/pofufu.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithPofufu_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/seikfrae.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/seikfrae.lua new file mode 100644 index 00000000..909fd94c --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/seikfrae.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSeikfrae_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/serpent_private_dauremant.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/serpent_private_dauremant.lua new file mode 100644 index 00000000..da9b97a5 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/serpent_private_dauremant.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_private_dauremant_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/serpent_private_hill.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/serpent_private_hill.lua new file mode 100644 index 00000000..02e67d32 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/serpent_private_hill.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_private_hill_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/serpent_private_hodder.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/serpent_private_hodder.lua new file mode 100644 index 00000000..7d086ce5 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/serpent_private_hodder.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_private_hodder_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/sylbyrt.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/sylbyrt.lua new file mode 100644 index 00000000..2d3930f3 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/sylbyrt.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSylbyrt_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/task_board.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/task_board.lua new file mode 100644 index 00000000..b7448428 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/task_board.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithTask_board_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/tierney.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/tierney.lua new file mode 100644 index 00000000..9bc3ac7a --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/tierney.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithTierney_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/torsefers.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/torsefers.lua new file mode 100644 index 00000000..f965cbe5 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/torsefers.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithTorsefers_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/ulta.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/ulta.lua new file mode 100644 index 00000000..76b4c013 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/ulta.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithUlta_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/willielmus.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/willielmus.lua new file mode 100644 index 00000000..16def888 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/willielmus.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithWillielmus_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01/PopulaceStandard/zagylhaemr.lua b/data/scripts/unique/fst0Town01/PopulaceStandard/zagylhaemr.lua new file mode 100644 index 00000000..9af757e2 --- /dev/null +++ b/data/scripts/unique/fst0Town01/PopulaceStandard/zagylhaemr.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithZagylhaemr_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/aerstsyn.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/aerstsyn.lua new file mode 100644 index 00000000..b55e4b1c --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/aerstsyn.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAerstsyn_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/ahldiym.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/ahldiym.lua new file mode 100644 index 00000000..082f9630 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/ahldiym.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAhldiym_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/alaire.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/alaire.lua new file mode 100644 index 00000000..57ee130d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/alaire.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAlaire_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/alixe.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/alixe.lua new file mode 100644 index 00000000..32b4566a --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/alixe.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAlixe_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/anaidjaa.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/anaidjaa.lua new file mode 100644 index 00000000..988ebb7e --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/anaidjaa.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAnaidjaa_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/animuili.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/animuili.lua new file mode 100644 index 00000000..02b62cda --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/animuili.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAnimuili_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/aubrenard.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/aubrenard.lua new file mode 100644 index 00000000..233f9974 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/aubrenard.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithAubrenard (check cnstctr)_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/beaudefoin.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/beaudefoin.lua new file mode 100644 index 00000000..c7bb9425 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/beaudefoin.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithBeaudefoin_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/beli.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/beli.lua new file mode 100644 index 00000000..b03e5c44 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/beli.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithBeli_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/bkonbalha.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/bkonbalha.lua new file mode 100644 index 00000000..0f4b2c0d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/bkonbalha.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithBkonbalha_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/bubuku.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/bubuku.lua new file mode 100644 index 00000000..a30a424b --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/bubuku.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithBubuku_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/burchard.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/burchard.lua new file mode 100644 index 00000000..a0094293 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/burchard.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithBurchard_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/cassandra.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/cassandra.lua new file mode 100644 index 00000000..bc51e10b --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/cassandra.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithCassandra_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/ceinguled.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/ceinguled.lua new file mode 100644 index 00000000..650ae478 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/ceinguled.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithCeinguled_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/chloe.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/chloe.lua new file mode 100644 index 00000000..42fa8423 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/chloe.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithChloe_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/cicely.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/cicely.lua new file mode 100644 index 00000000..cdc13c74 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/cicely.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithCicely_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/clarembald.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/clarembald.lua new file mode 100644 index 00000000..f3420b1b --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/clarembald.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithClarembald_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/dadalo.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/dadalo.lua new file mode 100644 index 00000000..3869643d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/dadalo.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithDadalo_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/dbhonja.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/dbhonja.lua new file mode 100644 index 00000000..11a5f709 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/dbhonja.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithDbhonja_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/dhemdaeg.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/dhemdaeg.lua new file mode 100644 index 00000000..1ff4faef --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/dhemdaeg.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithDhemdaeg_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/doelle.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/doelle.lua new file mode 100644 index 00000000..ab8d90fc --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/doelle.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithDoelle_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/drystbrod.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/drystbrod.lua new file mode 100644 index 00000000..98d98a5f --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/drystbrod.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithDrystbrod_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/eburhart.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/eburhart.lua new file mode 100644 index 00000000..cce66c19 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/eburhart.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithEburhart_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/eldid.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/eldid.lua new file mode 100644 index 00000000..189c2435 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/eldid.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithEldid_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/enie.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/enie.lua new file mode 100644 index 00000000..d6c55f1d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/enie.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithEnie_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/foinine.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/foinine.lua new file mode 100644 index 00000000..163006a7 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/foinine.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithFoinine_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/frances.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/frances.lua new file mode 100644 index 00000000..9928bc94 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/frances.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithFrances_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/francis.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/francis.lua new file mode 100644 index 00000000..2da0fd1c --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/francis.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithFrancis_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/fruhdhem.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/fruhdhem.lua new file mode 100644 index 00000000..e4535c86 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/fruhdhem.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithFruhdhem_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/gagaroon.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/gagaroon.lua new file mode 100644 index 00000000..19143bdf --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/gagaroon.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithGagaroon_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/gagaulu.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/gagaulu.lua new file mode 100644 index 00000000..4c5834d5 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/gagaulu.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithGagaulu_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/gallia.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/gallia.lua new file mode 100644 index 00000000..49dc3284 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/gallia.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithGallia_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/genna.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/genna.lua new file mode 100644 index 00000000..a12431eb --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/genna.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithGenna_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/georjeaux.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/georjeaux.lua new file mode 100644 index 00000000..764552a3 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/georjeaux.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithGeorjeaux_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/goldyve.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/goldyve.lua new file mode 100644 index 00000000..d0d0bc6a --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/goldyve.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithGoldyve_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/gunzelin.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/gunzelin.lua new file mode 100644 index 00000000..1fda5960 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/gunzelin.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithGunzelin_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/haurtefert.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/haurtefert.lua new file mode 100644 index 00000000..f564e6e7 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/haurtefert.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithHaurtefert_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/hereward.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/hereward.lua new file mode 100644 index 00000000..2b190a01 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/hereward.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithHereward_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/hfudzol.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/hfudzol.lua new file mode 100644 index 00000000..313acf9d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/hfudzol.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithHfudzol_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/humphrey.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/humphrey.lua new file mode 100644 index 00000000..a2d65ba1 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/humphrey.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithHumphrey_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/jmoldva.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/jmoldva.lua new file mode 100644 index 00000000..b3b3e96b --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/jmoldva.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithJmoldva_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/jolline.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/jolline.lua new file mode 100644 index 00000000..0d3d71e8 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/jolline.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithJolline_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/kain.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/kain.lua new file mode 100644 index 00000000..69394cc3 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/kain.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithKain_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/khuma_moshroca.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/khuma_moshroca.lua new file mode 100644 index 00000000..9740c98e --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/khuma_moshroca.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithKhuma_moshroca_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/kipopo.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/kipopo.lua new file mode 100644 index 00000000..6b9315c3 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/kipopo.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithKipopo_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/lefwyne.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/lefwyne.lua new file mode 100644 index 00000000..b8077201 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/lefwyne.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithLefwyne_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/littlejohn.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/littlejohn.lua new file mode 100644 index 00000000..dcf4e55f --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/littlejohn.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithLittlejohn_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/louisoix.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/louisoix.lua new file mode 100644 index 00000000..b0b08cd5 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/louisoix.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithLouisoix_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/luilda.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/luilda.lua new file mode 100644 index 00000000..38ea5908 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/luilda.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithLuilda_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/luitfrid.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/luitfrid.lua new file mode 100644 index 00000000..a202c940 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/luitfrid.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithLuitfrid_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/maddeline.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/maddeline.lua new file mode 100644 index 00000000..cac9651d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/maddeline.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMaddeline_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/maisenta.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/maisenta.lua new file mode 100644 index 00000000..52d5b1e6 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/maisenta.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMaisenta_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/marcette.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/marcette.lua new file mode 100644 index 00000000..7e163776 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/marcette.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMarcette_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/matheonien.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/matheonien.lua new file mode 100644 index 00000000..a54313c7 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/matheonien.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMatheonien_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/meara.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/meara.lua new file mode 100644 index 00000000..f9216a3c --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/meara.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMeara_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/mestonnaux.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/mestonnaux.lua new file mode 100644 index 00000000..72ca2120 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/mestonnaux.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMestonnaux_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/mianne.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/mianne.lua new file mode 100644 index 00000000..3ad89dab --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/mianne.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMianne_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/miniaeth_arc.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/miniaeth_arc.lua new file mode 100644 index 00000000..2d7bae01 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/miniaeth_arc.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMiniaeth_arc_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/miniaeth_lnc.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/miniaeth_lnc.lua new file mode 100644 index 00000000..91f0aaff --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/miniaeth_lnc.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMiniaeth_lnc_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/miniaeth_ltw.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/miniaeth_ltw.lua new file mode 100644 index 00000000..6e67af97 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/miniaeth_ltw.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMiniaeth_ltw_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/mumuko.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/mumuko.lua new file mode 100644 index 00000000..75714463 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/mumuko.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithMumuko_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/noes.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/noes.lua new file mode 100644 index 00000000..03c2851d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/noes.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithNoes_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/nonolato.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/nonolato.lua new file mode 100644 index 00000000..461d2288 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/nonolato.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithNonolato_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/nuala.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/nuala.lua new file mode 100644 index 00000000..678c072b --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/nuala.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithNuala_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/odhinek.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/odhinek.lua new file mode 100644 index 00000000..fe5055c5 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/odhinek.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithOdhinek_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/onguen.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/onguen.lua new file mode 100644 index 00000000..4d1dbd0c --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/onguen.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithOnguen_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/opyltyl.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/opyltyl.lua new file mode 100644 index 00000000..f2e8e535 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/opyltyl.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithOpyltyl_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/osgar.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/osgar.lua new file mode 100644 index 00000000..9846804d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/osgar.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithOsgar_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/owyne.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/owyne.lua new file mode 100644 index 00000000..cfa09494 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/owyne.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithOwyne_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/piers.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/piers.lua new file mode 100644 index 00000000..f113449d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/piers.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithPiers_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/prosperlain.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/prosperlain.lua new file mode 100644 index 00000000..365bf54c --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/prosperlain.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithProsperlain_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/pukiki.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/pukiki.lua new file mode 100644 index 00000000..45ccf0ba --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/pukiki.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithPukiki_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/roderic.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/roderic.lua new file mode 100644 index 00000000..76858ec9 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/roderic.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithRoderic_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/roustebant.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/roustebant.lua new file mode 100644 index 00000000..8d4f1d1a --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/roustebant.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithRoustebant_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/sandre.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/sandre.lua new file mode 100644 index 00000000..c86c5a6b --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/sandre.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSandre_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_lieutenant_marette.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_lieutenant_marette.lua new file mode 100644 index 00000000..86aeb54e --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_lieutenant_marette.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_lieutenant_marette_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_carver.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_carver.lua new file mode 100644 index 00000000..0a24f7e7 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_carver.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_private_carver_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_holmes.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_holmes.lua new file mode 100644 index 00000000..fc7c975d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_holmes.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_private_holmes_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_kirk.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_kirk.lua new file mode 100644 index 00000000..c7b840aa --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_kirk.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_private_kirk_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_stone.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_stone.lua new file mode 100644 index 00000000..d6d2ff82 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_stone.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_private_stone_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_tristelle.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_tristelle.lua new file mode 100644 index 00000000..335222d0 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_tristelle.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_private_tristelle_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_white.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_white.lua new file mode 100644 index 00000000..d66e5dad --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_private_white.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_private_white_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_sergeant_frilaix.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_sergeant_frilaix.lua new file mode 100644 index 00000000..274ceccd --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_sergeant_frilaix.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_sergeant_frilaix_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_sergeant_nelhah.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_sergeant_nelhah.lua new file mode 100644 index 00000000..20a0b514 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/serpent_sergeant_nelhah.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSerpent_sergeant_nelhah_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/spaerfedar.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/spaerfedar.lua new file mode 100644 index 00000000..03f2c7b9 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/spaerfedar.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSpaerfedar_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/stanilde.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/stanilde.lua new file mode 100644 index 00000000..235c77cb --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/stanilde.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithStanilde_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/swaenhylt.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/swaenhylt.lua new file mode 100644 index 00000000..7b7caf02 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/swaenhylt.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSwaenhylt_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/sybell.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/sybell.lua new file mode 100644 index 00000000..17de877e --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/sybell.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithSybell_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/tatagoi.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/tatagoi.lua new file mode 100644 index 00000000..4559f960 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/tatagoi.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithTatagoi_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/twyrmoht.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/twyrmoht.lua new file mode 100644 index 00000000..320b2bf0 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/twyrmoht.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithTwyrmoht_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/ulric.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/ulric.lua new file mode 100644 index 00000000..4c439ce4 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/ulric.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithUlric_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/vnabyano.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/vnabyano.lua new file mode 100644 index 00000000..944257f6 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/vnabyano.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithVnabyano_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/voyce.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/voyce.lua new file mode 100644 index 00000000..64f832fa --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/voyce.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithVoyce_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/willelda.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/willelda.lua new file mode 100644 index 00000000..e724f42f --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/willelda.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithWillelda_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/wulfthryth.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/wulfthryth.lua new file mode 100644 index 00000000..6802382e --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/wulfthryth.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithWulfthryth_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/ylessa.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/ylessa.lua new file mode 100644 index 00000000..62225a8d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/ylessa.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithYlessa_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/yolaine.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/yolaine.lua new file mode 100644 index 00000000..908d9c69 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/yolaine.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithYolaine_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/zaesoeya.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/zaesoeya.lua new file mode 100644 index 00000000..b6808caf --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/zaesoeya.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithZaesoeya_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/zelia.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/zelia.lua new file mode 100644 index 00000000..879a7d4d --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/zelia.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithZelia_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/zpahtalo.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/zpahtalo.lua new file mode 100644 index 00000000..6729ac90 --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/zpahtalo.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithZpahtalo_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/unique/fst0Town01a/PopulaceStandard/zuzupoja.lua b/data/scripts/unique/fst0Town01a/PopulaceStandard/zuzupoja.lua new file mode 100644 index 00000000..faef9c4c --- /dev/null +++ b/data/scripts/unique/fst0Town01a/PopulaceStandard/zuzupoja.lua @@ -0,0 +1,7 @@ +require ("global") + +function onEventStarted(player, npc) + defaultFst = GetStaticActor("DftFst"); + callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithZuzupoja_001", nil, nil, nil); + player:endEvent(); +end \ No newline at end of file diff --git a/data/scripts/directors1/openingDire_ocn0Btl02_04@0C100.lua b/data/scripts/unique/ocn0Battle02/Director/openingdirector.lua similarity index 70% rename from data/scripts/directors1/openingDire_ocn0Btl02_04@0C100.lua rename to data/scripts/unique/ocn0Battle02/Director/openingdirector.lua index 031383f0..9b11c28a 100644 --- a/data/scripts/directors1/openingDire_ocn0Btl02_04@0C100.lua +++ b/data/scripts/unique/ocn0Battle02/Director/openingdirector.lua @@ -1,15 +1,10 @@ +require ("global") require("/quests/man/man0l0") function onEventStarted(player, actor, triggerName) - - man0l0Quest = GetStaticActor("Man0l0"); - player:RunEventFunction("delegateEvent", player, man0l0Quest, "processTtrNomal001withHQ", nil, nil, nil, nil); - --player:RunEventFunction("delegateEvent", player, man0l0Quest, "processEvent000_1", nil, nil, nil, nil); - -end -function onEventUpdate(player, npc, resultId) - + man0l0Quest = GetStaticActor("Man0l0"); + callClientFunction(player, "delegateEvent", player, man0l0Quest, "processTtrNomal001withHQ", nil, nil, nil, nil); player:EndEvent(); end diff --git a/data/scripts/unique/sea0Town01a/PopulaceStandard/aergwynt.lua b/data/scripts/unique/sea0Town01a/PopulaceStandard/aergwynt.lua index 69c03912..06001a51 100644 --- a/data/scripts/unique/sea0Town01a/PopulaceStandard/aergwynt.lua +++ b/data/scripts/unique/sea0Town01a/PopulaceStandard/aergwynt.lua @@ -2,7 +2,6 @@ require ("global") function onEventStarted(player, npc) defaultSea = GetStaticActor("DftSea"); - callClientFunction(player, "delegateEvent", player, defaultSea, " - player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithAergwynt_001", nil, nil, nil); + callClientFunction(player, "delegateEvent", player, defaultSea, "defaultTalkWithAergwynt_001", nil, nil, nil"); player:endEvent(); end \ No newline at end of file diff --git a/data/scripts/directors1/openingDire_wil0Btl01_04@0B800.lua b/data/scripts/unique/wil0Battle01/Director/opening_director.lua similarity index 62% rename from data/scripts/directors1/openingDire_wil0Btl01_04@0B800.lua rename to data/scripts/unique/wil0Battle01/Director/opening_director.lua index adbc6747..5cd6ce52 100644 --- a/data/scripts/directors1/openingDire_wil0Btl01_04@0B800.lua +++ b/data/scripts/unique/wil0Battle01/Director/opening_director.lua @@ -1,14 +1,10 @@ +require ("global") require("/quests/man/man0u0") function onEventStarted(player, actor, triggerName) man0u0Quest = GetStaticActor("Man0u0"); - player:RunEventFunction("delegateEvent", player, man0u0Quest, "processTtrNomal001withHQ", nil, nil, nil, nil); - -end - -function onEventUpdate(player, npc, resultId) - + callClientFunction(player, "delegateEvent", player, man0u0Quest, "processTtrNomal001withHQ", nil, nil, nil, nil); player:EndEvent(); end diff --git a/data/scripts/unique/wil0Town01a/MapObjShipPort/uldah_mapshipport_1.lua b/data/scripts/unique/wil0Town01a/MapObjShipPort/uldah_mapshipport_1.lua new file mode 100644 index 00000000..efe1e2e5 --- /dev/null +++ b/data/scripts/unique/wil0Town01a/MapObjShipPort/uldah_mapshipport_1.lua @@ -0,0 +1,5 @@ +require ("global") + +function init(npc) + return false, false, 0, 0, 0x1af, 0xDC5; +end \ No newline at end of file diff --git a/data/scripts/unique/wil0Town01a/MapObjShipPort/uldah_mapshipport_2.lua b/data/scripts/unique/wil0Town01a/MapObjShipPort/uldah_mapshipport_2.lua new file mode 100644 index 00000000..5cbed1d0 --- /dev/null +++ b/data/scripts/unique/wil0Town01a/MapObjShipPort/uldah_mapshipport_2.lua @@ -0,0 +1,5 @@ +require ("global") + +function init(npc) + return false, false, 0, 0, 0x1eb, 0x2; +end \ No newline at end of file