mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 11:47:45 +00:00
Move crystal bell script
I finally found what client-side script it's calling into, they call it "BeautySalon" internally.
This commit is contained in:
parent
96aece36cf
commit
476958a054
2 changed files with 9 additions and 1 deletions
|
@ -265,7 +265,6 @@ to_sort = {
|
|||
[720898] = "DeliveryMoogle.lua",
|
||||
[721096] = "ToyChest.lua",
|
||||
[721028] = "UnendingJourney.lua",
|
||||
[721044] = "CrystalBell.lua",
|
||||
[721226] = "Orchestrion.lua",
|
||||
[721347] = "GlamourDresser.lua",
|
||||
[721440] = "SummoningBell.lua",
|
||||
|
@ -284,6 +283,10 @@ custom0_events = {
|
|||
[720916] = "cmndefinnbed_00020.lua",
|
||||
}
|
||||
|
||||
custom1_events = {
|
||||
[721044] = "cmndefbeautysalon_00148.lua",
|
||||
}
|
||||
|
||||
-- Events in quests/*
|
||||
quests = {
|
||||
[1245185] = "OpeningLimsaLominsa.lua",
|
||||
|
@ -296,6 +299,7 @@ WARP_DIR = "events/warp/"
|
|||
TOSORT_DIR = "events/tosort/"
|
||||
OPENING_DIR = "events/quest/opening/"
|
||||
CUSTOM0_DIR = "events/custom/000/"
|
||||
CUSTOM1_DIR = "events/custom/001/"
|
||||
|
||||
for _, event_id in pairs(generic_warps) do
|
||||
registerEvent(event_id, "events/common/GenericWarp.lua")
|
||||
|
@ -325,6 +329,10 @@ for event_id, script_file in pairs(custom0_events) do
|
|||
registerEvent(event_id, CUSTOM0_DIR..script_file)
|
||||
end
|
||||
|
||||
for event_id, script_file in pairs(custom1_events) do
|
||||
registerEvent(event_id, CUSTOM1_DIR..script_file)
|
||||
end
|
||||
|
||||
for event_id, script_file in pairs(quests) do
|
||||
registerEvent(event_id, OPENING_DIR..script_file)
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue