mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 11:47:45 +00:00
Add dummy event script for Central Shroud's Chocobokeep
We send the client scene 0, which displays the menu. I guess some unlock is checked for actually being able to hire porters, which works for us. Fixes #29
This commit is contained in:
parent
b593d87ef7
commit
d04a2cb9c1
2 changed files with 11 additions and 0 deletions
|
@ -66,6 +66,7 @@ registerEvent(131312, "common/GenericWarp.lua") -- Exit The Pendants Personal Su
|
|||
registerEvent(131402, "common/GenericWarp.lua") -- Exit Andron to Old Sharlayan
|
||||
registerEvent(131578, "common/GenericWarp.lua") -- Exit The For'ard Cabins to Tuliyollal
|
||||
registerEvent(720916, "custom/000/cmndefinnbed_00020.lua")
|
||||
registerEvent(1179657, "tosort/Chocobokeep.lua") -- Chocobokeep in Central Shroud
|
||||
registerEvent(1245185, "opening/OpeningLimsaLominsa.lua")
|
||||
registerEvent(1245186, "opening/OpeningGridania.lua")
|
||||
registerEvent(1245187, "opening/OpeningUldah.lua")
|
||||
|
|
10
resources/scripts/tosort/Chocobokeep.lua
Normal file
10
resources/scripts/tosort/Chocobokeep.lua
Normal file
|
@ -0,0 +1,10 @@
|
|||
-- TODO: actually implement this menu
|
||||
|
||||
function onTalk(target, player)
|
||||
-- unable to hire
|
||||
player:play_scene(target, EVENT_ID, 00000, 8192, 0)
|
||||
end
|
||||
|
||||
function onReturn(scene, results, player)
|
||||
player:finish_event(EVENT_ID)
|
||||
end
|
Loading…
Add table
Reference in a new issue