/* * This file is part of the L2J Mobius project. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package com.l2jmobius.gameserver.enums; import java.util.HashMap; import java.util.Map; import com.l2jmobius.gameserver.network.serverpackets.PlaySound; /** * This enum contains known sound effects used by quests.
* The idea is to have only a single object of each quest sound instead of constructing a new one every time a script calls the playSound method.
* This is pretty much just a memory and CPU cycle optimization; avoids constructing/deconstructing objects all the time if they're all the same.
* For datapack scripts written in Java and extending the Quest class, this does not need an extra import. * @author jurchiks */ public enum QuestSound { ITEMSOUND_QUEST_ACCEPT(new PlaySound("ItemSound.quest_accept")), ITEMSOUND_QUEST_MIDDLE(new PlaySound("ItemSound.quest_middle")), ITEMSOUND_QUEST_FINISH(new PlaySound("ItemSound.quest_finish")), ITEMSOUND_QUEST_ITEMGET(new PlaySound("ItemSound.quest_itemget")), ITEMSOUND_ZONE_QUEST_SUCCESS(new PlaySound("ItemSound.zone_quest_success")), ITEMSOUND_ZONE_QUEST_LEAVE(new PlaySound("ItemSound.zone_quest_leave")), ITEMSOUND_ZONE_QUEST_ENTER(new PlaySound("ItemSound.zone_quest_enter")), ITEMSOUND_QUEST_FANFARE_EASY(new PlaySound("ItemSound.quest_fanfare_easy")), ITEMSOUND_CLASS_FANFARE_1(new PlaySound("ItemSound.class_fanfare_1")), ITEMSOUND_CLASS_FANFARE_2(new PlaySound("ItemSound.class_fanfare_2")), // Newbie Guide tutorial (incl. some quests), Mutated Kaneus quests, Quest 192 ITEMSOUND_QUEST_TUTORIAL(new PlaySound("ItemSound.quest_tutorial")), // Quests 107, 363, 364 ITEMSOUND_QUEST_GIVEUP(new PlaySound("ItemSound.quest_giveup")), // Quests 212, 217, 224, 226, 416 ITEMSOUND_QUEST_BEFORE_BATTLE(new PlaySound("ItemSound.quest_before_battle")), // Quests 211, 258, 266, 330 ITEMSOUND_QUEST_JACKPOT(new PlaySound("ItemSound.quest_jackpot")), // Quests 508, 509 and 510 ITEMSOUND_QUEST_FANFARE_1(new PlaySound("ItemSound.quest_fanfare_1")), // Played only after class transfer via Test Server Helpers (ID 31756 and 31757) ITEMSOUND_QUEST_FANFARE_2(new PlaySound("ItemSound.quest_fanfare_2")), // Quest 336 ITEMSOUND_QUEST_FANFARE_MIDDLE(new PlaySound("ItemSound.quest_fanfare_middle")), // Quest 114 ITEMSOUND_ARMOR_WOOD(new PlaySound("ItemSound.armor_wood_3")), // Quest 21 ITEMSOUND_ARMOR_CLOTH(new PlaySound("ItemSound.item_drop_equip_armor_cloth")), AMDSOUND_ED_CHIMES(new PlaySound("AmdSound.ed_chimes_05")), HORROR_01(new PlaySound("horror_01")), // played when spawned monster sees player // Quest 22 AMBSOUND_HORROR_01(new PlaySound("AmbSound.dd_horror_01")), AMBSOUND_HORROR_03(new PlaySound("AmbSound.d_horror_03")), AMBSOUND_HORROR_15(new PlaySound("AmbSound.d_horror_15")), // Quest 23 ITEMSOUND_ARMOR_LEATHER(new PlaySound("ItemSound.itemdrop_armor_leather")), ITEMSOUND_WEAPON_SPEAR(new PlaySound("ItemSound.itemdrop_weapon_spear")), AMBSOUND_MT_CREAK(new PlaySound("AmbSound.mt_creak01")), AMBSOUND_EG_DRON(new PlaySound("AmbSound.eg_dron_02")), SKILLSOUND_HORROR_02(new PlaySound("SkillSound5.horror_02")), CHRSOUND_MHFIGHTER_CRY(new PlaySound("ChrSound.MHFighter_cry")), // Quest 24 AMDSOUND_WIND_LOOT(new PlaySound("AmdSound.d_wind_loot_02")), INTERFACESOUND_CHARSTAT_OPEN(new PlaySound("InterfaceSound.charstat_open_01")), // Quest 25 AMDSOUND_HORROR_02(new PlaySound("AmdSound.dd_horror_02")), CHRSOUND_FDELF_CRY(new PlaySound("ChrSound.FDElf_Cry")), // Quest 115 AMBSOUND_WINGFLAP(new PlaySound("AmbSound.t_wingflap_04")), AMBSOUND_THUNDER(new PlaySound("AmbSound.thunder_02")), // Quest 120 AMBSOUND_DRONE(new PlaySound("AmbSound.ed_drone_02")), AMBSOUND_CRYSTAL_LOOP(new PlaySound("AmbSound.cd_crystal_loop")), AMBSOUND_PERCUSSION_01(new PlaySound("AmbSound.dt_percussion_01")), AMBSOUND_PERCUSSION_02(new PlaySound("AmbSound.ac_percussion_02")), // Quest 648 and treasure chests ITEMSOUND_BROKEN_KEY(new PlaySound("ItemSound2.broken_key")), // Quest 184 ITEMSOUND_SIREN(new PlaySound("ItemSound3.sys_siren")), // Quest 648 ITEMSOUND_ENCHANT_SUCCESS(new PlaySound("ItemSound3.sys_enchant_success")), ITEMSOUND_ENCHANT_FAILED(new PlaySound("ItemSound3.sys_enchant_failed")), // Best farm mobs ITEMSOUND_SOW_SUCCESS(new PlaySound("ItemSound3.sys_sow_success")), // Quest 25 SKILLSOUND_HORROR_1(new PlaySound("SkillSound5.horror_01")), // Quests 21 and 23 SKILLSOUND_HORROR_2(new PlaySound("SkillSound5.horror_02")), // Quest 22 SKILLSOUND_ANTARAS_FEAR(new PlaySound("SkillSound3.antaras_fear")), // Quest 505 SKILLSOUND_JEWEL_CELEBRATE(new PlaySound("SkillSound2.jewel.celebrate")), // Quest 373 SKILLSOUND_LIQUID_MIX(new PlaySound("SkillSound5.liquid_mix_01")), SKILLSOUND_LIQUID_SUCCESS(new PlaySound("SkillSound5.liquid_success_01")), SKILLSOUND_LIQUID_FAIL(new PlaySound("SkillSound5.liquid_fail_01")), // Quest 111 ETCSOUND_ELROKI_SONG_FULL(new PlaySound("EtcSound.elcroki_song_full")), ETCSOUND_ELROKI_SONG_1ST(new PlaySound("EtcSound.elcroki_song_1st")), ETCSOUND_ELROKI_SONG_2ND(new PlaySound("EtcSound.elcroki_song_2nd")), ETCSOUND_ELROKI_SONG_3RD(new PlaySound("EtcSound.elcroki_song_3rd")), // Long duration AI sounds BS01_A(new PlaySound("BS01_A")), BS02_A(new PlaySound("BS02_A")), BS03_A(new PlaySound("BS03_A")), BS04_A(new PlaySound("BS04_A")), BS06_A(new PlaySound("BS06_A")), BS07_A(new PlaySound("BS07_A")), BS08_A(new PlaySound("BS08_A")), BS01_D(new PlaySound("BS01_D")), BS02_D(new PlaySound("BS02_D")), BS05_D(new PlaySound("BS05_D")), BS07_D(new PlaySound("BS07_D")), // Dialogs DIALOG_KING_FROG_GREETING_3(new PlaySound("Npcdialog1_e.king_frog_greeting_3")), DIALOG_GRANDMOTHER_TESS_GREETING_3(new PlaySound("Npcdialog1_e.grandmother_tess_greeting_3")), DIALOG_GRANDMOTHER_TESS_GREETING_1(new PlaySound("Npcdialog1_e.grandmother_tess_greeting_1")), DIALOG_GRANDMOTHER_TESS_GREETING_2(new PlaySound("Npcdialog1_e.grandmother_tess_greeting_2")), DIALOG_CLAUDIA_A_GREETING_3(new PlaySound("Npcdialog1_e.claudia_a_greeting_3")), DIALOG_CLAUDIA_A_GREETING_1(new PlaySound("Npcdialog1_e.claudia_a_greeting_1")), DIALOG_CLAUDIA_A_GREETING_2(new PlaySound("Npcdialog1_e.claudia_a_greeting_2")), DIALOG_E_SHUNEIMMAN_GREETING_3(new PlaySound("Npcdialog1_e.e_shuneimman_greeting_3")), DIALOG_E_SHUNEIMMAN_GREETING_1(new PlaySound("Npcdialog1_e.e_shuneimman_greeting_1")), DIALOG_E_SHUNEIMMAN_GREETING_2(new PlaySound("Npcdialog1_e.e_shuneimman_greeting_2")), DIALOG_M_GUARD_JOHN_GREETING_3(new PlaySound("Npcdialog1_e.m_guard_john_greeting_3")), DIALOG_W_CHIEF_CROOP_GREETING_3(new PlaySound("Npcdialog1_e.w_chief_croop_greeting_3")), DIALOG_W_CHIEF_CROOP_GREETING_1(new PlaySound("Npcdialog1_e.w_chief_croop_greeting_1")), DIALOG_W_CHIEF_CROOP_GREETING_2(new PlaySound("Npcdialog1_e.w_chief_croop_greeting_2")), DIALOG_S_AGENT_COLIN_GREETING_2(new PlaySound("Npcdialog1_e.s_agent_colin_greeting_2")), DIALOG_S_AGENT_COLIN_GREETING_3(new PlaySound("Npcdialog1_e.s_agent_colin_greeting_3")), DIALOG_S_AGENT_COLIN_GREETING_1(new PlaySound("Npcdialog1_e.s_agent_colin_greeting_1")), DIALOG_HERBALIST_ERIC_GREETING_3(new PlaySound("Npcdialog1_e.herbalist_eric_greeting_3")), DIALOG_HERBALIST_ERIC_GREETING_1(new PlaySound("Npcdialog1_e.herbalist_eric_greeting_1")), DIALOG_HERBALIST_ERIC_GREETING_2(new PlaySound("Npcdialog1_e.herbalist_eric_greeting_2")), DIALOG_IASON_HAINE_GREETING_3(new PlaySound("Npcdialog1_e.iason_haine_greeting_3")), DIALOG_IASON_HAINE_GREETING_1(new PlaySound("Npcdialog1_e.iason_haine_greeting_1")), DIALOG_IASON_HAINE_GREETING_2(new PlaySound("Npcdialog1_e.iason_haine_greeting_2")), DIALOG_NATIVE_KUDA_GREETING_3(new PlaySound("Npcdialog1_e.native_kuda_greeting_3")), DIALOG_NATIVE_KUDA_GREETING_1(new PlaySound("Npcdialog1_e.native_kuda_greeting_1")), DIALOG_NATIVE_KUDA_GREETING_2(new PlaySound("Npcdialog1_e.native_kuda_greeting_2")), DIALOG_M_GUARD_JOHN_GREETING_1(new PlaySound("Npcdialog1_e.m_guard_john_greeting_1")), DIALOG_M_GUARD_JOHN_GREETING_2(new PlaySound("Npcdialog1_e.m_guard_john_greeting_2")), DIALOG_HEIAC_GREETING_3(new PlaySound("Npcdialog1_e.heiac_greeting_3")), DIALOG_HEIAC_GREETING_1(new PlaySound("Npcdialog1_e.heiac_greeting_1")), DIALOG_HEIAC_GREETING_2(new PlaySound("Npcdialog1_e.heiac_greeting_2")), DIALOG_PRIEST_KEIN_GREETING_3(new PlaySound("Npcdialog1_e.priest_kein_greeting_3")), DIALOG_PRIEST_KEIN_GREETING_1(new PlaySound("Npcdialog1_e.priest_kein_greeting_1")), DIALOG_PRIEST_KEIN_GREETING_2(new PlaySound("Npcdialog1_e.priest_kein_greeting_2")), DIALOG_M_AREN_ATEBALT_GREETING_3(new PlaySound("Npcdialog1_e.m_aren_atebalt_greeting_3")), DIALOG_M_AREN_ATEBALT_GREETING_1(new PlaySound("Npcdialog1_e.m_aren_atebalt_greeting_1")), DIALOG_M_AREN_ATEBALT_GREETING_2(new PlaySound("Npcdialog1_e.m_aren_atebalt_greeting_2")), DIALOG_INZONE_FRANTZ_GREETING_3(new PlaySound("Npcdialog1_e.inzone_frantz_greeting_3")), DIALOG_INZONE_FRANTZ_GREETING_1(new PlaySound("Npcdialog1_e.inzone_frantz_greeting_1")), DIALOG_INZONE_FRANTZ_GREETING_2(new PlaySound("Npcdialog1_e.inzone_frantz_greeting_2")), DIALOG_STAN_GREETING_3(new PlaySound("Npcdialog1_e.stan_greeting_3")), DIALOG_STAN_GREETING_1(new PlaySound("Npcdialog1_e.stan_greeting_1")), DIALOG_STAN_GREETING_2(new PlaySound("Npcdialog1_e.stan_greeting_2")), DIALOG_SSQ_MAMMON_GREETING_1(new PlaySound("Npcdialog1_e.ssq_mammon_greeting_1")), DIALOG_SSQ_MAMMON_GREETING_2(new PlaySound("Npcdialog1_e.ssq_mammon_greeting_2")), DIALOG_SSQ_MAMMON_GREETING_3(new PlaySound("Npcdialog1_e.ssq_mammon_greeting_3")), DIALOG_KING_FROG_GREETING_1(new PlaySound("Npcdialog1_e.king_frog_greeting_1")), DIALOG_PRIEST_WOOD_GREETNG_3(new PlaySound("Npcdialog1_e.priest_wood_greetng_3")), DIALOG_PRIEST_WOOD_GREETNG_1(new PlaySound("Npcdialog1_e.priest_wood_greetng_1")), DIALOG_PRIEST_WOOD_GREETNG_2(new PlaySound("Npcdialog1_e.priest_wood_greetng_2")), DIALOG_GUARD_LEON_GREETING_3(new PlaySound("Npcdialog1_e.guard_leon_greeting_3")), DIALOG_GUARD_LEON_GREETING_1(new PlaySound("Npcdialog1_e.guard_leon_greeting_1")), DIALOG_GUARD_LEON_GREETING_2(new PlaySound("Npcdialog1_e.guard_leon_greeting_2")), DIALOG_HOLLIN_GREETING_3(new PlaySound("Npcdialog1_e.hollin_greeting_3")), DIALOG_HOLLIN_GREETING_1(new PlaySound("Npcdialog1_e.hollin_greeting_1")), DIALOG_HOLLIN_GREETING_2(new PlaySound("Npcdialog1_e.hollin_greeting_2")), DIALOG_KING_FROG_GREETING_2(new PlaySound("Npcdialog1_e.king_frog_greeting_2")), DIALOG_PRIEST_JEINA_GREETING_3(new PlaySound("Npcdialog1_e.priest_jeina_greeting_3")), DIALOG_PRIEST_JEINA_GREETING_1(new PlaySound("Npcdialog1_e.priest_jeina_greeting_1")), DIALOG_PRIEST_JEINA_GREETING_2(new PlaySound("Npcdialog1_e.priest_jeina_greeting_2")), DIALOG_SIRR_GREETING_3(new PlaySound("Npcdialog1_e.sirr_greeting_3")), DIALOG_SIRR_GREETING_1(new PlaySound("Npcdialog1_e.sirr_greeting_1")), DIALOG_SIRR_GREETING_2(new PlaySound("Npcdialog1_e.sirr_greeting_2")), DIALOG_SOLINA_GREETING_5(new PlaySound("Npcdialog1_e2.solina_greeting_5")), DIALOG_ELCARDIA_GREETING_1(new PlaySound("Npcdialog1_e.elcardia_greeting_1")), DIALOG_ELCARDIA_GREETING_2(new PlaySound("Npcdialog1_e.elcardia_greeting_2")), DIALOG_ELCARDIA_GREETING_3(new PlaySound("Npcdialog1_e.elcardia_greeting_3")), DIALOG_ELCARDIA_GREETING_4(new PlaySound("Npcdialog1_e.elcardia_greeting_4")), DIALOG_ELCARDIA_GREETING_5(new PlaySound("Npcdialog1_e.elcardia_greeting_5")), DIALOG_ELYSS_GREETING_1(new PlaySound("Npcdialog1_e.elyss_greeting_1")), DIALOG_ELYSS_GREETING_2(new PlaySound("Npcdialog1_e.elyss_greeting_2")), DIALOG_ELYSS_GREETING_3(new PlaySound("Npcdialog1_e.elyss_greeting_3")), DIALOG_ELYSS_GREETING_4(new PlaySound("Npcdialog1_e.elyss_greeting_4")), DIALOG_ELYSS_GREETING_5(new PlaySound("Npcdialog1_e.elyss_greeting_5")), DIALOG_SOLINA_GREETING_1(new PlaySound("Npcdialog1_e.solina_greeting_1")), DIALOG_SOLINA_GREETING_2(new PlaySound("Npcdialog1_e.solina_greeting_2")), DIALOG_SOLINA_GREETING_3(new PlaySound("Npcdialog1_e.solina_greeting_3")), DIALOG_SOLINA_GREETING_4(new PlaySound("Npcdialog1_e.solina_greeting_4")), DIALOG_FREYA_VOICE_14(new PlaySound("Npcdialog1_e.freya_voice_14")), DIALOG_FREYA_VOICE_01(new PlaySound("Npcdialog1_e.freya_voice_01")), DIALOG_FREYA_VOICE_02(new PlaySound("Npcdialog1_e.freya_voice_02")), DIALOG_FREYA_VOICE_03(new PlaySound("Npcdialog1_e.freya_voice_03")), DIALOG_FREYA_VOICE_04(new PlaySound("Npcdialog1_e.freya_voice_04")), DIALOG_FREYA_VOICE_05(new PlaySound("Npcdialog1_e.freya_voice_05")), DIALOG_FREYA_VOICE_06(new PlaySound("Npcdialog1_e.freya_voice_06")), DIALOG_FREYA_VOICE_07(new PlaySound("Npcdialog1_e.freya_voice_07")), DIALOG_FREYA_VOICE_08(new PlaySound("Npcdialog1_e.freya_voice_08")), DIALOG_FREYA_VOICE_09(new PlaySound("Npcdialog1_e.freya_voice_09")), DIALOG_FREYA_VOICE_10(new PlaySound("Npcdialog1_e.freya_voice_10")), DIALOG_FREYA_VOICE_11(new PlaySound("Npcdialog1_e.freya_voice_11")), DIALOG_FREYA_VOICE_12(new PlaySound("Npcdialog1_e.freya_voice_12")), DIALOG_FREYA_VOICE_13(new PlaySound("Npcdialog1_e.freya_voice_13")), DIALOG_HARNAK_VOICE_02(new PlaySound("Npcdialog1_e.harnak_voice_02")), DIALOG_HARNAK_VOICE_01(new PlaySound("Npcdialog1_e.harnak_voice_01")), DIALOG_HERUMANKOS_VOICE_04(new PlaySound("Npcdialog1_e.herumankos_voice_04")), DIALOG_ISTINA_VOICE_05(new PlaySound("Npcdialog1_e.istina_voice_05")), DIALOG_ISTINA_VOICE_01(new PlaySound("Npcdialog1_e.istina_voice_01")), DIALOG_ISTINA_VOICE_02(new PlaySound("Npcdialog1_e.istina_voice_02")), DIALOG_ISTINA_VOICE_03(new PlaySound("Npcdialog1_e.istina_voice_03")), DIALOG_ISTINA_VOICE_04(new PlaySound("Npcdialog1_e.istina_voice_04")), DIALOG_OCTABIS_VOICE_03(new PlaySound("Npcdialog1_e.octabis_voice_03")), DIALOG_OCTABIS_VOICE_01(new PlaySound("Npcdialog1_e.octabis_voice_01")), DIALOG_OCTABIS_VOICE_02(new PlaySound("Npcdialog1_e.octabis_voice_02")), DIALOG_BATHIA_GREETING_3(new PlaySound("Npcdialog1_e.bathia_greeting_3")), DIALOG_BATHIA_FAREWELL_1(new PlaySound("Npcdialog1_e.bathia_farewell_1")), DIALOG_BATHIA_FAREWELL_2(new PlaySound("Npcdialog1_e.bathia_farewell_2")), DIALOG_BATHIA_GREETING_1(new PlaySound("Npcdialog1_e.bathia_greeting_1")), DIALOG_BATHIA_GREETING_2(new PlaySound("Npcdialog1_e.bathia_greeting_2")), DIALOG_AKU_FAREWELL_1(new PlaySound("Npcdialog1_e.aku_farewell_1")), DIALOG_AKU_GREETING_1(new PlaySound("Npcdialog1_e.aku_greeting_1")), DIALOG_AKU_GREETING_2(new PlaySound("Npcdialog1_e.aku_greeting_2")), DIALOG_AKU_GREETING_3(new PlaySound("Npcdialog1_e.aku_greeting_3")), DIALOG_CHAMBERLAIN_FAREWELL_1(new PlaySound("Npcdialog1_e.chamberlain_farewell_1")), DIALOG_CHAMBERLAIN_GREETING_1(new PlaySound("Npcdialog1_e.chamberlain_greeting_1")), DIALOG_CHAMBERLAIN_GREETING_2(new PlaySound("Npcdialog1_e.chamberlain_greeting_2")), DIALOG_CHAMBERLAIN_GREETING_3(new PlaySound("Npcdialog1_e.chamberlain_greeting_3")), DIALOG_MAKU_FAREWELL_1(new PlaySound("Npcdialog1_e.maku_farewell_1")), DIALOG_MAKU_GREETING_1(new PlaySound("Npcdialog1_e.maku_greeting_1")), DIALOG_MAKU_GREETING_2(new PlaySound("Npcdialog1_e.maku_greeting_2")), DIALOG_MAKU_GREETING_3(new PlaySound("Npcdialog1_e.maku_greeting_3")), DIALOG_MICHINIKU_FAREWELL_1(new PlaySound("Npcdialog1_e.michiniku_farewell_1")), DIALOG_MICHINIKU_GREETING_1(new PlaySound("Npcdialog1_e.michiniku_greeting_1")), DIALOG_MICHINIKU_GREETING_2(new PlaySound("Npcdialog1_e.michiniku_greeting_2")), DIALOG_MICHINIKU_GREETING_3(new PlaySound("Npcdialog1_e.michiniku_greeting_3")), DIALOG_PRIZE_PEOPLE_FAREWELL_1(new PlaySound("Npcdialog1_e.prize_people_farewell_1")), DIALOG_PRIZE_PEOPLE_GREETING_1(new PlaySound("Npcdialog1_e.prize_people_greeting_1")), DIALOG_PRIZE_PEOPLE_GREETING_2(new PlaySound("Npcdialog1_e.prize_people_greeting_2")), DIALOG_PRIZE_PEOPLE_GREETING_3(new PlaySound("Npcdialog1_e.prize_people_greeting_3")), DIALOG_REVOL_ARMY_FAREWELL_1(new PlaySound("Npcdialog1_e.revol_army_farewell_1")), DIALOG_REVOL_ARMY_GREETING_1(new PlaySound("Npcdialog1_e.revol_army_greeting_1")), DIALOG_REVOL_ARMY_GREETING_2(new PlaySound("Npcdialog1_e.revol_army_greeting_2")), DIALOG_REVOL_ARMY_GREETING_3(new PlaySound("Npcdialog1_e.revol_army_greeting_3")), DIALOG_REVOL_LEADER_FAREWELL_1(new PlaySound("Npcdialog1_e.revol_leader_farewell_1")), DIALOG_REVOL_LEADER_GREETING_1(new PlaySound("Npcdialog1_e.revol_leader_greeting_1")), DIALOG_REVOL_LEADER_GREETING_2(new PlaySound("Npcdialog1_e.revol_leader_greeting_2")), DIALOG_REVOL_LEADER_GREETING_3(new PlaySound("Npcdialog1_e.revol_leader_greeting_3")), DIALOG_SIZRAKU_FAREWELL_1(new PlaySound("Npcdialog1_e.sizraku_farewell_1")), DIALOG_SIZRAKU_GREETING_1(new PlaySound("Npcdialog1_e.sizraku_greeting_1")), DIALOG_SIZRAKU_GREETING_2(new PlaySound("Npcdialog1_e.sizraku_greeting_2")), DIALOG_SIZRAKU_GREETING_3(new PlaySound("Npcdialog1_e.sizraku_greeting_3")), DIALOG_SOFA_FAREWELL_1(new PlaySound("Npcdialog1_e.sofa_farewell_1")), DIALOG_SOFA_GREETING_1(new PlaySound("Npcdialog1_e.sofa_greeting_1")), DIALOG_SOFA_GREETING_2(new PlaySound("Npcdialog1_e.sofa_greeting_2")), DIALOG_SOFA_GREETING_3(new PlaySound("Npcdialog1_e.sofa_greeting_3")), DIALOG_UNHOLYTHING_FAREWELL_1(new PlaySound("Npcdialog1_e.unholything_farewell_1")), DIALOG_UNHOLYTHING_GREETING_1(new PlaySound("Npcdialog1_e.unholything_greeting_1")), DIALOG_UNHOLYTHING_GREETING_2(new PlaySound("Npcdialog1_e.unholything_greeting_2")), DIALOG_UNHOLYTHING_GREETING_3(new PlaySound("Npcdialog1_e.unholything_greeting_3")), DIALOG_BRAKEL_FAREWELL_1(new PlaySound("Npcdialog1_e.brakel_farewell_1")), DIALOG_BRAKEL_GREETING_1(new PlaySound("Npcdialog1_e.brakel_greeting_1")), DIALOG_BRAKEL_GREETING_2(new PlaySound("Npcdialog1_e.brakel_greeting_2")), DIALOG_BRAKEL_GREETING_3(new PlaySound("Npcdialog1_e.brakel_greeting_3")), DIALOG_DARING_FAREWELL_1(new PlaySound("Npcdialog1_e.daring_farewell_1")), DIALOG_DARING_GREETING_1(new PlaySound("Npcdialog1_e.daring_greeting_1")), DIALOG_DARING_GREETING_2(new PlaySound("Npcdialog1_e.daring_greeting_2")), DIALOG_DARING_GREETING_3(new PlaySound("Npcdialog1_e.daring_greeting_3")), DIALOG_JACQUARD_FAREWELL_1(new PlaySound("Npcdialog1_e.jacquard_farewell_1")), DIALOG_JACQUARD_GREETING_1(new PlaySound("Npcdialog1_e.jacquard_greeting_1")), DIALOG_JACQUARD_GREETING_2(new PlaySound("Npcdialog1_e.jacquard_greeting_2")), DIALOG_JACQUARD_GREETING_3(new PlaySound("Npcdialog1_e.jacquard_greeting_3")), DIALOG_LOKEN_FAREWELL_1(new PlaySound("Npcdialog1_e.loken_farewell_1")), DIALOG_LOKEN_GREETING_1(new PlaySound("Npcdialog1_e.loken_greeting_1")), DIALOG_LOKEN_GREETING_2(new PlaySound("Npcdialog1_e.loken_greeting_2")), DIALOG_LOKEN_GREETING_3(new PlaySound("Npcdialog1_e.loken_greeting_3")), DIALOG_MYSTERIOUS_KNIGHT_FAREWELL_1(new PlaySound("Npcdialog1_e.mysterious_knight_farewell_1")), DIALOG_MYSTERIOUS_KNIGHT_GREETING_1(new PlaySound("Npcdialog1_e.mysterious_knight_greeting_1")), DIALOG_MYSTERIOUS_KNIGHT_GREETING_2(new PlaySound("Npcdialog1_e.mysterious_knight_greeting_2")), DIALOG_MYSTERIOUS_KNIGHT_GREETING_3(new PlaySound("Npcdialog1_e.mysterious_knight_greeting_3")), DIALOG_PUNCH_MACHINE_DIALOGUE_1(new PlaySound("Npcdialog1_e.punch_machine_dialogue_1")), DIALOG_PUNCH_MACHINE_DIALOGUE_2(new PlaySound("Npcdialog1_e.punch_machine_dialogue_2")), DIALOG_PUNCH_MACHINE_DIALOGUE_3(new PlaySound("Npcdialog1_e.punch_machine_dialogue_3")), DIALOG_PUNCH_MACHINE_EFFECT_1(new PlaySound("Npcdialog1_e.punch_machine_effect_1")), DIALOG_PUNCH_MACHINE_EFFECT_2(new PlaySound("Npcdialog1_e.punch_machine_effect_2")), DIALOG_PUNCH_MACHINE_EFFECT_3(new PlaySound("Npcdialog1_e.punch_machine_effect_3")), DIALOG_PUNCH_MACHINE_EFFECT_4(new PlaySound("Npcdialog1_e.punch_machine_effect_4")), DIALOG_PUNCH_MACHINE_EFFECT_5(new PlaySound("Npcdialog1_e.punch_machine_effect_5")), DIALOG_PUNCH_MACHINE_EFFECT_6(new PlaySound("Npcdialog1_e.punch_machine_effect_6")), DIALOG_PUNCH_MACHINE_EFFECT_7(new PlaySound("Npcdialog1_e.punch_machine_effect_7")), DIALOG_PUNCH_MACHINE_END_1(new PlaySound("Npcdialog1_e.punch_machine_end_1")), DIALOG_PUNCH_MACHINE_END_2(new PlaySound("Npcdialog1_e.punch_machine_end_2")), DIALOG_PUNCH_MACHINE_INDICATOR_1(new PlaySound("Npcdialog1_e.punch_machine_Indicator_1")), DIALOG_PUNCH_MACHINE_START_1(new PlaySound("Npcdialog1_e.punch_machine_start_1")), DIALOG_PUNCH_MACHINE_START_2(new PlaySound("Npcdialog1_e.punch_machine_start_2")), DIALOG_RAPUNZEL_FAREWELL_1(new PlaySound("Npcdialog1_e.rapunzel_farewell_1")), DIALOG_RAPUNZEL_GREETING_1(new PlaySound("Npcdialog1_e.rapunzel_greeting_1")), DIALOG_RAPUNZEL_GREETING_2(new PlaySound("Npcdialog1_e.rapunzel_greeting_2")), DIALOG_RAPUNZEL_GREETING_3(new PlaySound("Npcdialog1_e.rapunzel_greeting_3")), DIALOG_BURINU_GREETING_1(new PlaySound("Npcdialog1_e.burinu_greeting_1")), DIALOG_BURINU_GREETING_2(new PlaySound("Npcdialog1_e.burinu_greeting_2")), DIALOG_BURINU_GREETING_3(new PlaySound("Npcdialog1_e.burinu_greeting_3")), DIALOG_ETIS_VAN_ETINA_QUEST(new PlaySound("Npcdialog1_e.etis_van_etina_quest")), DIALOG_GRANGKAIN_CLASS(new PlaySound("Npcdialog1_e.grangkain_class")), DIALOG_GUIDE_FOR_ADVENTURER_GREETING_1(new PlaySound("Npcdialog1_e.guide_for_adventurer_greeting_1")), DIALOG_GUIDE_FOR_ADVENTURER_GREETING_2(new PlaySound("Npcdialog1_e.guide_for_adventurer_greeting_2")), DIALOG_GUIDE_FOR_ADVENTURER_GREETING_3(new PlaySound("Npcdialog1_e.guide_for_adventurer_greeting_3")), DIALOG_GUIDE_FOR_ADVENTURER_GREETING_4(new PlaySound("Npcdialog1_e.guide_for_adventurer_greeting_4")), DIALOG_HADIN_GREETING_1(new PlaySound("Npcdialog1_e.hadin_greeting_1")), DIALOG_HADIN_GREETING_2(new PlaySound("Npcdialog1_e.hadin_greeting_2")), DIALOG_HADIN_GREETING_3(new PlaySound("Npcdialog1_e.hadin_greeting_3")), DIALOG_HANSEN_GREETING_1(new PlaySound("Npcdialog1_e.hansen_greeting_1")), DIALOG_HANSEN_GREETING_2(new PlaySound("Npcdialog1_e.hansen_greeting_2")), DIALOG_HANSEN_GREETING_3(new PlaySound("Npcdialog1_e.hansen_greeting_3")), DIALOG_HANZ_GREETING_1(new PlaySound("Npcdialog1_e.hanz_greeting_1")), DIALOG_HANZ_GREETING_2(new PlaySound("Npcdialog1_e.hanz_greeting_2")), DIALOG_HANZ_GREETING_3(new PlaySound("Npcdialog1_e.hanz_greeting_3")), DIALOG_HANZ_GREETING_4(new PlaySound("Npcdialog1_e.hanz_greeting_4")), DIALOG_HEMING_GREETING_1(new PlaySound("Npcdialog1_e.heming_greeting_1")), DIALOG_HEMING_GREETING_2(new PlaySound("Npcdialog1_e.heming_greeting_2")), DIALOG_HEMING_GREETING_3(new PlaySound("Npcdialog1_e.heming_greeting_3")), DIALOG_HEMING_GREETING_4(new PlaySound("Npcdialog1_e.heming_greeting_4")), DIALOG_HUNT_GREETING_1(new PlaySound("Npcdialog1_e.hunt_greeting_1")), DIALOG_HUNT_GREETING_2(new PlaySound("Npcdialog1_e.hunt_greeting_2")), DIALOG_HUNT_GREETING_3(new PlaySound("Npcdialog1_e.hunt_greeting_3")), DIALOG_HUNT_GREETING_4(new PlaySound("Npcdialog1_e.hunt_greeting_4")), DIALOG_KAKTEON_GREETING_1(new PlaySound("Npcdialog1_e.kakteon_greeting_1")), DIALOG_KAKTEON_GREETING_2(new PlaySound("Npcdialog1_e.kakteon_greeting_2")), DIALOG_KAKTEON_GREETING_3(new PlaySound("Npcdialog1_e.kakteon_greeting_3")), DIALOG_KAKTEON_GREETING_4(new PlaySound("Npcdialog1_e.kakteon_greeting_4")), DIALOG_KAMIL_GREETING_1(new PlaySound("Npcdialog1_e.kamil_greeting_1")), DIALOG_KAMIL_GREETING_2(new PlaySound("Npcdialog1_e.kamil_greeting_2")), DIALOG_KAMIL_GREETING_3(new PlaySound("Npcdialog1_e.kamil_greeting_3")), DIALOG_KAMIL_GREETING_4(new PlaySound("Npcdialog1_e.kamil_greeting_4")), DIALOG_KEKROPS_GREETING_1(new PlaySound("Npcdialog1_e.kekrops_greeting_1")), DIALOG_KEKROPS_GREETING_2(new PlaySound("Npcdialog1_e.kekrops_greeting_2")), DIALOG_KEKROPS_GREETING_3(new PlaySound("Npcdialog1_e.kekrops_greeting_3")), DIALOG_KEKROPS_GREETING_4(new PlaySound("Npcdialog1_e.kekrops_greeting_4")), DIALOG_KEKROPS_QUEST_1(new PlaySound("Npcdialog1_e.kekrops_quest_1")), DIALOG_KEKROPS_QUEST_2(new PlaySound("Npcdialog1_e.kekrops_quest_2")), DIALOG_KEKROPS_QUEST_3(new PlaySound("Npcdialog1_e.kekrops_quest_3")), DIALOG_KEKROPS_QUEST_4(new PlaySound("Npcdialog1_e.kekrops_quest_4")), DIALOG_KEKROPS_QUEST_5(new PlaySound("Npcdialog1_e.kekrops_quest_5")), DIALOG_KEKROPS_QUEST_6(new PlaySound("Npcdialog1_e.kekrops_quest_6")), DIALOG_KEKROPS_QUEST_7(new PlaySound("Npcdialog1_e.kekrops_quest_7")), DIALOG_KEKROPS_QUEST_8(new PlaySound("Npcdialog1_e.kekrops_quest_8")), DIALOG_KEKROPS_QUEST_9(new PlaySound("Npcdialog1_e.kekrops_quest_9")), DIALOG_KEKROPS_QUEST_10(new PlaySound("Npcdialog1_e.kekrops_quest_10")), DIALOG_KEKROPS_QUEST_11(new PlaySound("Npcdialog1_e.kekrops_quest_11")), DIALOG_KEKROPS_QUEST_12(new PlaySound("Npcdialog1_e.kekrops_quest_12")), DIALOG_KEKROPS_QUEST_13(new PlaySound("Npcdialog1_e.kekrops_quest_13")), DIALOG_KEKROPS_QUEST_14(new PlaySound("Npcdialog1_e.kekrops_quest_14")), DIALOG_LAVIANROSE_GREETING_1(new PlaySound("Npcdialog1_e.lavianrose_greeting_1")), DIALOG_LAVIANROSE_GREETING_2(new PlaySound("Npcdialog1_e.lavianrose_greeting_2")), DIALOG_LAVIANROSE_GREETING_3(new PlaySound("Npcdialog1_e.lavianrose_greeting_3")), DIALOG_LAVIANROSE_GREETING_4(new PlaySound("Npcdialog1_e.lavianrose_greeting_4")), DIALOG_LAVIANROSE_GREETING_5(new PlaySound("Npcdialog1_e.lavianrose_greeting_5")), DIALOG_MENTORING_GUIDE_GREETING_1(new PlaySound("Npcdialog1_e.mentoring_guide_greeting_1")), DIALOG_MENTORING_GUIDE_GREETING_2(new PlaySound("Npcdialog1_e.mentoring_guide_greeting_2")), DIALOG_MENTORING_GUIDE_GREETING_3(new PlaySound("Npcdialog1_e.mentoring_guide_greeting_3")), DIALOG_MENTORING_GUIDE_GREETING_4(new PlaySound("Npcdialog1_e.mentoring_guide_greeting_4")), DIALOG_PARAYAN_GREETING_1(new PlaySound("Npcdialog1_e.parayan_greeting_1")), DIALOG_PARAYAN_GREETING_2(new PlaySound("Npcdialog1_e.parayan_greeting_2")), DIALOG_PARAYAN_GREETING_3(new PlaySound("Npcdialog1_e.parayan_greeting_3")), DIALOG_POLK_GREETING_1(new PlaySound("Npcdialog1_e.polk_greeting_1")), DIALOG_POLK_GREETING_2(new PlaySound("Npcdialog1_e.polk_greeting_2")), DIALOG_POLK_GREETING_3(new PlaySound("Npcdialog1_e.polk_greeting_3")), DIALOG_PRIEST_OF_FATE_GREETING_1(new PlaySound("Npcdialog1_e.priest_of_fate_greeting_1")), DIALOG_PRIEST_OF_FATE_GREETING_2(new PlaySound("Npcdialog1_e.priest_of_fate_greeting_2")), DIALOG_PRIEST_OF_FATE_GREETING_3(new PlaySound("Npcdialog1_e.priest_of_fate_greeting_3")), DIALOG_QUINCYROAD_GREETING_1(new PlaySound("Npcdialog1_e.quincyroad_greeting_1")), DIALOG_QUINCYROAD_GREETING_2(new PlaySound("Npcdialog1_e.quincyroad_greeting_2")), DIALOG_QUINCYROAD_GREETING_3(new PlaySound("Npcdialog1_e.quincyroad_greeting_3")), DIALOG_RUA_GREETING_1(new PlaySound("Npcdialog1_e.rua_greeting_1")), DIALOG_RUA_GREETING_2(new PlaySound("Npcdialog1_e.rua_greeting_2")), DIALOG_RUA_GREETING_3(new PlaySound("Npcdialog1_e.rua_greeting_3")), DIALOG_RUGONESS_GREETING_1(new PlaySound("Npcdialog1_e.rugoness_greeting_1")), DIALOG_RUGONESS_GREETING_2(new PlaySound("Npcdialog1_e.rugoness_greeting_2")), DIALOG_RUGONESS_GREETING_3(new PlaySound("Npcdialog1_e.rugoness_greeting_3")), DIALOG_SILEN_LINDVIOR_INTRO_1(new PlaySound("Npcdialog1_e.silen_lindvior_intro_1")), DIALOG_SILEN_LINDVIOR_INTRO_2(new PlaySound("Npcdialog1_e.silen_lindvior_intro_2")), DIALOG_SILEN_LINDVIOR_LOSE_1(new PlaySound("Npcdialog1_e.silen_lindvior_lose_1")), DIALOG_SILEN_LINDVIOR_LOSE_2(new PlaySound("Npcdialog1_e.silen_lindvior_lose_2")), DIALOG_SILEN_LINDVIOR_LOSE_3(new PlaySound("Npcdialog1_e.silen_lindvior_lose_3")), DIALOG_SILEN_LINDVIOR_TUTORIAL_1(new PlaySound("Npcdialog1_e.silen_lindvior_tutorial_1")), DIALOG_SILEN_LINDVIOR_TUTORIAL_2(new PlaySound("Npcdialog1_e.silen_lindvior_tutorial_2")), DIALOG_SILEN_LINDVIOR_WIN_1(new PlaySound("Npcdialog1_e.silen_lindvior_win_1")), DIALOG_SILEN_LINDVIOR_WIN_2(new PlaySound("Npcdialog1_e.silen_lindvior_win_2")), DIALOG_TAEOHR_AGAPE_BATTLE_1(new PlaySound("Npcdialog1_e.taeohr_agape_battle_1")), DIALOG_TAEOHR_AGAPE_BATTLE_2(new PlaySound("Npcdialog1_e.taeohr_agape_battle_2")), DIALOG_TAEOHR_AGAPE_BATTLE_3(new PlaySound("Npcdialog1_e.taeohr_agape_battle_3")), DIALOG_TAEOHR_BIRDHUNTER_BATTLE_1(new PlaySound("Npcdialog1_e.taeohr_birdhunter_battle_1")), DIALOG_TAEOHR_BIRDHUNTER_BATTLE_2(new PlaySound("Npcdialog1_e.taeohr_birdhunter_battle_2")), DIALOG_TAEOHR_BIRDHUNTER_BATTLE_3(new PlaySound("Npcdialog1_e.taeohr_birdhunter_battle_3")), DIALOG_TAEOHR_ORC_BATTLE_1(new PlaySound("Npcdialog1_e.taeohr_orc_battle_1")), DIALOG_TAEOHR_ORC_BATTLE_2(new PlaySound("Npcdialog1_e.taeohr_orc_battle_2")), DIALOG_TAEOHR_ORC_BATTLE_3(new PlaySound("Npcdialog1_e.taeohr_orc_battle_3")), DIALOG_TAEOHR_TEZAKAR_BATTLE_1(new PlaySound("Npcdialog1_e.taeohr_tezakar_battle_1")), DIALOG_TAEOHR_TEZAKAR_BATTLE_2(new PlaySound("Npcdialog1_e.taeohr_tezakar_battle_2")), DIALOG_TAEOHR_TEZAKAR_BATTLE_3(new PlaySound("Npcdialog1_e.taeohr_tezakar_battle_3")), DIALOG_TUSCA_GREETING_1(new PlaySound("Npcdialog1_e.tusca_greeting_1")), DIALOG_TUSCA_GREETING_2(new PlaySound("Npcdialog1_e.tusca_greeting_2")), DIALOG_TUSCA_GREETING_3(new PlaySound("Npcdialog1_e.tusca_greeting_3")), DIALOG_YANIT_GREETING_1(new PlaySound("Npcdialog1_e.yanit_greeting_1")), DIALOG_YANIT_GREETING_2(new PlaySound("Npcdialog1_e.yanit_greeting_2")), DIALOG_YANIT_GREETING_3(new PlaySound("Npcdialog1_e.yanit_greeting_3")), DIALOG_BLACKBIRD_GREETING_1(new PlaySound("Npcdialog1_e.blackbird_greeting_1")), DIALOG_BLACKBIRD_GREETING_2(new PlaySound("Npcdialog1_e.blackbird_greeting_2")), DIALOG_BLACKBIRD_GREETING_3(new PlaySound("Npcdialog1_e.blackbird_greeting_3")), DIALOG_DANDI_GREETING_1(new PlaySound("Npcdialog1_e.dandi_greeting_1")), DIALOG_DANDI_GREETING_2(new PlaySound("Npcdialog1_e.dandi_greeting_2")), DIALOG_DANDI_GREETING_3(new PlaySound("Npcdialog1_e.dandi_greeting_3")), DIALOG_DANDI_GREETING_4(new PlaySound("Npcdialog1_e.dandi_greeting_4")), DIALOG_DEVIANNE_GREETING_1(new PlaySound("Npcdialog1_e.devianne_greeting_1")), DIALOG_DEVIANNE_GREETING_2(new PlaySound("Npcdialog1_e.devianne_greeting_2")), DIALOG_DEVIANNE_GREETING_3(new PlaySound("Npcdialog1_e.devianne_greeting_3")), DIALOG_ELLIKIA_GREETING_1(new PlaySound("Npcdialog1_e.ellikia_greeting_1")), DIALOG_ELLIKIA_GREETING_2(new PlaySound("Npcdialog1_e.ellikia_greeting_2")), DIALOG_ELLIKIA_GREETING_3(new PlaySound("Npcdialog1_e.ellikia_greeting_3")), DIALOG_RIONELL_GREETING_1(new PlaySound("Npcdialog1_e.rionell_greeting_1")), DIALOG_RIONELL_GREETING_2(new PlaySound("Npcdialog1_e.rionell_greeting_2")), DIALOG_RIONELL_GREETING_3(new PlaySound("Npcdialog1_e.rionell_greeting_3")), DIALOG_RIONELL_QUEST(new PlaySound("Npcdialog1_e.rionell_quest")), DIALOG_WEBER_GREETING_1(new PlaySound("Npcdialog1_e.weber_greeting_1")), DIALOG_WEBER_GREETING_2(new PlaySound("Npcdialog1_e.weber_greeting_2")), DIALOG_WEBER_GREETING_3(new PlaySound("Npcdialog1_e.weber_greeting_3")), DIALOG_YOGI_GREETING_1(new PlaySound("Npcdialog1_e.yogi_greeting_1")), DIALOG_YOGI_GREETING_2(new PlaySound("Npcdialog1_e.yogi_greeting_2")), DIALOG_YOGI_GREETING_3(new PlaySound("Npcdialog1_e.yogi_greeting_3")), DIALOG_YOGI_GREETING_4(new PlaySound("Npcdialog1_e.yogi_greeting_4")), DIALOG_ANITA_GREETING_1(new PlaySound("Npcdialog1_e.anita_greeting_1")), DIALOG_ANITA_GREETING_2(new PlaySound("Npcdialog1_e.anita_greeting_2")), DIALOG_ANITA_GREETING_3(new PlaySound("Npcdialog1_e.anita_greeting_3")), DIALOG_APPLE_QUEST_1(new PlaySound("Npcdialog1_e.apple_quest_1")), DIALOG_APPLE_QUEST_2(new PlaySound("Npcdialog1_e.apple_quest_2")), DIALOG_APPLE_QUEST_3(new PlaySound("Npcdialog1_e.apple_quest_3")), DIALOG_APPLE_QUEST_4(new PlaySound("Npcdialog1_e.apple_quest_4")), DIALOG_APPLE_QUEST_5(new PlaySound("Npcdialog1_e.apple_quest_5")), DIALOG_APPLE_QUEST_6(new PlaySound("Npcdialog1_e.apple_quest_6")), DIALOG_APPLE_QUEST_7(new PlaySound("Npcdialog1_e.apple_quest_7")), DIALOG_ARIA_GREETING_1(new PlaySound("Npcdialog1_e.aria_greeting_1")), DIALOG_ARIA_GREETING_2(new PlaySound("Npcdialog1_e.aria_greeting_2")), DIALOG_ARIA_GREETING_3(new PlaySound("Npcdialog1_e.aria_greeting_3")), DIALOG_ARIA_GREETING_4(new PlaySound("Npcdialog1_e.aria_greeting_4")), DIALOG_ARIA_GREETING_5(new PlaySound("Npcdialog1_e.aria_greeting_5")), DIALOG_ARIS_GREETING_1(new PlaySound("Npcdialog1_e.aris_greeting_1")), DIALOG_ARIS_GREETING_2(new PlaySound("Npcdialog1_e.aris_greeting_2")), DIALOG_ARIS_GREETING_3(new PlaySound("Npcdialog1_e.aris_greeting_3")), DIALOG_ARIS_GREETING_4(new PlaySound("Npcdialog1_e.aris_greeting_4")), DIALOG_ARIS_GREETING_5(new PlaySound("Npcdialog1_e.aris_greeting_5")), DIALOG_ARIS_QUEST_1(new PlaySound("Npcdialog1_e.aris_quest_1")), DIALOG_ARIS_QUEST_2(new PlaySound("Npcdialog1_e.aris_quest_2")), DIALOG_ASTIEL_GREETING_1(new PlaySound("Npcdialog1_e.astiel_greeting_1")), DIALOG_ASTIEL_GREETING_2(new PlaySound("Npcdialog1_e.astiel_greeting_2")), DIALOG_ASTIEL_GREETING_3(new PlaySound("Npcdialog1_e.astiel_greeting_3")), DIALOG_ASTIEL_GREETING_4(new PlaySound("Npcdialog1_e.astiel_greeting_4")), DIALOG_ASTIEL_GREETING_5(new PlaySound("Npcdialog1_e.astiel_greeting_5")), DIALOG_BEROA_GREETING_1(new PlaySound("Npcdialog1_e.beroa_greeting_1")), DIALOG_BEROA_GREETING_2(new PlaySound("Npcdialog1_e.beroa_greeting_2")), DIALOG_BEROA_GREETING_3(new PlaySound("Npcdialog1_e.beroa_greeting_3")), DIALOG_BEROA_GREETING_4(new PlaySound("Npcdialog1_e.beroa_greeting_4")), DIALOG_BEROA_GREETING_5(new PlaySound("Npcdialog1_e.beroa_greeting_5")), DIALOG_BOREMATUE_GREETING_1(new PlaySound("Npcdialog1_e.borematue_greeting_1")), DIALOG_BOREMATUE_GREETING_2(new PlaySound("Npcdialog1_e.borematue_greeting_2")), DIALOG_BOREMATUE_GREETING_3(new PlaySound("Npcdialog1_e.borematue_greeting_3")), DIALOG_BORIN_GREETING_1(new PlaySound("Npcdialog1_e.borin_greeting_1")), DIALOG_BORIN_GREETING_2(new PlaySound("Npcdialog1_e.borin_greeting_2")), DIALOG_BORIN_GREETING_3(new PlaySound("Npcdialog1_e.borin_greeting_3")), DIALOG_BORIN_GREETING_4(new PlaySound("Npcdialog1_e.borin_greeting_4")), DIALOG_BORIN_GREETING_5(new PlaySound("Npcdialog1_e.borin_greeting_5")), DIALOG_COPARTNER_GREETING_1(new PlaySound("Npcdialog1_e.copartner_greeting_1")), DIALOG_COPARTNER_GREETING_2(new PlaySound("Npcdialog1_e.copartner_greeting_2")), DIALOG_COPARTNER_GREETING_3(new PlaySound("Npcdialog1_e.copartner_greeting_3")), DIALOG_COPARTNER_GREETING_4(new PlaySound("Npcdialog1_e.copartner_greeting_4")), DIALOG_COPARTNER_GREETING_5(new PlaySound("Npcdialog1_e.copartner_greeting_5")), DIALOG_DOLKIN_GREETING_1(new PlaySound("Npcdialog1_e.dolkin_greeting_1")), DIALOG_DOLKIN_GREETING_2(new PlaySound("Npcdialog1_e.dolkin_greeting_2")), DIALOG_DOLKIN_GREETING_3(new PlaySound("Npcdialog1_e.dolkin_greeting_3")), DIALOG_DOLKIN_GREETING_4(new PlaySound("Npcdialog1_e.dolkin_greeting_4")), DIALOG_DOLKIN_GREETING_5(new PlaySound("Npcdialog1_e.dolkin_greeting_5")), DIALOG_EINSTER_NPC_GREETING_1(new PlaySound("Npcdialog1_e.einster_npc_greeting_1")), DIALOG_EINSTER_NPC_GREETING_2(new PlaySound("Npcdialog1_e.einster_npc_greeting_2")), DIALOG_EINSTER_NPC_GREETING_3(new PlaySound("Npcdialog1_e.einster_npc_greeting_3")), DIALOG_EINSTER_NPC_GREETING_4(new PlaySound("Npcdialog1_e.einster_npc_greeting_4")), DIALOG_EINSTER_NPC_GREETING_5(new PlaySound("Npcdialog1_e.einster_npc_greeting_5")), DIALOG_ERTHERIA_WIDE1_GREETING_1(new PlaySound("Npcdialog1_e.ertheria_wide1_greeting_1")), DIALOG_ERTHERIA_WIDE1_GREETING_2(new PlaySound("Npcdialog1_e.ertheria_wide1_greeting_2")), DIALOG_ERTHERIA_WIDE1_GREETING_3(new PlaySound("Npcdialog1_e.ertheria_wide1_greeting_3")), DIALOG_ERTHERIA_WIDE1_GREETING_4(new PlaySound("Npcdialog1_e.ertheria_wide1_greeting_4")), DIALOG_ERTHERIA_WIDE1_GREETING_5(new PlaySound("Npcdialog1_e.ertheria_wide1_greeting_5")), DIALOG_ERTHERIA_WIDE2_GREETING_1(new PlaySound("Npcdialog1_e.ertheria_wide2_greeting_1")), DIALOG_ERTHERIA_WIDE2_GREETING_2(new PlaySound("Npcdialog1_e.ertheria_wide2_greeting_2")), DIALOG_ERTHERIA_WIDE2_GREETING_3(new PlaySound("Npcdialog1_e.ertheria_wide2_greeting_3")), DIALOG_ERTHERIA_WIDE2_GREETING_4(new PlaySound("Npcdialog1_e.ertheria_wide2_greeting_4")), DIALOG_ERTHERIA_WIDE2_GREETING_5(new PlaySound("Npcdialog1_e.ertheria_wide2_greeting_5")), DIALOG_ERTHERIA_WIDE3_GREETING_1(new PlaySound("Npcdialog1_e.ertheria_wide3_greeting_1")), DIALOG_ERTHERIA_WIDE3_GREETING_2(new PlaySound("Npcdialog1_e.ertheria_wide3_greeting_2")), DIALOG_ERTHERIA_WIDE3_GREETING_3(new PlaySound("Npcdialog1_e.ertheria_wide3_greeting_3")), DIALOG_ERTHERIA_WIDE3_GREETING_4(new PlaySound("Npcdialog1_e.ertheria_wide3_greeting_4")), DIALOG_ERTHERIA_WIDE3_GREETING_5(new PlaySound("Npcdialog1_e.ertheria_wide3_greeting_5")), DIALOG_ERTHERIA_WIDE4_GREETING_1(new PlaySound("Npcdialog1_e.ertheria_wide4_greeting_1")), DIALOG_ERTHERIA_WIDE4_GREETING_2(new PlaySound("Npcdialog1_e.ertheria_wide4_greeting_2")), DIALOG_ERTHERIA_WIDE4_GREETING_3(new PlaySound("Npcdialog1_e.ertheria_wide4_greeting_3")), DIALOG_ERTHERIA_WIDE4_GREETING_4(new PlaySound("Npcdialog1_e.ertheria_wide4_greeting_4")), DIALOG_ERTHERIA_WIDE4_GREETING_5(new PlaySound("Npcdialog1_e.ertheria_wide4_greeting_5")), DIALOG_ERTHERIA_WIDE5_GREETING_1(new PlaySound("Npcdialog1_e.ertheria_wide5_greeting_1")), DIALOG_ERTHERIA_WIDE5_GREETING_2(new PlaySound("Npcdialog1_e.ertheria_wide5_greeting_2")), DIALOG_ERTHERIA_WIDE5_GREETING_3(new PlaySound("Npcdialog1_e.ertheria_wide5_greeting_3")), DIALOG_ERTHERIA_WIDE5_GREETING_4(new PlaySound("Npcdialog1_e.ertheria_wide5_greeting_4")), DIALOG_ERTHERIA_WIDE5_GREETING_5(new PlaySound("Npcdialog1_e.ertheria_wide5_greeting_5")), DIALOG_ERTHERIA_WIDE6_GREETING_1(new PlaySound("Npcdialog1_e.ertheria_wide6_greeting_1")), DIALOG_ERTHERIA_WIDE6_GREETING_2(new PlaySound("Npcdialog1_e.ertheria_wide6_greeting_2")), DIALOG_ERTHERIA_WIDE6_GREETING_3(new PlaySound("Npcdialog1_e.ertheria_wide6_greeting_3")), DIALOG_ERTHERIA_WIDE6_GREETING_4(new PlaySound("Npcdialog1_e.ertheria_wide6_greeting_4")), DIALOG_ERTHERIA_WIDE6_GREETING_5(new PlaySound("Npcdialog1_e.ertheria_wide6_greeting_5")), DIALOG_ERTHERIA_WIDE7_GREETING_1(new PlaySound("Npcdialog1_e.ertheria_wide7_greeting_1")), DIALOG_ERTHERIA_WIDE7_GREETING_2(new PlaySound("Npcdialog1_e.ertheria_wide7_greeting_2")), DIALOG_ERTHERIA_WIDE7_GREETING_3(new PlaySound("Npcdialog1_e.ertheria_wide7_greeting_3")), DIALOG_ERTHERIA_WIDE7_GREETING_4(new PlaySound("Npcdialog1_e.ertheria_wide7_greeting_4")), DIALOG_ERTHERIA_WIDE7_GREETING_5(new PlaySound("Npcdialog1_e.ertheria_wide7_greeting_5")), DIALOG_ERTHERIA_WIDE8_GREETING_1(new PlaySound("Npcdialog1_e.ertheria_wide8_greeting_1")), DIALOG_ERTHERIA_WIDE8_GREETING_2(new PlaySound("Npcdialog1_e.ertheria_wide8_greeting_2")), DIALOG_ERTHERIA_WIDE8_GREETING_3(new PlaySound("Npcdialog1_e.ertheria_wide8_greeting_3")), DIALOG_ERTHERIA_WIDE8_GREETING_4(new PlaySound("Npcdialog1_e.ertheria_wide8_greeting_4")), DIALOG_ERTHERIA_WIDE8_GREETING_5(new PlaySound("Npcdialog1_e.ertheria_wide8_greeting_5")), DIALOG_EVENING_GREETING_1(new PlaySound("Npcdialog1_e.evening_greeting_1")), DIALOG_EVENING_GREETING_2(new PlaySound("Npcdialog1_e.evening_greeting_2")), DIALOG_EVENING_GREETING_3(new PlaySound("Npcdialog1_e.evening_greeting_3")), DIALOG_GERENIOS_GREETING_1(new PlaySound("Npcdialog1_e.gerenios_greeting_1")), DIALOG_GERENIOS_GREETING_2(new PlaySound("Npcdialog1_e.gerenios_greeting_2")), DIALOG_GERENIOS_GREETING_3(new PlaySound("Npcdialog1_e.gerenios_greeting_3")), DIALOG_GERENIOS_GREETING_4(new PlaySound("Npcdialog1_e.gerenios_greeting_4")), DIALOG_GERENIOS_GREETING_5(new PlaySound("Npcdialog1_e.gerenios_greeting_5")), DIALOG_GERENIOS_GREETING_6(new PlaySound("Npcdialog1_e.gerenios_greeting_6")), DIALOG_GERENIOS_GREETING_7(new PlaySound("Npcdialog1_e.gerenios_greeting_7")), DIALOG_GERENIOS_GREETING_8(new PlaySound("Npcdialog1_e.gerenios_greeting_8")), DIALOG_GERENIOS_GREETING_9(new PlaySound("Npcdialog1_e.gerenios_greeting_9")), DIALOG_GERENIOS_GREETING_10(new PlaySound("Npcdialog1_e.gerenios_greeting_10")), DIALOG_GERENIOS_GREETING_11(new PlaySound("Npcdialog1_e.gerenios_greeting_11")), DIALOG_GERENIOS_GREETING_12(new PlaySound("Npcdialog1_e.gerenios_greeting_12")), DIALOG_HES_GREETING_1(new PlaySound("Npcdialog1_e.hes_greeting_1")), DIALOG_HES_GREETING_2(new PlaySound("Npcdialog1_e.hes_greeting_2")), DIALOG_HES_GREETING_3(new PlaySound("Npcdialog1_e.hes_greeting_3")), DIALOG_HES_GREETING_4(new PlaySound("Npcdialog1_e.hes_greeting_4")), DIALOG_HES_GREETING_5(new PlaySound("Npcdialog1_e.hes_greeting_5")), DIALOG_HIS_GREETING_1(new PlaySound("Npcdialog1_e.his_greeting_1")), DIALOG_HIS_GREETING_2(new PlaySound("Npcdialog1_e.his_greeting_2")), DIALOG_HIS_GREETING_3(new PlaySound("Npcdialog1_e.his_greeting_3")), DIALOG_HIS_GREETING_4(new PlaySound("Npcdialog1_e.his_greeting_4")), DIALOG_HIS_GREETING_5(new PlaySound("Npcdialog1_e.his_greeting_5")), DIALOG_HOLTER_GREETING_1(new PlaySound("Npcdialog1_e.holter_greeting_1")), DIALOG_HOLTER_GREETING_2(new PlaySound("Npcdialog1_e.holter_greeting_2")), DIALOG_HOLTER_GREETING_3(new PlaySound("Npcdialog1_e.holter_greeting_3")), DIALOG_HOLTER_QUEST_1(new PlaySound("Npcdialog1_e.holter_quest_1")), DIALOG_HOLTER_QUEST_2(new PlaySound("Npcdialog1_e.holter_quest_2")), DIALOG_HOLTER_QUEST_3(new PlaySound("Npcdialog1_e.holter_quest_3")), DIALOG_HOLTER_QUEST_4(new PlaySound("Npcdialog1_e.holter_quest_4")), DIALOG_HOLTER_QUEST_5(new PlaySound("Npcdialog1_e.holter_quest_5")), DIALOG_HOLTER_QUEST_6(new PlaySound("Npcdialog1_e.holter_quest_6")), DIALOG_KALI_GREETING_1(new PlaySound("Npcdialog1_e.kali_greeting_1")), DIALOG_KALI_GREETING_2(new PlaySound("Npcdialog1_e.kali_greeting_2")), DIALOG_KALI_GREETING_3(new PlaySound("Npcdialog1_e.kali_greeting_3")), DIALOG_KALI_GREETING_4(new PlaySound("Npcdialog1_e.kali_greeting_4")), DIALOG_KALI_GREETING_5(new PlaySound("Npcdialog1_e.kali_greeting_5")), DIALOG_KATRINA_GREETING_1(new PlaySound("Npcdialog1_e.katrina_greeting_1")), DIALOG_KATRINA_GREETING_2(new PlaySound("Npcdialog1_e.katrina_greeting_2")), DIALOG_KATRINA_GREETING_3(new PlaySound("Npcdialog1_e.katrina_greeting_3")), DIALOG_KATRINA_GREETING_4(new PlaySound("Npcdialog1_e.katrina_greeting_4")), DIALOG_KATRINA_GREETING_5(new PlaySound("Npcdialog1_e.katrina_greeting_5")), DIALOG_KATRINA_QUEST_1(new PlaySound("Npcdialog1_e.katrina_quest_1")), DIALOG_KATRINA_QUEST_2(new PlaySound("Npcdialog1_e.katrina_quest_2")), DIALOG_LANI_GREETING_1(new PlaySound("Npcdialog1_e.lani_greeting_1")), DIALOG_LANI_GREETING_2(new PlaySound("Npcdialog1_e.lani_greeting_2")), DIALOG_LANI_GREETING_3(new PlaySound("Npcdialog1_e.lani_greeting_3")), DIALOG_LANI_GREETING_4(new PlaySound("Npcdialog1_e.lani_greeting_4")), DIALOG_LANI_GREETING_5(new PlaySound("Npcdialog1_e.lani_greeting_5")), DIALOG_LINEA_GREETING_1(new PlaySound("Npcdialog1_e.linea_greeting_1")), DIALOG_LINEA_GREETING_2(new PlaySound("Npcdialog1_e.linea_greeting_2")), DIALOG_LINEA_GREETING_3(new PlaySound("Npcdialog1_e.linea_greeting_3")), DIALOG_MERMEL_GREETING_1(new PlaySound("Npcdialog1_e.mermel_greeting_1")), DIALOG_MERMEL_GREETING_2(new PlaySound("Npcdialog1_e.mermel_greeting_2")), DIALOG_MERMEL_GREETING_3(new PlaySound("Npcdialog1_e.mermel_greeting_3")), DIALOG_MILIE_GREETING_1(new PlaySound("Npcdialog1_e.milie_greeting_1")), DIALOG_MILIE_GREETING_2(new PlaySound("Npcdialog1_e.milie_greeting_2")), DIALOG_MILIE_GREETING_3(new PlaySound("Npcdialog1_e.milie_greeting_3")), DIALOG_MILIE_GREETING_4(new PlaySound("Npcdialog1_e.milie_greeting_4")), DIALOG_MILIE_GREETING_5(new PlaySound("Npcdialog1_e.milie_greeting_5")), DIALOG_NIKITA_GREETING_1(new PlaySound("Npcdialog1_e.nikita_greeting_1")), DIALOG_NIKITA_GREETING_2(new PlaySound("Npcdialog1_e.nikita_greeting_2")), DIALOG_NIKITA_GREETING_3(new PlaySound("Npcdialog1_e.nikita_greeting_3")), DIALOG_NIKITA_GREETING_4(new PlaySound("Npcdialog1_e.nikita_greeting_4")), DIALOG_NIKITA_GREETING_5(new PlaySound("Npcdialog1_e.nikita_greeting_5")), DIALOG_NIS_GREETING_1(new PlaySound("Npcdialog1_e.nis_greeting_1")), DIALOG_NIS_GREETING_2(new PlaySound("Npcdialog1_e.nis_greeting_2")), DIALOG_NIS_GREETING_3(new PlaySound("Npcdialog1_e.nis_greeting_3")), DIALOG_NIS_GREETING_4(new PlaySound("Npcdialog1_e.nis_greeting_4")), DIALOG_NIS_GREETING_5(new PlaySound("Npcdialog1_e.nis_greeting_5")), DIALOG_NYANGSHIRE_GREETING_1(new PlaySound("Npcdialog1_e.nyangshire_greeting_1")), DIALOG_NYANGSHIRE_GREETING_2(new PlaySound("Npcdialog1_e.nyangshire_greeting_2")), DIALOG_NYANGSHIRE_GREETING_3(new PlaySound("Npcdialog1_e.nyangshire_greeting_3")), DIALOG_RACHEL_GREETING_1(new PlaySound("Npcdialog1_e.rachel_greeting_1")), DIALOG_RACHEL_GREETING_2(new PlaySound("Npcdialog1_e.rachel_greeting_2")), DIALOG_RACHEL_GREETING_3(new PlaySound("Npcdialog1_e.rachel_greeting_3")), DIALOG_RACHEL_GREETING_4(new PlaySound("Npcdialog1_e.rachel_greeting_4")), DIALOG_RACHEL_GREETING_5(new PlaySound("Npcdialog1_e.rachel_greeting_5")), DIALOG_RESED_NPC_GREETING_1(new PlaySound("Npcdialog1_e.resed_npc_greeting_1")), DIALOG_RESED_NPC_GREETING_2(new PlaySound("Npcdialog1_e.resed_npc_greeting_2")), DIALOG_RESED_NPC_GREETING_3(new PlaySound("Npcdialog1_e.resed_npc_greeting_3")), DIALOG_RESED_NPC_GREETING_4(new PlaySound("Npcdialog1_e.resed_npc_greeting_4")), DIALOG_RESED_NPC_GREETING_5(new PlaySound("Npcdialog1_e.resed_npc_greeting_5")), DIALOG_RIBERADO_GREETING_1(new PlaySound("Npcdialog1_e.riberado_greeting_1")), DIALOG_RIBERADO_GREETING_2(new PlaySound("Npcdialog1_e.riberado_greeting_2")), DIALOG_RIBERADO_GREETING_3(new PlaySound("Npcdialog1_e.riberado_greeting_3")), DIALOG_SALVIA_GREETING_1(new PlaySound("Npcdialog1_e.salvia_greeting_1")), DIALOG_SALVIA_GREETING_2(new PlaySound("Npcdialog1_e.salvia_greeting_2")), DIALOG_SALVIA_GREETING_3(new PlaySound("Npcdialog1_e.salvia_greeting_3")), DIALOG_SALVIA_GREETING_4(new PlaySound("Npcdialog1_e.salvia_greeting_4")), DIALOG_SALVIA_GREETING_5(new PlaySound("Npcdialog1_e.salvia_greeting_5")), DIALOG_SEIRA_GREETING_1(new PlaySound("Npcdialog1_e.seira_greeting_1")), DIALOG_SEIRA_GREETING_2(new PlaySound("Npcdialog1_e.seira_greeting_2")), DIALOG_SEIRA_GREETING_3(new PlaySound("Npcdialog1_e.seira_greeting_3")), DIALOG_SEIRA_GREETING_4(new PlaySound("Npcdialog1_e.seira_greeting_4")), DIALOG_SEIRA_GREETING_5(new PlaySound("Npcdialog1_e.seira_greeting_5")), DIALOG_SERA_GREETING_1(new PlaySound("Npcdialog1_e.sera_greeting_1")), DIALOG_SERA_GREETING_2(new PlaySound("Npcdialog1_e.sera_greeting_2")), DIALOG_SERA_GREETING_3(new PlaySound("Npcdialog1_e.sera_greeting_3")), DIALOG_SERA_GREETING_4(new PlaySound("Npcdialog1_e.sera_greeting_4")), DIALOG_SERA_GREETING_5(new PlaySound("Npcdialog1_e.sera_greeting_5")), DIALOG_SERENIA_GREETING_1(new PlaySound("Npcdialog1_e.serenia_greeting_1")), DIALOG_SERENIA_GREETING_2(new PlaySound("Npcdialog1_e.serenia_greeting_2")), DIALOG_SERENIA_GREETING_3(new PlaySound("Npcdialog1_e.serenia_greeting_3")), DIALOG_SERENIA_GREETING_4(new PlaySound("Npcdialog1_e.serenia_greeting_4")), DIALOG_SERENIA_GREETING_5(new PlaySound("Npcdialog1_e.serenia_greeting_5")), DIALOG_SERENIA_GREETING_6(new PlaySound("Npcdialog1_e.serenia_greeting_6")), DIALOG_SERENIA_GREETING_7(new PlaySound("Npcdialog1_e.serenia_greeting_7")), DIALOG_SERENIA_GREETING_8(new PlaySound("Npcdialog1_e.serenia_greeting_8")), DIALOG_SERENIA_GREETING_9(new PlaySound("Npcdialog1_e.serenia_greeting_9")), DIALOG_SERENIA_GREETING_10(new PlaySound("Npcdialog1_e.serenia_greeting_10")), DIALOG_SERENIA_GREETING_11(new PlaySound("Npcdialog1_e.serenia_greeting_11")), DIALOG_SERENIA_GREETING_12(new PlaySound("Npcdialog1_e.serenia_greeting_12")), DIALOG_SERENIA_GREETING_13(new PlaySound("Npcdialog1_e.serenia_greeting_13")), DIALOG_SERENIA_QUEST_1(new PlaySound("Npcdialog1_e.serenia_quest_1")), DIALOG_SERENIA_QUEST_2(new PlaySound("Npcdialog1_e.serenia_quest_2")), DIALOG_SERENIA_QUEST_3(new PlaySound("Npcdialog1_e.serenia_quest_3")), DIALOG_SERENIA_QUEST_4(new PlaySound("Npcdialog1_e.serenia_quest_4")), DIALOG_SERENIA_QUEST_5(new PlaySound("Npcdialog1_e.serenia_quest_5")), DIALOG_SERENIA_QUEST_6(new PlaySound("Npcdialog1_e.serenia_quest_6")), DIALOG_SERENIA_QUEST_7(new PlaySound("Npcdialog1_e.serenia_quest_7")), DIALOG_SERENIA_QUEST_8(new PlaySound("Npcdialog1_e.serenia_quest_8")), DIALOG_SERENIA_QUEST_9(new PlaySound("Npcdialog1_e.serenia_quest_9")), DIALOG_SERENIA_QUEST_10(new PlaySound("Npcdialog1_e.serenia_quest_10")), DIALOG_SERENIA_QUEST_11(new PlaySound("Npcdialog1_e.serenia_quest_11")), DIALOG_SERENIA_QUEST_12(new PlaySound("Npcdialog1_e.serenia_quest_12")), DIALOG_SIS_GREETING_1(new PlaySound("Npcdialog1_e.sis_greeting_1")), DIALOG_SIS_GREETING_2(new PlaySound("Npcdialog1_e.sis_greeting_2")), DIALOG_SIS_GREETING_3(new PlaySound("Npcdialog1_e.sis_greeting_3")), DIALOG_SIS_GREETING_4(new PlaySound("Npcdialog1_e.sis_greeting_4")), DIALOG_SIS_GREETING_5(new PlaySound("Npcdialog1_e.sis_greeting_5")), DIALOG_TASHA_GREETING_1(new PlaySound("Npcdialog1_e.tasha_greeting_1")), DIALOG_TASHA_GREETING_2(new PlaySound("Npcdialog1_e.tasha_greeting_2")), DIALOG_TASHA_GREETING_3(new PlaySound("Npcdialog1_e.tasha_greeting_3")), DIALOG_TRAINEE_GREETING_1(new PlaySound("Npcdialog1_e.trainee_greeting_1")), DIALOG_TRAINEE_GREETING_2(new PlaySound("Npcdialog1_e.trainee_greeting_2")), DIALOG_TRAINEE_GREETING_3(new PlaySound("Npcdialog1_e.trainee_greeting_3")), DIALOG_TRAINEE_GREETING_4(new PlaySound("Npcdialog1_e.trainee_greeting_4")), DIALOG_TRAINEE_GREETING_5(new PlaySound("Npcdialog1_e.trainee_greeting_5")), DIALOG_ZEPIRA_GREETING_1(new PlaySound("Npcdialog1_e.zepira_greeting_1")), DIALOG_ZEPIRA_GREETING_2(new PlaySound("Npcdialog1_e.zepira_greeting_2")), DIALOG_ZEPIRA_GREETING_3(new PlaySound("Npcdialog1_e.zepira_greeting_3")), DIALOG_ZEPIRA_GREETING_4(new PlaySound("Npcdialog1_e.zepira_greeting_4")), DIALOG_ZEPIRA_GREETING_5(new PlaySound("Npcdialog1_e.zepira_greeting_5")), DIALOG_ACELLOPY_GREETING_1(new PlaySound("Npcdialog1_e.acellopy_greeting_1")), DIALOG_ACELLOPY_GREETING_2(new PlaySound("Npcdialog1_e.acellopy_greeting_2")), DIALOG_ACELLOPY_GREETING_3(new PlaySound("Npcdialog1_e.acellopy_greeting_3")), DIALOG_ACELLOPY_QUEST_1(new PlaySound("Npcdialog1_e.acellopy_quest_1")), DIALOG_ACELLOPY_QUEST_2(new PlaySound("Npcdialog1_e.acellopy_quest_2")), DIALOG_ADOLF_GREETING_1(new PlaySound("Npcdialog1_e.adolf_greeting_1")), DIALOG_ADOLF_GREETING_2(new PlaySound("Npcdialog1_e.adolf_greeting_2")), DIALOG_ADOLF_GREETING_3(new PlaySound("Npcdialog1_e.adolf_greeting_3")), DIALOG_ADOLF_GREETING_4(new PlaySound("Npcdialog1_e.adolf_greeting_4")), DIALOG_ADOLF_GREETING_5(new PlaySound("Npcdialog1_e.adolf_greeting_5")), DIALOG_ADONIUS_GREETING_1(new PlaySound("Npcdialog1_e.adonius_greeting_1")), DIALOG_ADONIUS_GREETING_2(new PlaySound("Npcdialog1_e.adonius_greeting_2")), DIALOG_ADONIUS_GREETING_3(new PlaySound("Npcdialog1_e.adonius_greeting_3")), DIALOG_ADONIUS_GREETING_4(new PlaySound("Npcdialog1_e.adonius_greeting_4")), DIALOG_ADONIUS_GREETING_5(new PlaySound("Npcdialog1_e.adonius_greeting_5")), DIALOG_ADONIUS_GREETING_6(new PlaySound("Npcdialog1_e.adonius_greeting_6")), DIALOG_ADONIUS_GREETING_7(new PlaySound("Npcdialog1_e.adonius_greeting_7")), DIALOG_ADONIUS_GREETING_8(new PlaySound("Npcdialog1_e.adonius_greeting_8")), DIALOG_AIOS_GREETING_1(new PlaySound("Npcdialog1_e.aios_greeting_1")), DIALOG_AIOS_GREETING_2(new PlaySound("Npcdialog1_e.aios_greeting_2")), DIALOG_AIOS_GREETING_3(new PlaySound("Npcdialog1_e.aios_greeting_3")), DIALOG_ALICE_GREETING_1(new PlaySound("Npcdialog1_e.alice_greeting_1")), DIALOG_ALICE_GREETING_2(new PlaySound("Npcdialog1_e.alice_greeting_2")), DIALOG_ALICE_GREETING_3(new PlaySound("Npcdialog1_e.alice_greeting_3")), DIALOG_ALICE_GREETING_4(new PlaySound("Npcdialog1_e.alice_greeting_4")), DIALOG_ALICE_GREETING_5(new PlaySound("Npcdialog1_e.alice_greeting_5")), DIALOG_APPLE_GREETING_1(new PlaySound("Npcdialog1_e.apple_greeting_1")), DIALOG_APPLE_GREETING_2(new PlaySound("Npcdialog1_e.apple_greeting_2")), DIALOG_APPLE_GREETING_3(new PlaySound("Npcdialog1_e.apple_greeting_3")), DIALOG_APPLE_GREETING_4(new PlaySound("Npcdialog1_e.apple_greeting_4")), DIALOG_APPLE_GREETING_5(new PlaySound("Npcdialog1_e.apple_greeting_5")), DIALOG_ARODIN_GREETING_1(new PlaySound("Npcdialog1_e.arodin_greeting_1")), DIALOG_ARODIN_GREETING_2(new PlaySound("Npcdialog1_e.arodin_greeting_2")), DIALOG_ARODIN_GREETING_3(new PlaySound("Npcdialog1_e.arodin_greeting_3")), DIALOG_ARODIN_QUEST_1(new PlaySound("Npcdialog1_e.arodin_quest_1")), DIALOG_ARODIN_QUEST_2(new PlaySound("Npcdialog1_e.arodin_quest_2")), DIALOG_BAENEDES_GREETING_1(new PlaySound("Npcdialog1_e.baenedes_greeting_1")), DIALOG_BAENEDES_GREETING_2(new PlaySound("Npcdialog1_e.baenedes_greeting_2")), DIALOG_BAENEDES_GREETING_3(new PlaySound("Npcdialog1_e.baenedes_greeting_3")), DIALOG_BAENEDES_QUEST_1(new PlaySound("Npcdialog1_e.baenedes_quest_1")), DIALOG_BAENEDES_QUEST_2(new PlaySound("Npcdialog1_e.baenedes_quest_2")), DIALOG_BARTON_GREETING_1(new PlaySound("Npcdialog1_e.barton_greeting_1")), DIALOG_BARTON_GREETING_2(new PlaySound("Npcdialog1_e.barton_greeting_2")), DIALOG_BARTON_GREETING_3(new PlaySound("Npcdialog1_e.barton_greeting_3")), DIALOG_BARTON_GREETING_4(new PlaySound("Npcdialog1_e.barton_greeting_4")), DIALOG_BARTON_GREETING_5(new PlaySound("Npcdialog1_e.barton_greeting_5")), DIALOG_BELAS_GREETING_1(new PlaySound("Npcdialog1_e.belas_greeting_1")), DIALOG_BELAS_GREETING_2(new PlaySound("Npcdialog1_e.belas_greeting_2")), DIALOG_BELAS_GREETING_3(new PlaySound("Npcdialog1_e.belas_greeting_3")), DIALOG_BELAS_GREETING_4(new PlaySound("Npcdialog1_e.belas_greeting_4")), DIALOG_BELAS_GREETING_5(new PlaySound("Npcdialog1_e.belas_greeting_5")), DIALOG_BERNSTEIN_BATTLE_1(new PlaySound("Npcdialog1_e.bernstein_battle_1")), DIALOG_BERNSTEIN_BATTLE_2(new PlaySound("Npcdialog1_e.bernstein_battle_2")), DIALOG_BERNSTEIN_BATTLE_3(new PlaySound("Npcdialog1_e.bernstein_battle_3")), DIALOG_BERNSTEIN_BATTLE_4(new PlaySound("Npcdialog1_e.bernstein_battle_4")), DIALOG_BERNSTEIN_BATTLE_5(new PlaySound("Npcdialog1_e.bernstein_battle_5")), DIALOG_BERNSTEIN_BATTLE_6(new PlaySound("Npcdialog1_e.bernstein_battle_6")), DIALOG_BERNSTEIN_BATTLE_7(new PlaySound("Npcdialog1_e.bernstein_battle_7")), DIALOG_BERNSTEIN_BATTLE_8(new PlaySound("Npcdialog1_e.bernstein_battle_8")), DIALOG_BERNSTEIN_BATTLE_9(new PlaySound("Npcdialog1_e.bernstein_battle_9")), DIALOG_BERNSTEIN_BATTLE_10(new PlaySound("Npcdialog1_e.bernstein_battle_10")), DIALOG_BLEAKER_GREETING_1(new PlaySound("Npcdialog1_e.bleaker_greeting_1")), DIALOG_BLEAKER_GREETING_2(new PlaySound("Npcdialog1_e.bleaker_greeting_2")), DIALOG_BLEAKER_GREETING_3(new PlaySound("Npcdialog1_e.bleaker_greeting_3")), DIALOG_BLEAKER_QUEST_1(new PlaySound("Npcdialog1_e.bleaker_quest_1")), DIALOG_BLEAKER_QUEST_2(new PlaySound("Npcdialog1_e.bleaker_quest_2")), DIALOG_BRONK_GREETING_1(new PlaySound("Npcdialog1_e.bronk_greeting_1")), DIALOG_BRONK_GREETING_2(new PlaySound("Npcdialog1_e.bronk_greeting_2")), DIALOG_BRONK_GREETING_3(new PlaySound("Npcdialog1_e.bronk_greeting_3")), DIALOG_BRONP_GREETING_1(new PlaySound("Npcdialog1_e.bronp_greeting_1")), DIALOG_BRONP_GREETING_2(new PlaySound("Npcdialog1_e.bronp_greeting_2")), DIALOG_BRONP_GREETING_3(new PlaySound("Npcdialog1_e.bronp_greeting_3")), DIALOG_CELMA_GREETING_1(new PlaySound("Npcdialog1_e.celma_greeting_1")), DIALOG_CELMA_GREETING_2(new PlaySound("Npcdialog1_e.celma_greeting_2")), DIALOG_CELMA_GREETING_3(new PlaySound("Npcdialog1_e.celma_greeting_3")), DIALOG_CELMA_QUEST_1(new PlaySound("Npcdialog1_e.celma_quest_1")), DIALOG_CELMA_QUEST_2(new PlaySound("Npcdialog1_e.celma_quest_2")), DIALOG_CULLINAS_GREETING_1(new PlaySound("Npcdialog1_e.cullinas_greeting_1")), DIALOG_CULLINAS_GREETING_2(new PlaySound("Npcdialog1_e.cullinas_greeting_2")), DIALOG_CULLINAS_GREETING_3(new PlaySound("Npcdialog1_e.cullinas_greeting_3")), DIALOG_CULLINAS_QUEST_1(new PlaySound("Npcdialog1_e.cullinas_quest_1")), DIALOG_CULLINAS_QUEST_2(new PlaySound("Npcdialog1_e.cullinas_quest_2")), DIALOG_CYPHONA_GREETING_1(new PlaySound("Npcdialog1_e.cyphona_greeting_1")), DIALOG_CYPHONA_GREETING_2(new PlaySound("Npcdialog1_e.cyphona_greeting_2")), DIALOG_CYPHONA_GREETING_3(new PlaySound("Npcdialog1_e.cyphona_greeting_3")), DIALOG_CYPHONA_GREETING_4(new PlaySound("Npcdialog1_e.cyphona_greeting_4")), DIALOG_CYPHONA_GREETING_5(new PlaySound("Npcdialog1_e.cyphona_greeting_5")), DIALOG_DAERONEES_GREETING_1(new PlaySound("Npcdialog1_e.daeronees_greeting_1")), DIALOG_DAERONEES_GREETING_2(new PlaySound("Npcdialog1_e.daeronees_greeting_2")), DIALOG_DAERONEES_GREETING_3(new PlaySound("Npcdialog1_e.daeronees_greeting_3")), DIALOG_DAERONEES_QUEST_1(new PlaySound("Npcdialog1_e.daeronees_quest_1")), DIALOG_DAERONEES_QUEST_2(new PlaySound("Npcdialog1_e.daeronees_quest_2")), DIALOG_DEVIANNE_ASTATI_GREETING_1(new PlaySound("Npcdialog1_e.devianne_astati_greeting_1")), DIALOG_DEVIANNE_ASTATI_GREETING_2(new PlaySound("Npcdialog1_e.devianne_astati_greeting_2")), DIALOG_DEVIANNE_ASTATI_GREETING_3(new PlaySound("Npcdialog1_e.devianne_astati_greeting_3")), DIALOG_EINUS_GREETING_1(new PlaySound("Npcdialog1_e.einus_greeting_1")), DIALOG_EINUS_GREETING_2(new PlaySound("Npcdialog1_e.einus_greeting_2")), DIALOG_EINUS_GREETING_3(new PlaySound("Npcdialog1_e.einus_greeting_3")), DIALOG_EINUS_QUEST_1(new PlaySound("Npcdialog1_e.einus_quest_1")), DIALOG_EINUS_QUEST_2(new PlaySound("Npcdialog1_e.einus_quest_2")), DIALOG_ELLIKIA_GREETING_4(new PlaySound("Npcdialog1_e.ellikia_greeting_4")), DIALOG_ELLIKIA_GREETING_5(new PlaySound("Npcdialog1_e.ellikia_greeting_5")), DIALOG_ELLIKIA_GREETING_6(new PlaySound("Npcdialog1_e.ellikia_greeting_6")), DIALOG_ELLIKIA_GREETING_7(new PlaySound("Npcdialog1_e.ellikia_greeting_7")), DIALOG_ELLIKIA_GREETING_8(new PlaySound("Npcdialog1_e.ellikia_greeting_8")), DIALOG_ELLIYAH_GREETING_1(new PlaySound("Npcdialog1_e.elliyah_greeting_1")), DIALOG_ELLIYAH_GREETING_2(new PlaySound("Npcdialog1_e.elliyah_greeting_2")), DIALOG_ELLIYAH_GREETING_3(new PlaySound("Npcdialog1_e.elliyah_greeting_3")), DIALOG_ELLIYAH_GREETING_4(new PlaySound("Npcdialog1_e.elliyah_greeting_4")), DIALOG_ELLIYAH_GREETING_5(new PlaySound("Npcdialog1_e.elliyah_greeting_5")), DIALOG_ESCAR_GREETING_1(new PlaySound("Npcdialog1_e.escar_greeting_1")), DIALOG_ESCAR_GREETING_2(new PlaySound("Npcdialog1_e.escar_greeting_2")), DIALOG_ESCAR_GREETING_3(new PlaySound("Npcdialog1_e.escar_greeting_3")), DIALOG_ESCAR_QUEST_1(new PlaySound("Npcdialog1_e.escar_quest_1")), DIALOG_ESCAR_QUEST_2(new PlaySound("Npcdialog1_e.escar_quest_2")), DIALOG_GALATEA_GREETING_1(new PlaySound("Npcdialog1_e.galatea_greeting_1")), DIALOG_GALATEA_GREETING_2(new PlaySound("Npcdialog1_e.galatea_greeting_2")), DIALOG_GALATEA_GREETING_3(new PlaySound("Npcdialog1_e.galatea_greeting_3")), DIALOG_GALATEA_QUEST_1(new PlaySound("Npcdialog1_e.galatea_quest_1")), DIALOG_GALATEA_QUEST_2(new PlaySound("Npcdialog1_e.galatea_quest_2")), DIALOG_GEORG_BATTLE_1(new PlaySound("Npcdialog1_e.georg_battle_1")), DIALOG_GEORG_BATTLE_2(new PlaySound("Npcdialog1_e.georg_battle_2")), DIALOG_GEORG_BATTLE_3(new PlaySound("Npcdialog1_e.georg_battle_3")), DIALOG_GEORG_BATTLE_4(new PlaySound("Npcdialog1_e.georg_battle_4")), DIALOG_GEORG_BATTLE_5(new PlaySound("Npcdialog1_e.georg_battle_5")), DIALOG_GEORG_BATTLE_6(new PlaySound("Npcdialog1_e.georg_battle_6")), DIALOG_GEORG_BATTLE_7(new PlaySound("Npcdialog1_e.georg_battle_7")), DIALOG_GEORG_BATTLE_8(new PlaySound("Npcdialog1_e.georg_battle_8")), DIALOG_GEORG_BATTLE_9(new PlaySound("Npcdialog1_e.georg_battle_9")), DIALOG_GEORG_BATTLE_10(new PlaySound("Npcdialog1_e.georg_battle_10")), DIALOG_GIGUNT_GREETING_1(new PlaySound("Npcdialog1_e.gigunt_greeting_1")), DIALOG_GIGUNT_GREETING_2(new PlaySound("Npcdialog1_e.gigunt_greeting_2")), DIALOG_GIGUNT_GREETING_3(new PlaySound("Npcdialog1_e.gigunt_greeting_3")), DIALOG_GIGUNT_QUEST_1(new PlaySound("Npcdialog1_e.gigunt_quest_1")), DIALOG_GIGUNT_QUEST_2(new PlaySound("Npcdialog1_e.gigunt_quest_2")), DIALOG_GLENKINCHIE_GREETING_1(new PlaySound("Npcdialog1_e.glenkinchie_greeting_1")), DIALOG_GLENKINCHIE_GREETING_2(new PlaySound("Npcdialog1_e.glenkinchie_greeting_2")), DIALOG_GLENKINCHIE_GREETING_3(new PlaySound("Npcdialog1_e.glenkinchie_greeting_3")), DIALOG_GLENKINCHIE_GREETING_4(new PlaySound("Npcdialog1_e.glenkinchie_greeting_4")), DIALOG_GLENKINCHIE_GREETING_5(new PlaySound("Npcdialog1_e.glenkinchie_greeting_5")), DIALOG_HAYUK_GREETING_1(new PlaySound("Npcdialog1_e.hayuk_greeting_1")), DIALOG_HAYUK_GREETING_2(new PlaySound("Npcdialog1_e.hayuk_greeting_2")), DIALOG_HAYUK_GREETING_3(new PlaySound("Npcdialog1_e.hayuk_greeting_3")), DIALOG_HAYUK_GREETING_4(new PlaySound("Npcdialog1_e.hayuk_greeting_4")), DIALOG_HAYUK_GREETING_5(new PlaySound("Npcdialog1_e.hayuk_greeting_5")), DIALOG_HURAK_GREETING_1(new PlaySound("Npcdialog1_e.hurak_greeting_1")), DIALOG_HURAK_GREETING_2(new PlaySound("Npcdialog1_e.hurak_greeting_2")), DIALOG_HURAK_GREETING_3(new PlaySound("Npcdialog1_e.hurak_greeting_3")), DIALOG_HURAK_GREETING_4(new PlaySound("Npcdialog1_e.hurak_greeting_4")), DIALOG_HURAK_GREETING_5(new PlaySound("Npcdialog1_e.hurak_greeting_5")), DIALOG_IRIS_GREETING_1(new PlaySound("Npcdialog1_e.iris_greeting_1")), DIALOG_IRIS_GREETING_2(new PlaySound("Npcdialog1_e.iris_greeting_2")), DIALOG_IRIS_GREETING_3(new PlaySound("Npcdialog1_e.iris_greeting_3")), DIALOG_IRIS_QUEST_1(new PlaySound("Npcdialog1_e.iris_quest_1")), DIALOG_IRIS_QUEST_2(new PlaySound("Npcdialog1_e.iris_quest_2")), DIALOG_KALINTA_GREETING_1(new PlaySound("Npcdialog1_e.kalinta_greeting_1")), DIALOG_KALINTA_GREETING_2(new PlaySound("Npcdialog1_e.kalinta_greeting_2")), DIALOG_KALINTA_GREETING_3(new PlaySound("Npcdialog1_e.kalinta_greeting_3")), DIALOG_KALINTA_QUEST_1(new PlaySound("Npcdialog1_e.kalinta_quest_1")), DIALOG_KALINTA_QUEST_2(new PlaySound("Npcdialog1_e.kalinta_quest_2")), DIALOG_KAROYD_GREETING_1(new PlaySound("Npcdialog1_e.karoyd_greeting_1")), DIALOG_KAROYD_GREETING_2(new PlaySound("Npcdialog1_e.karoyd_greeting_2")), DIALOG_KAROYD_GREETING_3(new PlaySound("Npcdialog1_e.karoyd_greeting_3")), DIALOG_KARREL_VASPER_GREETING_1(new PlaySound("Npcdialog1_e.karrel_vasper_greeting_1")), DIALOG_KARREL_VASPER_GREETING_2(new PlaySound("Npcdialog1_e.karrel_vasper_greeting_2")), DIALOG_KARREL_VASPER_GREETING_3(new PlaySound("Npcdialog1_e.karrel_vasper_greeting_3")), DIALOG_KARREL_VASPER_GREETING_4(new PlaySound("Npcdialog1_e.karrel_vasper_greeting_4")), DIALOG_KARREL_VASPER_GREETING_5(new PlaySound("Npcdialog1_e.karrel_vasper_greeting_5")), DIALOG_KARREL_VASPER_GREETING_6(new PlaySound("Npcdialog1_e.karrel_vasper_greeting_6")), DIALOG_KARREL_VASPER_GREETING_7(new PlaySound("Npcdialog1_e.karrel_vasper_greeting_7")), DIALOG_KARREL_VASPER_GREETING_8(new PlaySound("Npcdialog1_e.karrel_vasper_greeting_8")), DIALOG_KASMAN_GREETING_1(new PlaySound("Npcdialog1_e.kasman_greeting_1")), DIALOG_KASMAN_GREETING_2(new PlaySound("Npcdialog1_e.kasman_greeting_2")), DIALOG_KASMAN_GREETING_3(new PlaySound("Npcdialog1_e.kasman_greeting_3")), DIALOG_KASMAN_QUEST_1(new PlaySound("Npcdialog1_e.kasman_quest_1")), DIALOG_KASMAN_QUEST_2(new PlaySound("Npcdialog1_e.kasman_quest_2")), DIALOG_KAYSIA_GREETING_1(new PlaySound("Npcdialog1_e.kaysia_greeting_1")), DIALOG_KAYSIA_GREETING_2(new PlaySound("Npcdialog1_e.kaysia_greeting_2")), DIALOG_KAYSIA_GREETING_3(new PlaySound("Npcdialog1_e.kaysia_greeting_3")), DIALOG_KAYSIA_GREETING_4(new PlaySound("Npcdialog1_e.kaysia_greeting_4")), DIALOG_KAYSIA_GREETING_5(new PlaySound("Npcdialog1_e.kaysia_greeting_5")), DIALOG_KELBIM_BATTLE_1(new PlaySound("Npcdialog1_e.kelbim_battle_1")), DIALOG_KELBIM_BATTLE_2(new PlaySound("Npcdialog1_e.kelbim_battle_2")), DIALOG_KELBIM_BATTLE_3(new PlaySound("Npcdialog1_e.kelbim_battle_3")), DIALOG_KELBIM_BATTLE_4(new PlaySound("Npcdialog1_e.kelbim_battle_4")), DIALOG_KELBIM_BATTLE_5(new PlaySound("Npcdialog1_e.kelbim_battle_5")), DIALOG_KLUTO_GREETING_1(new PlaySound("Npcdialog1_e.kluto_greeting_1")), DIALOG_KLUTO_GREETING_2(new PlaySound("Npcdialog1_e.kluto_greeting_2")), DIALOG_KLUTO_GREETING_3(new PlaySound("Npcdialog1_e.kluto_greeting_3")), DIALOG_KLUTO_GREETING_4(new PlaySound("Npcdialog1_e.kluto_greeting_4")), DIALOG_KLUTO_GREETING_5(new PlaySound("Npcdialog1_e.kluto_greeting_5")), DIALOG_KLUTO_GREETING_6(new PlaySound("Npcdialog1_e.kluto_greeting_6")), DIALOG_KLUTO_GREETING_7(new PlaySound("Npcdialog1_e.kluto_greeting_7")), DIALOG_KLUTO_GREETING_8(new PlaySound("Npcdialog1_e.kluto_greeting_8")), DIALOG_LAFFIAN_GREETING_1(new PlaySound("Npcdialog1_e.laffian_greeting_1")), DIALOG_LAFFIAN_GREETING_2(new PlaySound("Npcdialog1_e.laffian_greeting_2")), DIALOG_LAFFIAN_GREETING_3(new PlaySound("Npcdialog1_e.laffian_greeting_3")), DIALOG_LAFFIAN_GREETING_4(new PlaySound("Npcdialog1_e.laffian_greeting_4")), DIALOG_LAFFIAN_GREETING_5(new PlaySound("Npcdialog1_e.laffian_greeting_5")), DIALOG_LANSIA_GREETING_1(new PlaySound("Npcdialog1_e.lansia_greeting_1")), DIALOG_LANSIA_GREETING_2(new PlaySound("Npcdialog1_e.lansia_greeting_2")), DIALOG_LANSIA_GREETING_3(new PlaySound("Npcdialog1_e.lansia_greeting_3")), DIALOG_LEVIAN_GREETING_1(new PlaySound("Npcdialog1_e.levian_greeting_1")), DIALOG_LEVIAN_GREETING_2(new PlaySound("Npcdialog1_e.levian_greeting_2")), DIALOG_LEVIAN_GREETING_3(new PlaySound("Npcdialog1_e.levian_greeting_3")), DIALOG_LEVIAN_QUEST_1(new PlaySound("Npcdialog1_e.levian_quest_1")), DIALOG_LEVIAN_QUEST_2(new PlaySound("Npcdialog1_e.levian_quest_2")), DIALOG_LYANN_GREETING_1(new PlaySound("Npcdialog1_e.lyann_greeting_1")), DIALOG_LYANN_GREETING_2(new PlaySound("Npcdialog1_e.lyann_greeting_2")), DIALOG_LYANN_GREETING_3(new PlaySound("Npcdialog1_e.lyann_greeting_3")), DIALOG_LYANN_QUEST_1(new PlaySound("Npcdialog1_e.lyann_quest_1")), DIALOG_LYANN_QUEST_2(new PlaySound("Npcdialog1_e.lyann_quest_2")), DIALOG_M_1GUNDANJANG_BATTLE_1(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_1")), DIALOG_M_1GUNDANJANG_BATTLE_2(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_2")), DIALOG_M_1GUNDANJANG_BATTLE_3(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_3")), DIALOG_M_1GUNDANJANG_BATTLE_4(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_4")), DIALOG_M_1GUNDANJANG_BATTLE_5(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_5")), DIALOG_M_1GUNDANJANG_BATTLE_6(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_6")), DIALOG_M_1GUNDANJANG_BATTLE_7(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_7")), DIALOG_M_1GUNDANJANG_BATTLE_8(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_8")), DIALOG_M_1GUNDANJANG_BATTLE_9(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_9")), DIALOG_M_1GUNDANJANG_BATTLE_10(new PlaySound("Npcdialog1_e.m_1gundanjang_battle_10")), DIALOG_M_2GUNDANJANG_BATTLE_1(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_1")), DIALOG_M_2GUNDANJANG_BATTLE_2(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_2")), DIALOG_M_2GUNDANJANG_BATTLE_3(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_3")), DIALOG_M_2GUNDANJANG_BATTLE_4(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_4")), DIALOG_M_2GUNDANJANG_BATTLE_5(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_5")), DIALOG_M_2GUNDANJANG_BATTLE_6(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_6")), DIALOG_M_2GUNDANJANG_BATTLE_7(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_7")), DIALOG_M_2GUNDANJANG_BATTLE_8(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_8")), DIALOG_M_2GUNDANJANG_BATTLE_9(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_9")), DIALOG_M_2GUNDANJANG_BATTLE_10(new PlaySound("Npcdialog1_e.m_2gundanjang_battle_10")), DIALOG_M_3GUNDANJANG_BATTLE_1(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_1")), DIALOG_M_3GUNDANJANG_BATTLE_2(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_2")), DIALOG_M_3GUNDANJANG_BATTLE_3(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_3")), DIALOG_M_3GUNDANJANG_BATTLE_4(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_4")), DIALOG_M_3GUNDANJANG_BATTLE_5(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_5")), DIALOG_M_3GUNDANJANG_BATTLE_6(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_6")), DIALOG_M_3GUNDANJANG_BATTLE_7(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_7")), DIALOG_M_3GUNDANJANG_BATTLE_8(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_8")), DIALOG_M_3GUNDANJANG_BATTLE_9(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_9")), DIALOG_M_3GUNDANJANG_BATTLE_10(new PlaySound("Npcdialog1_e.m_3gundanjang_battle_10")), DIALOG_M_4GUNDANJANG_BATTLE_1(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_1")), DIALOG_M_4GUNDANJANG_BATTLE_2(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_2")), DIALOG_M_4GUNDANJANG_BATTLE_3(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_3")), DIALOG_M_4GUNDANJANG_BATTLE_4(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_4")), DIALOG_M_4GUNDANJANG_BATTLE_5(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_5")), DIALOG_M_4GUNDANJANG_BATTLE_6(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_6")), DIALOG_M_4GUNDANJANG_BATTLE_7(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_7")), DIALOG_M_4GUNDANJANG_BATTLE_8(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_8")), DIALOG_M_4GUNDANJANG_BATTLE_9(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_9")), DIALOG_M_4GUNDANJANG_BATTLE_10(new PlaySound("Npcdialog1_e.m_4gundanjang_battle_10")), DIALOG_M_5GUNDANJANG_BATTLE_1(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_1")), DIALOG_M_5GUNDANJANG_BATTLE_2(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_2")), DIALOG_M_5GUNDANJANG_BATTLE_3(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_3")), DIALOG_M_5GUNDANJANG_BATTLE_4(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_4")), DIALOG_M_5GUNDANJANG_BATTLE_5(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_5")), DIALOG_M_5GUNDANJANG_BATTLE_6(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_6")), DIALOG_M_5GUNDANJANG_BATTLE_7(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_7")), DIALOG_M_5GUNDANJANG_BATTLE_8(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_8")), DIALOG_M_5GUNDANJANG_BATTLE_9(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_9")), DIALOG_M_5GUNDANJANG_BATTLE_10(new PlaySound("Npcdialog1_e.m_5gundanjang_battle_10")), DIALOG_M_6GUNDANJANG_BATTLE_1(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_1")), DIALOG_M_6GUNDANJANG_BATTLE_2(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_2")), DIALOG_M_6GUNDANJANG_BATTLE_3(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_3")), DIALOG_M_6GUNDANJANG_BATTLE_4(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_4")), DIALOG_M_6GUNDANJANG_BATTLE_5(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_5")), DIALOG_M_6GUNDANJANG_BATTLE_6(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_6")), DIALOG_M_6GUNDANJANG_BATTLE_7(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_7")), DIALOG_M_6GUNDANJANG_BATTLE_8(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_8")), DIALOG_M_6GUNDANJANG_BATTLE_9(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_9")), DIALOG_M_6GUNDANJANG_BATTLE_10(new PlaySound("Npcdialog1_e.m_6gundanjang_battle_10")), DIALOG_M_7GUNDANJANG_BATTLE_1(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_1")), DIALOG_M_7GUNDANJANG_BATTLE_2(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_2")), DIALOG_M_7GUNDANJANG_BATTLE_3(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_3")), DIALOG_M_7GUNDANJANG_BATTLE_4(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_4")), DIALOG_M_7GUNDANJANG_BATTLE_5(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_5")), DIALOG_M_7GUNDANJANG_BATTLE_6(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_6")), DIALOG_M_7GUNDANJANG_BATTLE_7(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_7")), DIALOG_M_7GUNDANJANG_BATTLE_8(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_8")), DIALOG_M_7GUNDANJANG_BATTLE_9(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_9")), DIALOG_M_7GUNDANJANG_BATTLE_10(new PlaySound("Npcdialog1_e.m_7gundanjang_battle_10")), DIALOG_M_8GUNDANJANG_BATTLE_1(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_1")), DIALOG_M_8GUNDANJANG_BATTLE_2(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_2")), DIALOG_M_8GUNDANJANG_BATTLE_3(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_3")), DIALOG_M_8GUNDANJANG_BATTLE_4(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_4")), DIALOG_M_8GUNDANJANG_BATTLE_5(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_5")), DIALOG_M_8GUNDANJANG_BATTLE_6(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_6")), DIALOG_M_8GUNDANJANG_BATTLE_7(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_7")), DIALOG_M_8GUNDANJANG_BATTLE_8(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_8")), DIALOG_M_8GUNDANJANG_BATTLE_9(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_9")), DIALOG_M_8GUNDANJANG_BATTLE_10(new PlaySound("Npcdialog1_e.m_8gundanjang_battle_10")), DIALOG_MARSDEN_GREETING_1(new PlaySound("Npcdialog1_e.marsden_greeting_1")), DIALOG_MARSDEN_GREETING_2(new PlaySound("Npcdialog1_e.marsden_greeting_2")), DIALOG_MARSDEN_GREETING_3(new PlaySound("Npcdialog1_e.marsden_greeting_3")), DIALOG_MARSDEN_QUEST_1(new PlaySound("Npcdialog1_e.marsden_quest_1")), DIALOG_MARSDEN_QUEST_2(new PlaySound("Npcdialog1_e.marsden_quest_2")), DIALOG_MOKE_GREETING_1(new PlaySound("Npcdialog1_e.moke_greeting_1")), DIALOG_MOKE_GREETING_2(new PlaySound("Npcdialog1_e.moke_greeting_2")), DIALOG_MOKE_GREETING_3(new PlaySound("Npcdialog1_e.moke_greeting_3")), DIALOG_MOKE_QUEST_1(new PlaySound("Npcdialog1_e.moke_quest_1")), DIALOG_MOKE_QUEST_2(new PlaySound("Npcdialog1_e.moke_quest_2")), DIALOG_NELL_GREETING_1(new PlaySound("Npcdialog1_e.nell_greeting_1")), DIALOG_NELL_GREETING_2(new PlaySound("Npcdialog1_e.nell_greeting_2")), DIALOG_NELL_GREETING_3(new PlaySound("Npcdialog1_e.nell_greeting_3")), DIALOG_NELL_QUEST_1(new PlaySound("Npcdialog1_e.nell_quest_1")), DIALOG_NELL_QUEST_2(new PlaySound("Npcdialog1_e.nell_quest_2")), DIALOG_NESTLE_GREETING_1(new PlaySound("Npcdialog1_e.nestle_greeting_1")), DIALOG_NESTLE_GREETING_2(new PlaySound("Npcdialog1_e.nestle_greeting_2")), DIALOG_NESTLE_GREETING_3(new PlaySound("Npcdialog1_e.nestle_greeting_3")), DIALOG_NESTLE_QUEST_1(new PlaySound("Npcdialog1_e.nestle_quest_1")), DIALOG_NESTLE_QUEST_2(new PlaySound("Npcdialog1_e.nestle_quest_2")), DIALOG_NETI_GREETING_1(new PlaySound("Npcdialog1_e.neti_greeting_1")), DIALOG_NETI_GREETING_2(new PlaySound("Npcdialog1_e.neti_greeting_2")), DIALOG_NETI_GREETING_3(new PlaySound("Npcdialog1_e.neti_greeting_3")), DIALOG_NETI_GREETING_4(new PlaySound("Npcdialog1_e.neti_greeting_4")), DIALOG_NETI_GREETING_5(new PlaySound("Npcdialog1_e.neti_greeting_5")), DIALOG_NETI_GREETING_6(new PlaySound("Npcdialog1_e.neti_greeting_6")), DIALOG_NORMAN_GREETING_1(new PlaySound("Npcdialog1_e.norman_greeting_1")), DIALOG_NORMAN_GREETING_2(new PlaySound("Npcdialog1_e.norman_greeting_2")), DIALOG_NORMAN_GREETING_3(new PlaySound("Npcdialog1_e.norman_greeting_3")), DIALOG_NORMAN_QUEST_1(new PlaySound("Npcdialog1_e.norman_quest_1")), DIALOG_NORMAN_QUEST_2(new PlaySound("Npcdialog1_e.norman_quest_2")), DIALOG_POESIA_GREETING_1(new PlaySound("Npcdialog1_e.poesia_greeting_1")), DIALOG_POESIA_GREETING_2(new PlaySound("Npcdialog1_e.poesia_greeting_2")), DIALOG_POESIA_GREETING_3(new PlaySound("Npcdialog1_e.poesia_greeting_3")), DIALOG_POESIA_QUEST_1(new PlaySound("Npcdialog1_e.poesia_quest_1")), DIALOG_POESIA_QUEST_2(new PlaySound("Npcdialog1_e.poesia_quest_2")), DIALOG_RAMINAY_GREETING_1(new PlaySound("Npcdialog1_e.raminay_greeting_1")), DIALOG_RAMINAY_GREETING_2(new PlaySound("Npcdialog1_e.raminay_greeting_2")), DIALOG_RAMINAY_GREETING_3(new PlaySound("Npcdialog1_e.raminay_greeting_3")), DIALOG_RAMINAY_QUEST_1(new PlaySound("Npcdialog1_e.raminay_quest_1")), DIALOG_RAMINAY_QUEST_2(new PlaySound("Npcdialog1_e.raminay_quest_2")), DIALOG_RAMOS_GREETING_1(new PlaySound("Npcdialog1_e.ramos_greeting_1")), DIALOG_RAMOS_GREETING_2(new PlaySound("Npcdialog1_e.ramos_greeting_2")), DIALOG_RAMOS_GREETING_3(new PlaySound("Npcdialog1_e.ramos_greeting_3")), DIALOG_RAMOS_QUEST_1(new PlaySound("Npcdialog1_e.ramos_quest_1")), DIALOG_RAMOS_QUEST_2(new PlaySound("Npcdialog1_e.ramos_quest_2")), DIALOG_RAUT_GREETING_1(new PlaySound("Npcdialog1_e.raut_greeting_1")), DIALOG_RAUT_GREETING_2(new PlaySound("Npcdialog1_e.raut_greeting_2")), DIALOG_RAUT_GREETING_3(new PlaySound("Npcdialog1_e.raut_greeting_3")), DIALOG_RAUT_QUEST_1(new PlaySound("Npcdialog1_e.raut_quest_1")), DIALOG_RAUT_QUEST_2(new PlaySound("Npcdialog1_e.raut_quest_2")), DIALOG_RHODIELL_GREETING_1(new PlaySound("Npcdialog1_e.rhodiell_greeting_1")), DIALOG_RHODIELL_GREETING_2(new PlaySound("Npcdialog1_e.rhodiell_greeting_2")), DIALOG_RHODIELL_GREETING_3(new PlaySound("Npcdialog1_e.rhodiell_greeting_3")), DIALOG_RHODIELL_QUEST_1(new PlaySound("Npcdialog1_e.rhodiell_quest_1")), DIALOG_RHODIELL_QUEST_2(new PlaySound("Npcdialog1_e.rhodiell_quest_2")), DIALOG_ROGEN_GREETING_1(new PlaySound("Npcdialog1_e.rogen_greeting_1")), DIALOG_ROGEN_GREETING_2(new PlaySound("Npcdialog1_e.rogen_greeting_2")), DIALOG_ROGEN_GREETING_3(new PlaySound("Npcdialog1_e.rogen_greeting_3")), DIALOG_ROGEN_QUEST_1(new PlaySound("Npcdialog1_e.rogen_quest_1")), DIALOG_ROGEN_QUEST_2(new PlaySound("Npcdialog1_e.rogen_quest_2")), DIALOG_SHERRY_GREETING_1(new PlaySound("Npcdialog1_e.sherry_greeting_1")), DIALOG_SHERRY_GREETING_2(new PlaySound("Npcdialog1_e.sherry_greeting_2")), DIALOG_SHERRY_GREETING_3(new PlaySound("Npcdialog1_e.sherry_greeting_3")), DIALOG_SHERRY_GREETING_4(new PlaySound("Npcdialog1_e.sherry_greeting_4")), DIALOG_SHERRY_GREETING_5(new PlaySound("Npcdialog1_e.sherry_greeting_5")), DIALOG_SHUBAIN_GREETING_1(new PlaySound("Npcdialog1_e.shubain_greeting_1")), DIALOG_SHUBAIN_GREETING_2(new PlaySound("Npcdialog1_e.shubain_greeting_2")), DIALOG_SHUBAIN_GREETING_3(new PlaySound("Npcdialog1_e.shubain_greeting_3")), DIALOG_SHUBAIN_QUEST_1(new PlaySound("Npcdialog1_e.shubain_quest_1")), DIALOG_SHUBAIN_QUEST_2(new PlaySound("Npcdialog1_e.shubain_quest_2")), DIALOG_SIONE_GREETING_1(new PlaySound("Npcdialog1_e.sione_greeting_1")), DIALOG_SIONE_GREETING_2(new PlaySound("Npcdialog1_e.sione_greeting_2")), DIALOG_SIONE_GREETING_3(new PlaySound("Npcdialog1_e.sione_greeting_3")), DIALOG_SIONE_QUEST_1(new PlaySound("Npcdialog1_e.sione_quest_1")), DIALOG_SIONE_QUEST_2(new PlaySound("Npcdialog1_e.sione_quest_2")), DIALOG_SUMARI_GREETING_1(new PlaySound("Npcdialog1_e.sumari_greeting_1")), DIALOG_SUMARI_GREETING_2(new PlaySound("Npcdialog1_e.sumari_greeting_2")), DIALOG_SUMARI_GREETING_3(new PlaySound("Npcdialog1_e.sumari_greeting_3")), DIALOG_TALBOT_GREETING_1(new PlaySound("Npcdialog1_e.talbot_greeting_1")), DIALOG_TALBOT_GREETING_2(new PlaySound("Npcdialog1_e.talbot_greeting_2")), DIALOG_TALBOT_GREETING_3(new PlaySound("Npcdialog1_e.talbot_greeting_3")), DIALOG_TALBOT_QUEST_1(new PlaySound("Npcdialog1_e.talbot_quest_1")), DIALOG_TALBOT_QUEST_2(new PlaySound("Npcdialog1_e.talbot_quest_2")), DIALOG_UMOS_GREETING_1(new PlaySound("Npcdialog1_e.umos_greeting_1")), DIALOG_UMOS_GREETING_2(new PlaySound("Npcdialog1_e.umos_greeting_2")), DIALOG_UMOS_GREETING_3(new PlaySound("Npcdialog1_e.umos_greeting_3")), DIALOG_UMOS_QUEST_1(new PlaySound("Npcdialog1_e.umos_quest_1")), DIALOG_UMOS_QUEST_2(new PlaySound("Npcdialog1_e.umos_quest_2")), DIALOG_XENOS_GREETING_1(new PlaySound("Npcdialog1_e.xenos_greeting_1")), DIALOG_XENOS_GREETING_2(new PlaySound("Npcdialog1_e.xenos_greeting_2")), DIALOG_XENOS_GREETING_3(new PlaySound("Npcdialog1_e.xenos_greeting_3")), DIALOG_XENOS_QUEST_1(new PlaySound("Npcdialog1_e.xenos_quest_1")), DIALOG_XENOS_QUEST_2(new PlaySound("Npcdialog1_e.xenos_quest_2")), DIALOG_YENICHE_GREETING_1(new PlaySound("Npcdialog1_e.yeniche_greeting_1")), DIALOG_YENICHE_GREETING_2(new PlaySound("Npcdialog1_e.yeniche_greeting_2")), DIALOG_YENICHE_GREETING_3(new PlaySound("Npcdialog1_e.yeniche_greeting_3")), DIALOG_YENICHE_GREETING_4(new PlaySound("Npcdialog1_e.yeniche_greeting_4")), DIALOG_YENICHE_GREETING_5(new PlaySound("Npcdialog1_e.yeniche_greeting_5")), DIALOG_YENICHE_GREETING_6(new PlaySound("Npcdialog1_e.yeniche_greeting_6")), DIALOG_YENICHE_GREETING_7(new PlaySound("Npcdialog1_e.yeniche_greeting_7")), DIALOG_YENICHE_GREETING_8(new PlaySound("Npcdialog1_e.yeniche_greeting_8")), DIALOG_YUYURIA_GREETING_1(new PlaySound("Npcdialog1_e.yuyuria_greeting_1")), DIALOG_YUYURIA_GREETING_2(new PlaySound("Npcdialog1_e.yuyuria_greeting_2")), DIALOG_YUYURIA_GREETING_3(new PlaySound("Npcdialog1_e.yuyuria_greeting_3")), DIALOG_YUYURIA_GREETING_4(new PlaySound("Npcdialog1_e.yuyuria_greeting_4")), DIALOG_YUYURIA_GREETING_5(new PlaySound("Npcdialog1_e.yuyuria_greeting_5")), DIALOG_ANGORA_QUEST_1(new PlaySound("Npcdialog1_e.angora_quest_1")), DIALOG_ANGORA_QUEST_2(new PlaySound("Npcdialog1_e.angora_quest_2")), DIALOG_ANGORA_QUEST_3(new PlaySound("Npcdialog1_e.angora_quest_3")), DIALOG_ATTITUDE_GREETING_1(new PlaySound("Npcdialog1_e.attitude_greeting_1")), DIALOG_ATTITUDE_GREETING_2(new PlaySound("Npcdialog1_e.attitude_greeting_2")), DIALOG_ATTITUDE_GREETING_3(new PlaySound("Npcdialog1_e.attitude_greeting_3")), DIALOG_ATTITUDE_GREETING_4(new PlaySound("Npcdialog1_e.attitude_greeting_4")), DIALOG_ATTITUDE_GREETING_5(new PlaySound("Npcdialog1_e.attitude_greeting_5")), DIALOG_BRODIEN_GREETING_1(new PlaySound("Npcdialog1_e.brodien_greeting_1")), DIALOG_BRODIEN_GREETING_2(new PlaySound("Npcdialog1_e.brodien_greeting_2")), DIALOG_BRODIEN_INZONE_1(new PlaySound("Npcdialog1_e.brodien_inzone_1")), DIALOG_BRODIEN_INZONE_2(new PlaySound("Npcdialog1_e.brodien_inzone_2")), DIALOG_BRODIEN_INZONE_3(new PlaySound("Npcdialog1_e.brodien_inzone_3")), DIALOG_DITONS_INDICATE_1(new PlaySound("Npcdialog1_e.ditons_indicate_1")), DIALOG_DITONS_INDICATE_2(new PlaySound("Npcdialog1_e.ditons_indicate_2")), DIALOG_DITONS_INDICATE_3(new PlaySound("Npcdialog1_e.ditons_indicate_3")), DIALOG_DITONS_INDICATE_4(new PlaySound("Npcdialog1_e.ditons_indicate_4")), DIALOG_DITONS_INDICATE_5(new PlaySound("Npcdialog1_e.ditons_indicate_5")), DIALOG_DITONS_QUEST_1(new PlaySound("Npcdialog1_e.ditons_quest_1")), DIALOG_DITONS_QUEST_2(new PlaySound("Npcdialog1_e.ditons_quest_2")), DIALOG_DITONS_QUEST_3(new PlaySound("Npcdialog1_e.ditons_quest_3")), DIALOG_DITONS_QUEST_4(new PlaySound("Npcdialog1_e.ditons_quest_4")), DIALOG_DITONS_QUEST_5(new PlaySound("Npcdialog1_e.ditons_quest_5")), DIALOG_DITONS_QUEST_6(new PlaySound("Npcdialog1_e.ditons_quest_6")), DIALOG_DITONS_QUEST_7(new PlaySound("Npcdialog1_e.ditons_quest_7")), DIALOG_DITONS_QUEST_8(new PlaySound("Npcdialog1_e.ditons_quest_8")), DIALOG_DITONS_QUEST_9(new PlaySound("Npcdialog1_e.ditons_quest_9")), DIALOG_DITONS_QUEST_10(new PlaySound("Npcdialog1_e.ditons_quest_10")), DIALOG_DITONS_QUEST_11(new PlaySound("Npcdialog1_e.ditons_quest_11")), DIALOG_DITONS_QUEST_12(new PlaySound("Npcdialog1_e.ditons_quest_12")), DIALOG_DITONS_QUEST_13(new PlaySound("Npcdialog1_e.ditons_quest_13")), DIALOG_DITONS_QUEST_14(new PlaySound("Npcdialog1_e.ditons_quest_14")), DIALOG_DITONS_QUEST_15(new PlaySound("Npcdialog1_e.ditons_quest_15")), DIALOG_DITONS_QUEST_16(new PlaySound("Npcdialog1_e.ditons_quest_16")), DIALOG_DITONS_QUEST_17(new PlaySound("Npcdialog1_e.ditons_quest_17")), DIALOG_DITONS_QUEST_18(new PlaySound("Npcdialog1_e.ditons_quest_18")), DIALOG_DITONS_QUEST_19(new PlaySound("Npcdialog1_e.ditons_quest_19")), DIALOG_DITONS_QUEST_20(new PlaySound("Npcdialog1_e.ditons_quest_20")), DIALOG_DITONS_QUEST_21(new PlaySound("Npcdialog1_e.ditons_quest_21")), DIALOG_DITONS_QUEST_22(new PlaySound("Npcdialog1_e.ditons_quest_22")), DIALOG_DITONS_QUEST_23(new PlaySound("Npcdialog1_e.ditons_quest_23")), DIALOG_DITONS_QUEST_24(new PlaySound("Npcdialog1_e.ditons_quest_24")), DIALOG_DITONS_QUEST_25(new PlaySound("Npcdialog1_e.ditons_quest_25")), DIALOG_DITONS_QUEST_26(new PlaySound("Npcdialog1_e.ditons_quest_26")), DIALOG_DITONS_QUEST_27(new PlaySound("Npcdialog1_e.ditons_quest_27")), DIALOG_DITONS_QUEST_28(new PlaySound("Npcdialog1_e.ditons_quest_28")), DIALOG_DITONS_QUEST_29(new PlaySound("Npcdialog1_e.ditons_quest_29")), DIALOG_DITONS_QUEST_30(new PlaySound("Npcdialog1_e.ditons_quest_30")), DIALOG_DITONS_QUEST_31(new PlaySound("Npcdialog1_e.ditons_quest_31")), DIALOG_DITONS_QUEST_32(new PlaySound("Npcdialog1_e.ditons_quest_32")), DIALOG_DITONS_QUEST_33(new PlaySound("Npcdialog1_e.ditons_quest_33")), DIALOG_DITONS_QUEST_34(new PlaySound("Npcdialog1_e.ditons_quest_34")), DIALOG_DITONS_QUEST_35(new PlaySound("Npcdialog1_e.ditons_quest_35")), DIALOG_DITONS_QUEST_36(new PlaySound("Npcdialog1_e.ditons_quest_36")), DIALOG_DITONS_QUEST_37(new PlaySound("Npcdialog1_e.ditons_quest_37")), DIALOG_DITONS_QUEST_38(new PlaySound("Npcdialog1_e.ditons_quest_38")), DIALOG_DITONS_QUEST_39(new PlaySound("Npcdialog1_e.ditons_quest_39")), DIALOG_DITONS_QUEST_40(new PlaySound("Npcdialog1_e.ditons_quest_40")), DIALOG_DITONS_QUEST_41(new PlaySound("Npcdialog1_e.ditons_quest_41")), DIALOG_DITONS_QUEST_42(new PlaySound("Npcdialog1_e.ditons_quest_42")), DIALOG_DITONS_QUEST_43(new PlaySound("Npcdialog1_e.ditons_quest_43")), DIALOG_DITONS_QUEST_44(new PlaySound("Npcdialog1_e.ditons_quest_44")), DIALOG_DITONS_QUEST_45(new PlaySound("Npcdialog1_e.ditons_quest_45")), DIALOG_DITONS_QUEST_46(new PlaySound("Npcdialog1_e.ditons_quest_46")), DIALOG_DITONS_QUEST_47(new PlaySound("Npcdialog1_e.ditons_quest_47")), DIALOG_DITONS_QUEST_48(new PlaySound("Npcdialog1_e.ditons_quest_48")), DIALOG_DITONS_QUEST_49(new PlaySound("Npcdialog1_e.ditons_quest_49")), DIALOG_DITONS_QUEST_50(new PlaySound("Npcdialog1_e.ditons_quest_50")), DIALOG_DITONS_QUEST_51(new PlaySound("Npcdialog1_e.ditons_quest_51")), DIALOG_DITONS_QUEST_52(new PlaySound("Npcdialog1_e.ditons_quest_52")), DIALOG_DITONS_QUEST_53(new PlaySound("Npcdialog1_e.ditons_quest_53")), DIALOG_DITONS_QUEST_54(new PlaySound("Npcdialog1_e.ditons_quest_54")), DIALOG_DITONS_QUEST_55(new PlaySound("Npcdialog1_e.ditons_quest_55")), DIALOG_DITONS_QUEST_56(new PlaySound("Npcdialog1_e.ditons_quest_56")), DIALOG_DITONS_QUEST_57(new PlaySound("Npcdialog1_e.ditons_quest_57")), DIALOG_DITONS_QUEST_58(new PlaySound("Npcdialog1_e.ditons_quest_58")), DIALOG_DITONS_QUEST_59(new PlaySound("Npcdialog1_e.ditons_quest_59")), DIALOG_DITONS_QUEST_60(new PlaySound("Npcdialog1_e.ditons_quest_60")), DIALOG_DITONS_QUEST_61(new PlaySound("Npcdialog1_e.ditons_quest_61")), DIALOG_DITONS_QUEST_62(new PlaySound("Npcdialog1_e.ditons_quest_62")), DIALOG_DITONS_QUEST_63(new PlaySound("Npcdialog1_e.ditons_quest_63")), DIALOG_DITONS_QUEST_64(new PlaySound("Npcdialog1_e.ditons_quest_64")), DIALOG_DITONS_QUEST_65(new PlaySound("Npcdialog1_e.ditons_quest_65")), DIALOG_DITONS_QUEST_66(new PlaySound("Npcdialog1_e.ditons_quest_66")), DIALOG_DITONS_QUEST_67(new PlaySound("Npcdialog1_e.ditons_quest_67")), DIALOG_DITONS_QUEST_68(new PlaySound("Npcdialog1_e.ditons_quest_68")), DIALOG_DITONS_QUEST_69(new PlaySound("Npcdialog1_e.ditons_quest_69")), DIALOG_DITONS_QUEST_70(new PlaySound("Npcdialog1_e.ditons_quest_70")), DIALOG_DITONS_QUEST_71(new PlaySound("Npcdialog1_e.ditons_quest_71")), DIALOG_DITONS_QUEST_72(new PlaySound("Npcdialog1_e.ditons_quest_72")), DIALOG_DITONS_QUEST_73(new PlaySound("Npcdialog1_e.ditons_quest_73")), DIALOG_DITONS_QUEST_74(new PlaySound("Npcdialog1_e.ditons_quest_74")), DIALOG_DITONS_QUEST_75(new PlaySound("Npcdialog1_e.ditons_quest_75")), DIALOG_DITONS_QUEST_76(new PlaySound("Npcdialog1_e.ditons_quest_76")), DIALOG_DITONS_QUEST_77(new PlaySound("Npcdialog1_e.ditons_quest_77")), DIALOG_DITONS_QUEST_78(new PlaySound("Npcdialog1_e.ditons_quest_78")), DIALOG_DITONS_QUEST_79(new PlaySound("Npcdialog1_e.ditons_quest_79")), DIALOG_DITONS_QUEST_80(new PlaySound("Npcdialog1_e.ditons_quest_80")), DIALOG_DITONS_QUEST_81(new PlaySound("Npcdialog1_e.ditons_quest_81")), DIALOG_DITONS_QUEST_82(new PlaySound("Npcdialog1_e.ditons_quest_82")), DIALOG_DITONS_QUEST_83(new PlaySound("Npcdialog1_e.ditons_quest_83")), DIALOG_DITONS_QUEST_84(new PlaySound("Npcdialog1_e.ditons_quest_84")), DIALOG_DITONS_QUEST_85(new PlaySound("Npcdialog1_e.ditons_quest_85")), DIALOG_DITONS_QUEST_86(new PlaySound("Npcdialog1_e.ditons_quest_86")), DIALOG_DITONS_QUEST_87(new PlaySound("Npcdialog1_e.ditons_quest_87")), DIALOG_FOUETTE_GREETING_1(new PlaySound("Npcdialog1_e.fouette_greeting_1")), DIALOG_FOUETTE_GREETING_2(new PlaySound("Npcdialog1_e.fouette_greeting_2")), DIALOG_FOUETTE_GREETING_3(new PlaySound("Npcdialog1_e.fouette_greeting_3")), DIALOG_FOUETTE_GREETING_4(new PlaySound("Npcdialog1_e.fouette_greeting_4")), DIALOG_FOUETTE_GREETING_5(new PlaySound("Npcdialog1_e.fouette_greeting_5")), DIALOG_GAINAK_ADVEN_GREETING_1(new PlaySound("Npcdialog1_e.gainak_adven_greeting_1")), DIALOG_GAINAK_ADVEN_GREETING_2(new PlaySound("Npcdialog1_e.gainak_adven_greeting_2")), DIALOG_GAINAK_ADVEN_GREETING_3(new PlaySound("Npcdialog1_e.gainak_adven_greeting_3")), DIALOG_GAINAK_ADVEN_GREETING_4(new PlaySound("Npcdialog1_e.gainak_adven_greeting_4")), DIALOG_GAINAK_ADVEN_GREETING_5(new PlaySound("Npcdialog1_e.gainak_adven_greeting_5")), DIALOG_GLISSADE_GREETING_1(new PlaySound("Npcdialog1_e.glissade_greeting_1")), DIALOG_GLISSADE_GREETING_2(new PlaySound("Npcdialog1_e.glissade_greeting_2")), DIALOG_GLISSADE_GREETING_3(new PlaySound("Npcdialog1_e.glissade_greeting_3")), DIALOG_GLISSADE_GREETING_4(new PlaySound("Npcdialog1_e.glissade_greeting_4")), DIALOG_GLISSADE_GREETING_5(new PlaySound("Npcdialog1_e.glissade_greeting_5")), DIALOG_HANNA_GREETING_1(new PlaySound("Npcdialog1_e.hanna_greeting_1")), DIALOG_HANNA_GREETING_2(new PlaySound("Npcdialog1_e.hanna_greeting_2")), DIALOG_HANNA_INZONE_1(new PlaySound("Npcdialog1_e.hanna_inzone_1")), DIALOG_HANNA_INZONE_2(new PlaySound("Npcdialog1_e.hanna_inzone_2")), DIALOG_HANNA_INZONE_3(new PlaySound("Npcdialog1_e.hanna_inzone_3")), DIALOG_HAREN_QUEST_1(new PlaySound("Npcdialog1_e.haren_quest_1")), DIALOG_HAREN_QUEST_2(new PlaySound("Npcdialog1_e.haren_quest_2")), DIALOG_KANNA_GREETING_1(new PlaySound("Npcdialog1_e.kanna_greeting_1")), DIALOG_KANNA_GREETING_2(new PlaySound("Npcdialog1_e.kanna_greeting_2")), DIALOG_KANNA_GREETING_3(new PlaySound("Npcdialog1_e.kanna_greeting_3")), DIALOG_KANNA_INDICATE_1(new PlaySound("Npcdialog1_e.kanna_indicate_1")), DIALOG_KANNA_INDICATE_2(new PlaySound("Npcdialog1_e.kanna_indicate_2")), DIALOG_KANNA_INDICATE_3(new PlaySound("Npcdialog1_e.kanna_indicate_3")), DIALOG_KEKROPS_GREETING_5(new PlaySound("Npcdialog1_e.kekrops_greeting_5")), DIALOG_KEKROPS_GREETING_6(new PlaySound("Npcdialog1_e.kekrops_greeting_6")), DIALOG_KEKROPS_GREETING_7(new PlaySound("Npcdialog1_e.kekrops_greeting_7")), DIALOG_KEKROPS_GREETING_8(new PlaySound("Npcdialog1_e.kekrops_greeting_8")), DIALOG_KEKROPS_QUEST_15(new PlaySound("Npcdialog1_e.kekrops_quest_15")), DIALOG_KEKROPS_QUEST_16(new PlaySound("Npcdialog1_e.kekrops_quest_16")), DIALOG_KELBIM_PREQUEL_QUEST_1(new PlaySound("Npcdialog1_e.kelbim_prequel_quest_1")), DIALOG_KELBIM_PREQUEL_QUEST_2(new PlaySound("Npcdialog1_e.kelbim_prequel_quest_2")), DIALOG_KELBIM_PREQUEL_QUEST_3(new PlaySound("Npcdialog1_e.kelbim_prequel_quest_3")), DIALOG_KELBIM_PREQUEL_QUEST_4(new PlaySound("Npcdialog1_e.kelbim_prequel_quest_4")), DIALOG_LAILLY_CINEMATIC_057A(new PlaySound("Npcdialog1_e.lailly_cinematic_057a")), DIALOG_LAILLY_CINEMATIC_058A(new PlaySound("Npcdialog1_e.lailly_cinematic_058a")), DIALOG_LAILLY_CINEMATIC_059A(new PlaySound("Npcdialog1_e.lailly_cinematic_059a")), DIALOG_LAILLY_GREETING_1(new PlaySound("Npcdialog1_e.lailly_greeting_1")), DIALOG_LAILLY_GREETING_2(new PlaySound("Npcdialog1_e.lailly_greeting_2")), DIALOG_LAILLY_GREETING_3(new PlaySound("Npcdialog1_e.lailly_greeting_3")), DIALOG_LAILLY_GREETING_4(new PlaySound("Npcdialog1_e.lailly_greeting_4")), DIALOG_LAILLY_GREETING_5(new PlaySound("Npcdialog1_e.lailly_greeting_5")), DIALOG_LOLLIA_GREETING_1(new PlaySound("Npcdialog1_e.lollia_greeting_1")), DIALOG_LOLLIA_GREETING_2(new PlaySound("Npcdialog1_e.lollia_greeting_2")), DIALOG_LOLLIA_INZONE_1(new PlaySound("Npcdialog1_e.lollia_inzone_1")), DIALOG_LOLLIA_INZONE_2(new PlaySound("Npcdialog1_e.lollia_inzone_2")), DIALOG_LOLLIA_INZONE_3(new PlaySound("Npcdialog1_e.lollia_inzone_3")), DIALOG_MAE_GREETING_1(new PlaySound("Npcdialog1_e.mae_greeting_1")), DIALOG_MAE_GREETING_2(new PlaySound("Npcdialog1_e.mae_greeting_2")), DIALOG_MAE_INZONE_1(new PlaySound("Npcdialog1_e.mae_inzone_1")), DIALOG_MAE_INZONE_2(new PlaySound("Npcdialog1_e.mae_inzone_2")), DIALOG_MAE_INZONE_3(new PlaySound("Npcdialog1_e.mae_inzone_3")), DIALOG_MELISA_GREETING_1(new PlaySound("Npcdialog1_e.melisa_greeting_1")), DIALOG_MELISA_GREETING_2(new PlaySound("Npcdialog1_e.melisa_greeting_2")), DIALOG_MELISA_GREETING_3(new PlaySound("Npcdialog1_e.melisa_greeting_3")), DIALOG_MELISA_GREETING_4(new PlaySound("Npcdialog1_e.melisa_greeting_4")), DIALOG_MELISA_GREETING_5(new PlaySound("Npcdialog1_e.melisa_greeting_5")), DIALOG_MELISA_GREETING_6(new PlaySound("Npcdialog1_e.melisa_greeting_6")), DIALOG_MELISA_GREETING_7(new PlaySound("Npcdialog1_e.melisa_greeting_7")), DIALOG_MELISA_QUEST_1(new PlaySound("Npcdialog1_e.melisa_quest_1")), DIALOG_MELISA_QUEST_2(new PlaySound("Npcdialog1_e.melisa_quest_2")), DIALOG_MELISA_QUEST_3(new PlaySound("Npcdialog1_e.melisa_quest_3")), DIALOG_MELISA_QUEST_4(new PlaySound("Npcdialog1_e.melisa_quest_4")), DIALOG_MOLLY_QUEST_1(new PlaySound("Npcdialog1_e.molly_quest_1")), DIALOG_MOLLY_QUEST_2(new PlaySound("Npcdialog1_e.molly_quest_2")), DIALOG_MOLLY_QUEST_3(new PlaySound("Npcdialog1_e.molly_quest_3")), DIALOG_MOLLY_QUEST_4(new PlaySound("Npcdialog1_e.molly_quest_4")), DIALOG_MOLLY_QUEST_5(new PlaySound("Npcdialog1_e.molly_quest_5")), DIALOG_MOLLY_QUEST_6(new PlaySound("Npcdialog1_e.molly_quest_6")), DIALOG_MOLLY_QUEST_7(new PlaySound("Npcdialog1_e.molly_quest_7")), DIALOG_PIORA_QUEST_1(new PlaySound("Npcdialog1_e.piora_quest_1")), DIALOG_PIORA_QUEST_2(new PlaySound("Npcdialog1_e.piora_quest_2")), DIALOG_PIROUET_GREETING_1(new PlaySound("Npcdialog1_e.pirouet_greeting_1")), DIALOG_PIROUET_GREETING_2(new PlaySound("Npcdialog1_e.pirouet_greeting_2")), DIALOG_PIROUET_GREETING_3(new PlaySound("Npcdialog1_e.pirouet_greeting_3")), DIALOG_PIROUET_GREETING_4(new PlaySound("Npcdialog1_e.pirouet_greeting_4")), DIALOG_PIROUET_GREETING_5(new PlaySound("Npcdialog1_e.pirouet_greeting_5")), DIALOG_PIVS_GREETING_1(new PlaySound("Npcdialog1_e.pivs_greeting_1")), DIALOG_PIVS_GREETING_2(new PlaySound("Npcdialog1_e.pivs_greeting_2")), DIALOG_PIVS_GREETING_3(new PlaySound("Npcdialog1_e.pivs_greeting_3")), DIALOG_PIVS_GREETING_4(new PlaySound("Npcdialog1_e.pivs_greeting_4")), DIALOG_PIVS_GREETING_5(new PlaySound("Npcdialog1_e.pivs_greeting_5")), DIALOG_PLIE_GREETING_1(new PlaySound("Npcdialog1_e.plie_greeting_1")), DIALOG_PLIE_GREETING_2(new PlaySound("Npcdialog1_e.plie_greeting_2")), DIALOG_PLIE_GREETING_3(new PlaySound("Npcdialog1_e.plie_greeting_3")), DIALOG_PLIE_GREETING_4(new PlaySound("Npcdialog1_e.plie_greeting_4")), DIALOG_PLIE_GREETING_5(new PlaySound("Npcdialog1_e.plie_greeting_5")), DIALOG_ROA_GREETING_1(new PlaySound("Npcdialog1_e.roa_greeting_1")), DIALOG_ROA_GREETING_2(new PlaySound("Npcdialog1_e.roa_greeting_2")), DIALOG_ROA_GREETING_3(new PlaySound("Npcdialog1_e.roa_greeting_3")), DIALOG_RUPIA_GREETING_1(new PlaySound("Npcdialog1_e.rupia_greeting_1")), DIALOG_RUPIA_GREETING_2(new PlaySound("Npcdialog1_e.rupia_greeting_2")), DIALOG_RUPIA_INZONE_1(new PlaySound("Npcdialog1_e.rupia_inzone_1")), DIALOG_RUPIA_INZONE_2(new PlaySound("Npcdialog1_e.rupia_inzone_2")), DIALOG_RUPIA_INZONE_3(new PlaySound("Npcdialog1_e.rupia_inzone_3")), DIALOG_SAIYAN_GREETING_1(new PlaySound("Npcdialog1_e.saiyan_greeting_1")), DIALOG_SAIYAN_GREETING_2(new PlaySound("Npcdialog1_e.saiyan_greeting_2")), DIALOG_SAIYAN_GREETING_3(new PlaySound("Npcdialog1_e.saiyan_greeting_3")), DIALOG_SAIYAN_INDICATE_1(new PlaySound("Npcdialog1_e.saiyan_indicate_1")), DIALOG_SAIYAN_INDICATE_2(new PlaySound("Npcdialog1_e.saiyan_indicate_2")), DIALOG_SAIYAN_INDICATE_3(new PlaySound("Npcdialog1_e.saiyan_indicate_3")), DIALOG_SAIYAN_QUEST_1(new PlaySound("Npcdialog1_e.saiyan_quest_1")), DIALOG_SAIYAN_QUEST_2(new PlaySound("Npcdialog1_e.saiyan_quest_2")), DIALOG_SAIYAN_QUEST_3(new PlaySound("Npcdialog1_e.saiyan_quest_3")), DIALOG_SAIYAN_QUEST_4(new PlaySound("Npcdialog1_e.saiyan_quest_4")), DIALOG_SERENIA_QUEST_13(new PlaySound("Npcdialog1_e.serenia_quest_13")), DIALOG_SERENIA_QUEST_14(new PlaySound("Npcdialog1_e.serenia_quest_14")), DIALOG_SETTLEN_CINEMATIC_060A(new PlaySound("Npcdialog1_e.settlen_cinematic_060a")), DIALOG_SETTLEN_CINEMATIC_060B(new PlaySound("Npcdialog1_e.settlen_cinematic_060b")), DIALOG_SETTLEN_GREETING_1(new PlaySound("Npcdialog1_e.settlen_greeting_1")), DIALOG_SETTLEN_GREETING_2(new PlaySound("Npcdialog1_e.settlen_greeting_2")), DIALOG_SETTLEN_GREETING_3(new PlaySound("Npcdialog1_e.settlen_greeting_3")), DIALOG_SETTLEN_GREETING_4(new PlaySound("Npcdialog1_e.settlen_greeting_4")), DIALOG_SETTLEN_GREETING_5(new PlaySound("Npcdialog1_e.settlen_greeting_5")), DIALOG_SIRR_GREETING_4(new PlaySound("Npcdialog1_e.sirr_greeting_4")), DIALOG_SIRR_GREETING_5(new PlaySound("Npcdialog1_e.sirr_greeting_5")), DIALOG_SIRR_GREETING_6(new PlaySound("Npcdialog1_e.sirr_greeting_6")), DIALOG_SIRR_INDICATE_1(new PlaySound("Npcdialog1_e.sirr_indicate_1")), DIALOG_SIRR_INDICATE_2(new PlaySound("Npcdialog1_e.sirr_indicate_2")), DIALOG_STUGART_MESSE_QUEST_1(new PlaySound("Npcdialog1_e.stugart_messe_quest_1")), DIALOG_STUGART_MESSE_QUEST_2(new PlaySound("Npcdialog1_e.stugart_messe_quest_2")), DIALOG_TAUTI_ANGEL_INDICATE_1(new PlaySound("Npcdialog1_e.tauti_angel_indicate_1")), DIALOG_TAUTI_ANGEL_INDICATE_2(new PlaySound("Npcdialog1_e.tauti_angel_indicate_2")), DIALOG_TAUTI_ANGEL_INDICATE_3(new PlaySound("Npcdialog1_e.tauti_angel_indicate_3")), DIALOG_TAUTI_ANGEL_INDICATE_4(new PlaySound("Npcdialog1_e.tauti_angel_indicate_4")), DIALOG_TAUTI_ANGEL_INDICATE_5(new PlaySound("Npcdialog1_e.tauti_angel_indicate_5")), DIALOG_TAUTI_ANGEL_INDICATE_6(new PlaySound("Npcdialog1_e.tauti_angel_indicate_6")), DIALOG_TAUTI_ANGEL_INDICATE_7(new PlaySound("Npcdialog1_e.tauti_angel_indicate_7")), DIALOG_TAUTI_ANGEL_INDICATE_8(new PlaySound("Npcdialog1_e.tauti_angel_indicate_8")), DIALOG_TAUTI_ANGEL_INDICATE_9(new PlaySound("Npcdialog1_e.tauti_angel_indicate_9")), DIALOG_TAUTI_ANGEL_INDICATE_10(new PlaySound("Npcdialog1_e.tauti_angel_indicate_10")), DIALOG_TAUTI_ANGEL_INDICATE_11(new PlaySound("Npcdialog1_e.tauti_angel_indicate_11")), DIALOG_TAUTI_ANGEL_INDICATE_12(new PlaySound("Npcdialog1_e.tauti_angel_indicate_12")), DIALOG_TAUTI_ANGEL_INDICATE_13(new PlaySound("Npcdialog1_e.tauti_angel_indicate_13")), DIALOG_TAUTI_ANGEL_INDICATE_14(new PlaySound("Npcdialog1_e.tauti_angel_indicate_14")), DIALOG_TAUTI_ANGEL_INDICATE_15(new PlaySound("Npcdialog1_e.tauti_angel_indicate_15")), DIALOG_TUTU_GREETING_1(new PlaySound("Npcdialog1_e.tutu_greeting_1")), DIALOG_TUTU_GREETING_2(new PlaySound("Npcdialog1_e.tutu_greeting_2")), DIALOG_TUTU_GREETING_3(new PlaySound("Npcdialog1_e.tutu_greeting_3")), DIALOG_TUTU_GREETING_4(new PlaySound("Npcdialog1_e.tutu_greeting_4")), DIALOG_TUTU_GREETING_5(new PlaySound("Npcdialog1_e.tutu_greeting_5")), DIALOG_TYPHOON_QUEST_1(new PlaySound("Npcdialog1_e.typhoon_quest_1")), DIALOG_TYPHOON_QUEST_2(new PlaySound("Npcdialog1_e.typhoon_quest_2")), // SystemMsg Sound MSG_809(new PlaySound("SystemMsg_e.809")), MSG_808(new PlaySound("SystemMsg_e.808")), MSG_807(new PlaySound("SystemMsg_e.807")), MSG_806(new PlaySound("SystemMsg_e.806")), MSG_804(new PlaySound("SystemMsg_e.804")), MSG_803(new PlaySound("SystemMsg_e.803")), MSG_793(new PlaySound("SystemMsg_e.793")), MSG_792(new PlaySound("SystemMsg_e.792")), MSG_791(new PlaySound("SystemMsg_e.791")), MSG_790(new PlaySound("SystemMsg_e.790")), MSG_789(new PlaySound("SystemMsg_e.789")), MSG_788(new PlaySound("SystemMsg_e.788")), MSG_787(new PlaySound("SystemMsg_e.787")), MSG_785(new PlaySound("SystemMsg_e.785")), MSG_784(new PlaySound("SystemMsg_e.784")), MSG_783(new PlaySound("SystemMsg_e.783")), MSG_747(new PlaySound("SystemMsg_e.747")), MSG_740(new PlaySound("SystemMsg_e.740")), MSG_736(new PlaySound("SystemMsg_e.736")), MSG_733(new PlaySound("SystemMsg_e.733")), MSG_732(new PlaySound("SystemMsg_e.732")), MSG_731(new PlaySound("SystemMsg_e.731")), MSG_702(new PlaySound("SystemMsg_e.702")), MSG_635(new PlaySound("SystemMsg_e.635")), MSG_634(new PlaySound("SystemMsg_e.634")), MSG_633(new PlaySound("SystemMsg_e.633")), MSG_632(new PlaySound("SystemMsg_e.632")), MSG_631(new PlaySound("SystemMsg_e.631")), MSG_630(new PlaySound("SystemMsg_e.630")), MSG_602(new PlaySound("SystemMsg_e.602")), MSG_599(new PlaySound("SystemMsg_e.599")), MSG_406(new PlaySound("SystemMsg_e.406")), MSG_395(new PlaySound("SystemMsg_e.395")), MSG_394(new PlaySound("SystemMsg_e.394")), MSG_393(new PlaySound("SystemMsg_e.393")), MSG_391(new PlaySound("SystemMsg_e.391")), MSG_390(new PlaySound("SystemMsg_e.390")), MSG_389(new PlaySound("SystemMsg_e.389")), MSG_387(new PlaySound("SystemMsg_e.387")), MSG_386(new PlaySound("SystemMsg_e.386")), MSG_346(new PlaySound("SystemMsg_e.346")), MSG_345(new PlaySound("SystemMsg_e.345")), MSG_221(new PlaySound("SystemMsg_e.221")), MSG_219(new PlaySound("SystemMsg_e.219")), MSG_218(new PlaySound("SystemMsg_e.218")), MSG_217(new PlaySound("SystemMsg_e.217")), MSG_216(new PlaySound("SystemMsg_e.216")), MSG_215(new PlaySound("SystemMsg_e.215")), MSG_147(new PlaySound("SystemMsg_e.147")), MSG_146(new PlaySound("SystemMsg_e.146")), MSG_18(new PlaySound("SystemMsg_e.18")), MSG_17(new PlaySound("SystemMsg_e.17")), MSG_1254(new PlaySound("SystemMsg_e.1254")), MSG_930(new PlaySound("SystemMsg_e.930")), MSG_931(new PlaySound("SystemMsg_e.931")), MSG_964(new PlaySound("SystemMsg_e.964")), MSG_965(new PlaySound("SystemMsg_e.965")), MSG_966(new PlaySound("SystemMsg_e.966")), MSG_1063(new PlaySound("SystemMsg_e.1063")), MSG_1113(new PlaySound("SystemMsg_e.1113")), MSG_1209(new PlaySound("SystemMsg_e.1209")), MSG_1210(new PlaySound("SystemMsg_e.1210")), MSG_1211(new PlaySound("SystemMsg_e.1211")), MSG_1212(new PlaySound("SystemMsg_e.1212")), MSG_1213(new PlaySound("SystemMsg_e.1213")), MSG_1214(new PlaySound("SystemMsg_e.1214")), MSG_1215(new PlaySound("SystemMsg_e.1215")), MSG_1216(new PlaySound("SystemMsg_e.1216")), MSG_1217(new PlaySound("SystemMsg_e.1217")), MSG_1218(new PlaySound("SystemMsg_e.1218")), MSG_1219(new PlaySound("SystemMsg_e.1219")), MSG_1233(new PlaySound("SystemMsg_e.1233")), MSG_1240(new PlaySound("SystemMsg_e.1240")), MSG_1241(new PlaySound("SystemMsg_e.1241")), MSG_CHAR_CHANGE(new PlaySound("SystemMsg_e.char_change")), MSG_CHAR_CREATION(new PlaySound("SystemMsg_e.char_creation")), MSG_CHAR_LOBBY(new PlaySound("SystemMsg_e.char_lobby")), MSG_CHAR_START(new PlaySound("SystemMsg_e.char_start")), MSG_286(new PlaySound("SystemMsg_e.286")), MSG_287(new PlaySound("SystemMsg_e.287")), MSG_823(new PlaySound("SystemMsg_e.823")), MSG_824(new PlaySound("SystemMsg_e.824")), MSG_1639(new PlaySound("SystemMsg_e.1639")), MSG_1640(new PlaySound("SystemMsg_e.1640")), MSG_2050(new PlaySound("SystemMsg_e.2050")), MSG_2090(new PlaySound("SystemMsg_e.2090")), MSG_2164(new PlaySound("SystemMsg_e.2164")), MSG_2165(new PlaySound("SystemMsg_e.2165")), MSG_2166(new PlaySound("SystemMsg_e.2166")), MSG_A006(new PlaySound("SystemMsg_e.a006")), MSG_23(new PlaySound("SystemMsg_e.23")), MSG_24(new PlaySound("SystemMsg_e.24")), MSG_93(new PlaySound("SystemMsg_e.93")), MSG_112(new PlaySound("SystemMsg_e.112")), MSG_189(new PlaySound("SystemMsg_e.189")), MSG_276(new PlaySound("SystemMsg_e.276")), MSG_278(new PlaySound("SystemMsg_e.278")), MSG_279(new PlaySound("SystemMsg_e.279")), MSG_281(new PlaySound("SystemMsg_e.281")), MSG_338(new PlaySound("SystemMsg_e.338")), MSG_341(new PlaySound("SystemMsg_e.341")), MSG_531(new PlaySound("SystemMsg_e.531")), MSG_1439(new PlaySound("SystemMsg_e.1439")), MSG_1443(new PlaySound("SystemMsg_e.1443")), MSG_1444(new PlaySound("SystemMsg_e.1444")), MSG_1741(new PlaySound("SystemMsg_e.1741")), MSG_2083(new PlaySound("SystemMsg_e.2083")), MSG_2131(new PlaySound("SystemMsg_e.2131")), MSG_2172(new PlaySound("SystemMsg_e.2172")), MSG_2195(new PlaySound("SystemMsg_e.2195")), MSG_2226(new PlaySound("SystemMsg_e.2226")), MSG_2317(new PlaySound("SystemMsg_e.2317")), MSG_2327(new PlaySound("SystemMsg_e.2327")), MSG_3364(new PlaySound("SystemMsg_e.3364")), MSG_3465(new PlaySound("SystemMsg_e.3465")), MSG_A001(new PlaySound("SystemMsg_e.a001")), MSG_A002(new PlaySound("SystemMsg_e.a002")), MSG_A003(new PlaySound("SystemMsg_e.a003")), MSG_A004(new PlaySound("SystemMsg_e.a004")), MSG_A005(new PlaySound("SystemMsg_e.a005")), MSG_FREYA_VOICE_01(new PlaySound("SystemMsg_e.freya_voice_01")), MSG_FREYA_VOICE_02(new PlaySound("SystemMsg_e.freya_voice_02")), MSG_FREYA_VOICE_03(new PlaySound("SystemMsg_e.freya_voice_03")), MSG_FREYA_VOICE_04(new PlaySound("SystemMsg_e.freya_voice_04")), MSG_FREYA_VOICE_05(new PlaySound("SystemMsg_e.freya_voice_05")), MSG_FREYA_VOICE_06(new PlaySound("SystemMsg_e.freya_voice_06")), MSG_FREYA_VOICE_07(new PlaySound("SystemMsg_e.freya_voice_07")), MSG_FREYA_VOICE_08(new PlaySound("SystemMsg_e.freya_voice_08")), MSG_FREYA_VOICE_09(new PlaySound("SystemMsg_e.freya_voice_09")), MSG_FREYA_VOICE_10(new PlaySound("SystemMsg_e.freya_voice_10")), MSG_FREYA_VOICE_11(new PlaySound("SystemMsg_e.freya_voice_11")), MSG_FREYA_VOICE_12(new PlaySound("SystemMsg_e.freya_voice_12")), MSG_FREYA_VOICE_13(new PlaySound("SystemMsg_e.freya_voice_13")), MSG_FREYA_VOICE_14(new PlaySound("SystemMsg_e.freya_voice_14")), MSG_ISTINA_VOICE_01(new PlaySound("SystemMsg_e.istina_voice_01")), MSG_ISTINA_VOICE_02(new PlaySound("SystemMsg_e.istina_voice_02")), MSG_ISTINA_VOICE_03(new PlaySound("SystemMsg_e.istina_voice_03")), MSG_ISTINA_VOICE_04(new PlaySound("SystemMsg_e.istina_voice_04")), MSG_ISTINA_VOICE_05(new PlaySound("SystemMsg_e.istina_voice_05")); private final PlaySound _playSound; private static Map soundPackets = new HashMap<>(); private QuestSound(PlaySound playSound) { _playSound = playSound; } /** * Get a {@link PlaySound} packet by its name. * @param soundName the name of the sound to look for * @return the {@link PlaySound} packet with the specified sound or {@code null} if one was not found */ public static PlaySound getSound(String soundName) { if (soundPackets.containsKey(soundName)) { return soundPackets.get(soundName); } for (QuestSound qs : QuestSound.values()) { if (qs._playSound.getSoundName().equals(soundName)) { soundPackets.put(soundName, qs._playSound); // cache in map to avoid looping repeatedly return qs._playSound; } } soundPackets.put(soundName, new PlaySound(soundName)); return soundPackets.get(soundName); } /** * @return the name of the sound of this QuestSound object */ public String getSoundName() { return _playSound.getSoundName(); } /** * @return the {@link PlaySound} packet of this QuestSound object */ public PlaySound getPacket() { return _playSound; } }