From d202ffd297f9406b5a62801c6028dc380e46d063 Mon Sep 17 00:00:00 2001 From: Zach Toogood Date: Tue, 30 Nov 2021 10:12:05 +0200 Subject: [PATCH 1/4] [lua] Check for level sync before allowing BCNM entry --- scripts/globals/bcnm.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scripts/globals/bcnm.lua b/scripts/globals/bcnm.lua index e0bc32b9499..857ed8bc222 100644 --- a/scripts/globals/bcnm.lua +++ b/scripts/globals/bcnm.lua @@ -1019,6 +1019,17 @@ end -- onTrigger Action ----------------------------------- xi.bcnm.onTrigger = function(player, npc) + -- Cannot enter if anyone in party is level/master sync'd + for _, member in pairs(player:getAlliance()) do + if member:isLevelSync() then + local zoneId = player:getZoneID() + local ID = zones[zoneId] + -- Your party is unable to participate because certain members' levels are restricted + player:messageSpecial(ID.text.MEMBERS_LEVELS_ARE_RESTRICTED) + return false + end + end + -- Player has battlefield status effect. That means a battlefield is open OR the player is inside a battlefield. if player:hasStatusEffect(xi.effect.BATTLEFIELD) then -- Player is inside battlefield. Attempting to leave. From 088ceb13413aedcdc2e4908b2f703d1aad0c6f93 Mon Sep 17 00:00:00 2001 From: WinterSolstice8 <60417494+WinterSolstice8@users.noreply.github.com> Date: Sat, 27 Aug 2022 01:13:52 -0700 Subject: [PATCH 2/4] [lua] Reject parties who interact with or trade to BCNMs with level sync active. --- scripts/globals/bcnm.lua | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/scripts/globals/bcnm.lua b/scripts/globals/bcnm.lua index 857ed8bc222..a3cbbe009d1 100644 --- a/scripts/globals/bcnm.lua +++ b/scripts/globals/bcnm.lua @@ -945,11 +945,27 @@ local function getItemById(player, bfid) return 0 end +local function rejectLevelSyncedParty(player, npc) + for _, member in pairs(player:getAlliance()) do + if member:isLevelSync() then + local zoneId = player:getZoneID() + local ID = zones[zoneId] + -- Your party is unable to participate because certain members' levels are restricted + player:messageText(npc, ID.text.MEMBERS_LEVELS_ARE_RESTRICTED, false) + return true + end + end + return false +end ----------------------------------- -- onTrade Action ----------------------------------- xi.bcnm.onTrade = function(player, npc, trade, onUpdate) + if rejectLevelSyncedParty(player, npc) then -- player's party has level sync, abort. + return false + end + -- Validate trade local itemId @@ -1020,14 +1036,8 @@ end ----------------------------------- xi.bcnm.onTrigger = function(player, npc) -- Cannot enter if anyone in party is level/master sync'd - for _, member in pairs(player:getAlliance()) do - if member:isLevelSync() then - local zoneId = player:getZoneID() - local ID = zones[zoneId] - -- Your party is unable to participate because certain members' levels are restricted - player:messageSpecial(ID.text.MEMBERS_LEVELS_ARE_RESTRICTED) - return false - end + if rejectLevelSyncedParty(player, npc) then + return false end -- Player has battlefield status effect. That means a battlefield is open OR the player is inside a battlefield. From e25f4fe776de04c2099d6e67eacad23459439b31 Mon Sep 17 00:00:00 2001 From: WinterSolstice8 <60417494+WinterSolstice8@users.noreply.github.com> Date: Fri, 2 Sep 2022 20:17:43 -0700 Subject: [PATCH 3/4] [lua] [zones] Add MEMBERS_LEVELS_ARE_RESTRICTED message id to all zones --- .../zones/Abdhaljs_Isle-Purgonorgo/IDs.lua | 17 +- scripts/zones/Abyssea-Altepa/IDs.lua | 107 ++++----- scripts/zones/Abyssea-Attohwa/IDs.lua | 107 ++++----- .../zones/Abyssea-Empyreal_Paradox/IDs.lua | 23 +- scripts/zones/Abyssea-Grauberg/IDs.lua | 115 ++++----- scripts/zones/Abyssea-Konschtat/IDs.lua | 113 ++++----- scripts/zones/Abyssea-La_Theine/IDs.lua | 107 ++++----- scripts/zones/Abyssea-Misareaux/IDs.lua | 107 ++++----- scripts/zones/Abyssea-Tahrongi/IDs.lua | 107 ++++----- scripts/zones/Abyssea-Uleguerand/IDs.lua | 107 ++++----- scripts/zones/Abyssea-Vunkerl/IDs.lua | 107 ++++----- scripts/zones/Aht_Urhgan_Whitegate/IDs.lua | 1 + scripts/zones/AlTaieu/IDs.lua | 37 +-- scripts/zones/Al_Zahbi/IDs.lua | 49 ++-- scripts/zones/Altar_Room/IDs.lua | 19 +- scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua | 55 ++--- scripts/zones/Apollyon/IDs.lua | 37 +-- scripts/zones/Arrapago_Reef/IDs.lua | 77 +++--- scripts/zones/Arrapago_Remnants/IDs.lua | 41 ++-- scripts/zones/Attohwa_Chasm/IDs.lua | 35 +-- scripts/zones/Aydeewa_Subterrane/IDs.lua | 33 +-- scripts/zones/Balgas_Dais/IDs.lua | 49 ++-- scripts/zones/Bastok-Jeuno_Airship/IDs.lua | 23 +- scripts/zones/Bastok_Markets/IDs.lua | 129 +++++----- scripts/zones/Bastok_Markets_[S]/IDs.lua | 49 ++-- scripts/zones/Bastok_Mines/IDs.lua | 1 + scripts/zones/Batallia_Downs/IDs.lua | 89 +++---- scripts/zones/Batallia_Downs_[S]/IDs.lua | 47 ++-- scripts/zones/Beadeaux/IDs.lua | 1 + scripts/zones/Beadeaux_[S]/IDs.lua | 19 +- scripts/zones/Bearclaw_Pinnacle/IDs.lua | 31 +-- scripts/zones/Beaucedine_Glacier/IDs.lua | 1 + scripts/zones/Beaucedine_Glacier_[S]/IDs.lua | 55 ++--- scripts/zones/Behemoths_Dominion/IDs.lua | 55 ++--- scripts/zones/Bhaflau_Remnants/IDs.lua | 17 +- scripts/zones/Bhaflau_Thickets/IDs.lua | 57 ++--- scripts/zones/Bibiki_Bay/IDs.lua | 71 +++--- scripts/zones/Boneyard_Gully/IDs.lua | 23 +- scripts/zones/Bostaunieux_Oubliette/IDs.lua | 53 +++-- scripts/zones/Buburimu_Peninsula/IDs.lua | 1 + scripts/zones/Caedarva_Mire/IDs.lua | 67 +++--- scripts/zones/Cape_Teriggan/IDs.lua | 67 +++--- scripts/zones/Carpenters_Landing/IDs.lua | 53 +++-- scripts/zones/Castle_Oztroja/IDs.lua | 1 + scripts/zones/Castle_Oztroja_[S]/IDs.lua | 21 +- scripts/zones/Castle_Zvahl_Baileys/IDs.lua | 27 ++- .../zones/Castle_Zvahl_Baileys_[S]/IDs.lua | 23 +- scripts/zones/Castle_Zvahl_Keep/IDs.lua | 29 +-- scripts/zones/Castle_Zvahl_Keep_[S]/IDs.lua | 17 +- scripts/zones/Ceizak_Battlegrounds/IDs.lua | 43 ++-- .../zones/Celennia_Memorial_Library/IDs.lua | 15 +- scripts/zones/Chamber_of_Oracles/IDs.lua | 1 + scripts/zones/Chateau_dOraguille/IDs.lua | 53 +++-- scripts/zones/Chocobo_Circuit/IDs.lua | 15 +- scripts/zones/Cirdas_Caverns/IDs.lua | 15 +- scripts/zones/Cirdas_Caverns_U/IDs.lua | 15 +- scripts/zones/Cloister_of_Flames/IDs.lua | 1 + scripts/zones/Cloister_of_Frost/IDs.lua | 1 + scripts/zones/Cloister_of_Gales/IDs.lua | 1 + scripts/zones/Cloister_of_Storms/IDs.lua | 1 + scripts/zones/Cloister_of_Tides/IDs.lua | 1 + scripts/zones/Cloister_of_Tremors/IDs.lua | 1 + scripts/zones/Crawlers_Nest/IDs.lua | 1 + scripts/zones/Crawlers_Nest_[S]/IDs.lua | 19 +- scripts/zones/Dangruf_Wadi/IDs.lua | 71 +++--- scripts/zones/Davoi/IDs.lua | 59 ++--- scripts/zones/Den_of_Rancor/IDs.lua | 43 ++-- .../zones/Desuetia_Empyreal_Paradox/IDs.lua | 21 +- scripts/zones/Dho_Gates/IDs.lua | 15 +- .../zones/Diorama_Abdhaljs-Ghelsba/IDs.lua | 15 +- scripts/zones/Dragons_Aery/IDs.lua | 27 ++- scripts/zones/Dynamis-Bastok/IDs.lua | 31 +-- scripts/zones/Dynamis-Bastok_[D]/IDs.lua | 21 +- scripts/zones/Dynamis-Beaucedine/IDs.lua | 29 +-- scripts/zones/Dynamis-Buburimu/IDs.lua | 31 +-- scripts/zones/Dynamis-Jeuno/IDs.lua | 29 +-- scripts/zones/Dynamis-Jeuno_[D]/IDs.lua | 21 +- scripts/zones/Dynamis-Qufim/IDs.lua | 31 +-- scripts/zones/Dynamis-San_dOria/IDs.lua | 31 +-- scripts/zones/Dynamis-San_dOria_[D]/IDs.lua | 21 +- scripts/zones/Dynamis-Tavnazia/IDs.lua | 33 +-- scripts/zones/Dynamis-Valkurm/IDs.lua | 31 +-- scripts/zones/Dynamis-Windurst/IDs.lua | 31 +-- scripts/zones/Dynamis-Windurst_[D]/IDs.lua | 21 +- scripts/zones/Dynamis-Xarcabard/IDs.lua | 63 ++--- scripts/zones/East_Ronfaure/IDs.lua | 73 +++--- scripts/zones/East_Ronfaure_[S]/IDs.lua | 41 ++-- scripts/zones/East_Sarutabaruta/IDs.lua | 53 +++-- scripts/zones/Eastern_Adoulin/IDs.lua | 49 ++-- scripts/zones/Eastern_Altepa_Desert/IDs.lua | 53 +++-- scripts/zones/Empyreal_Paradox/IDs.lua | 29 +-- scripts/zones/Escha_RuAun/IDs.lua | 17 +- scripts/zones/Escha_ZiTah/IDs.lua | 17 +- scripts/zones/Everbloom_Hollow/IDs.lua | 15 +- scripts/zones/FeiYin/IDs.lua | 1 + scripts/zones/Feretory/IDs.lua | 15 +- scripts/zones/Foret_de_Hennetiel/IDs.lua | 45 ++-- scripts/zones/Fort_Ghelsba/IDs.lua | 23 +- scripts/zones/Fort_Karugo-Narugo_[S]/IDs.lua | 25 +- scripts/zones/Full_Moon_Fountain/IDs.lua | 29 +-- scripts/zones/GM_Home/IDs.lua | 15 +- scripts/zones/Garlaige_Citadel/IDs.lua | 81 +++---- scripts/zones/Garlaige_Citadel_[S]/IDs.lua | 19 +- scripts/zones/Ghelsba_Outpost/IDs.lua | 1 + scripts/zones/Ghoyus_Reverie/IDs.lua | 15 +- scripts/zones/Giddeus/IDs.lua | 37 +-- scripts/zones/Grand_Palace_of_HuXzoi/IDs.lua | 19 +- scripts/zones/Grauberg_[S]/IDs.lua | 35 +-- scripts/zones/Gusgen_Mines/IDs.lua | 69 +++--- scripts/zones/Gustav_Tunnel/IDs.lua | 43 ++-- scripts/zones/Hall_of_Transference/IDs.lua | 21 +- scripts/zones/Hall_of_the_Gods/IDs.lua | 21 +- scripts/zones/Halvung/IDs.lua | 41 ++-- scripts/zones/Hazhalm_Testing_Grounds/IDs.lua | 19 +- scripts/zones/Heavens_Tower/IDs.lua | 37 +-- scripts/zones/Horlais_Peak/IDs.lua | 57 ++--- scripts/zones/Ifrits_Cauldron/IDs.lua | 61 ++--- scripts/zones/Ilrusi_Atoll/IDs.lua | 55 ++--- scripts/zones/Inner_Horutoto_Ruins/IDs.lua | 49 ++-- scripts/zones/Jade_Sepulcher/IDs.lua | 19 +- scripts/zones/Jugner_Forest/IDs.lua | 77 +++--- scripts/zones/Jugner_Forest_[S]/IDs.lua | 65 ++--- scripts/zones/Kamihr_Drifts/IDs.lua | 45 ++-- scripts/zones/Kazham-Jeuno_Airship/IDs.lua | 23 +- scripts/zones/Kazham/IDs.lua | 59 ++--- scripts/zones/King_Ranperres_Tomb/IDs.lua | 41 ++-- scripts/zones/Konschtat_Highlands/IDs.lua | 93 ++++---- scripts/zones/Korroloka_Tunnel/IDs.lua | 51 ++-- scripts/zones/Kuftal_Tunnel/IDs.lua | 49 ++-- scripts/zones/LaLoff_Amphitheater/IDs.lua | 21 +- scripts/zones/La_Theine_Plateau/IDs.lua | 101 ++++---- scripts/zones/La_Vaule_[S]/IDs.lua | 29 +-- scripts/zones/Labyrinth_of_Onzozo/IDs.lua | 43 ++-- scripts/zones/Leafallia/IDs.lua | 25 +- scripts/zones/Lebros_Cavern/IDs.lua | 45 ++-- scripts/zones/Leujaoam_Sanctum/IDs.lua | 41 ++-- scripts/zones/Lower_Delkfutts_Tower/IDs.lua | 1 + scripts/zones/Lower_Jeuno/IDs.lua | 123 +++++----- scripts/zones/Lufaise_Meadows/IDs.lua | 41 ++-- scripts/zones/Mamook/IDs.lua | 35 +-- .../zones/Mamool_Ja_Training_Grounds/IDs.lua | 35 +-- scripts/zones/Manaclipper/IDs.lua | 21 +- .../zones/Maquette_Abdhaljs-Legion_A/IDs.lua | 15 +- .../zones/Maquette_Abdhaljs-Legion_B/IDs.lua | 7 +- scripts/zones/Marjami_Ravine/IDs.lua | 45 ++-- scripts/zones/Maze_of_Shakhrami/IDs.lua | 59 ++--- scripts/zones/Meriphataud_Mountains/IDs.lua | 73 +++--- .../zones/Meriphataud_Mountains_[S]/IDs.lua | 39 +-- scripts/zones/Metalworks/IDs.lua | 87 +++---- scripts/zones/Mhaura/IDs.lua | 53 +++-- scripts/zones/Middle_Delkfutts_Tower/IDs.lua | 39 +-- scripts/zones/Mine_Shaft_2716/IDs.lua | 21 +- scripts/zones/Misareaux_Coast/IDs.lua | 55 ++--- scripts/zones/Mog_Garden/IDs.lua | 29 +-- scripts/zones/Moh_Gates/IDs.lua | 15 +- scripts/zones/Monarch_Linn/IDs.lua | 23 +- scripts/zones/Monastic_Cavern/IDs.lua | 35 +-- scripts/zones/Mordion_Gaol/IDs.lua | 21 +- scripts/zones/Morimar_Basalt_Fields/IDs.lua | 41 ++-- scripts/zones/Mount_Kamihr/IDs.lua | 21 +- scripts/zones/Mount_Zhayolm/IDs.lua | 59 ++--- scripts/zones/Nashmau/IDs.lua | 63 ++--- .../zones/Navukgo_Execution_Chamber/IDs.lua | 37 +-- scripts/zones/Newton_Movalpolos/IDs.lua | 35 +-- scripts/zones/Norg/IDs.lua | 71 +++--- scripts/zones/North_Gustaberg/IDs.lua | 1 + scripts/zones/North_Gustaberg_[S]/IDs.lua | 41 ++-- scripts/zones/Northern_San_dOria/IDs.lua | 225 +++++++++--------- scripts/zones/Nyzul_Isle/IDs.lua | 115 ++++----- scripts/zones/Oldton_Movalpolos/IDs.lua | 29 +-- .../zones/Open_sea_route_to_Al_Zahbi/IDs.lua | 23 +- .../zones/Open_sea_route_to_Mhaura/IDs.lua | 23 +- scripts/zones/Ordelles_Caves/IDs.lua | 1 + scripts/zones/Outer_Horutoto_Ruins/IDs.lua | 51 ++-- scripts/zones/Outer_RaKaznar/IDs.lua | 33 +-- scripts/zones/Outer_RaKaznar_[U1]/IDs.lua | 15 +- scripts/zones/Outer_RaKaznar_[U2]/IDs.lua | 15 +- scripts/zones/Palborough_Mines/IDs.lua | 1 + scripts/zones/Pashhow_Marshlands/IDs.lua | 69 +++--- scripts/zones/Pashhow_Marshlands_[S]/IDs.lua | 41 ++-- scripts/zones/Periqia/IDs.lua | 81 +++---- scripts/zones/Phanauet_Channel/IDs.lua | 21 +- scripts/zones/Phomiuna_Aqueducts/IDs.lua | 35 +-- scripts/zones/Port_Bastok/IDs.lua | 123 +++++----- scripts/zones/Port_Jeuno/IDs.lua | 81 +++---- scripts/zones/Port_San_dOria/IDs.lua | 1 + scripts/zones/Port_Windurst/IDs.lua | 1 + scripts/zones/Promyvion-Dem/IDs.lua | 21 +- scripts/zones/Promyvion-Holla/IDs.lua | 21 +- scripts/zones/Promyvion-Mea/IDs.lua | 21 +- scripts/zones/Promyvion-Vahzl/IDs.lua | 29 +-- scripts/zones/Provenance/IDs.lua | 19 +- scripts/zones/PsoXja/IDs.lua | 45 ++-- scripts/zones/QuBia_Arena/IDs.lua | 61 ++--- scripts/zones/Qufim_Island/IDs.lua | 1 + scripts/zones/Quicksand_Caves/IDs.lua | 61 ++--- scripts/zones/Qulun_Dome/IDs.lua | 1 + scripts/zones/RaKaznar_Inner_Court/IDs.lua | 17 +- scripts/zones/RaKaznar_Turris/IDs.lua | 19 +- scripts/zones/Rabao/IDs.lua | 57 ++--- scripts/zones/Rala_Waterways/IDs.lua | 27 ++- scripts/zones/Rala_Waterways_U/IDs.lua | 15 +- scripts/zones/Ranguemont_Pass/IDs.lua | 41 ++-- scripts/zones/Reisenjima/IDs.lua | 17 +- scripts/zones/Reisenjima_Henge/IDs.lua | 17 +- scripts/zones/Reisenjima_Sanctorium/IDs.lua | 21 +- scripts/zones/Riverne-Site_A01/IDs.lua | 35 +-- scripts/zones/Riverne-Site_B01/IDs.lua | 37 +-- scripts/zones/RoMaeve/IDs.lua | 47 ++-- scripts/zones/Rolanberry_Fields/IDs.lua | 73 +++--- scripts/zones/Rolanberry_Fields_[S]/IDs.lua | 41 ++-- scripts/zones/RuAun_Gardens/IDs.lua | 47 ++-- scripts/zones/RuLude_Gardens/IDs.lua | 1 + scripts/zones/Ruhotz_Silvermines/IDs.lua | 15 +- scripts/zones/Sacrarium/IDs.lua | 53 +++-- scripts/zones/Sacrificial_Chamber/IDs.lua | 23 +- scripts/zones/San_dOria-Jeuno_Airship/IDs.lua | 23 +- scripts/zones/Sauromugue_Champaign/IDs.lua | 77 +++--- .../zones/Sauromugue_Champaign_[S]/IDs.lua | 43 ++-- scripts/zones/Sea_Serpent_Grotto/IDs.lua | 71 +++--- scripts/zones/Sealions_Den/IDs.lua | 31 +-- scripts/zones/Selbina/IDs.lua | 51 ++-- scripts/zones/Ship_bound_for_Mhaura/IDs.lua | 25 +- .../Ship_bound_for_Mhaura_Pirates/IDs.lua | 25 +- scripts/zones/Ship_bound_for_Selbina/IDs.lua | 25 +- .../Ship_bound_for_Selbina_Pirates/IDs.lua | 25 +- scripts/zones/Sih_Gates/IDs.lua | 15 +- scripts/zones/Silver_Sea_Remnants/IDs.lua | 17 +- .../Silver_Sea_route_to_Al_Zahbi/IDs.lua | 25 +- .../zones/Silver_Sea_route_to_Nashmau/IDs.lua | 25 +- scripts/zones/South_Gustaberg/IDs.lua | 59 ++--- scripts/zones/Southern_San_dOria/IDs.lua | 1 + scripts/zones/Southern_San_dOria_[S]/IDs.lua | 93 ++++---- scripts/zones/Spire_of_Dem/IDs.lua | 23 +- scripts/zones/Spire_of_Holla/IDs.lua | 23 +- scripts/zones/Spire_of_Mea/IDs.lua | 23 +- scripts/zones/Spire_of_Vahzl/IDs.lua | 21 +- scripts/zones/Stellar_Fulcrum/IDs.lua | 21 +- scripts/zones/Tahrongi_Canyon/IDs.lua | 99 ++++---- scripts/zones/Talacca_Cove/IDs.lua | 23 +- scripts/zones/Tavnazian_Safehold/IDs.lua | 1 + scripts/zones/Temenos/IDs.lua | 41 ++-- scripts/zones/Temple_of_Uggalepih/IDs.lua | 75 +++--- scripts/zones/The_Ashu_Talif/IDs.lua | 69 +++--- scripts/zones/The_Boyahda_Tree/IDs.lua | 51 ++-- scripts/zones/The_Celestial_Nexus/IDs.lua | 21 +- scripts/zones/The_Colosseum/IDs.lua | 21 +- scripts/zones/The_Eldieme_Necropolis/IDs.lua | 1 + .../zones/The_Eldieme_Necropolis_[S]/IDs.lua | 1 + scripts/zones/The_Garden_of_RuHmet/IDs.lua | 35 +-- scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua | 87 +++---- scripts/zones/The_Shrine_of_RuAvitau/IDs.lua | 39 +-- scripts/zones/The_Shrouded_Maw/IDs.lua | 21 +- scripts/zones/Throne_Room/IDs.lua | 33 +-- scripts/zones/Throne_Room_[S]/IDs.lua | 25 +- scripts/zones/Throne_Room_[V]/IDs.lua | 15 +- scripts/zones/Toraimarai_Canal/IDs.lua | 43 ++-- scripts/zones/Uleguerand_Range/IDs.lua | 31 +-- scripts/zones/Upper_Delkfutts_Tower/IDs.lua | 43 ++-- scripts/zones/Upper_Jeuno/IDs.lua | 1 + scripts/zones/Valkurm_Dunes/IDs.lua | 1 + scripts/zones/Valley_of_Sorrows/IDs.lua | 43 ++-- scripts/zones/VeLugannon_Palace/IDs.lua | 39 +-- scripts/zones/Vunkerl_Inlet_[S]/IDs.lua | 23 +- scripts/zones/Wajaom_Woodlands/IDs.lua | 43 ++-- scripts/zones/Walk_of_Echoes/IDs.lua | 29 +-- scripts/zones/Walk_of_Echoes_P1/IDs.lua | 7 +- scripts/zones/Walk_of_Echoes_P2/IDs.lua | 7 +- scripts/zones/Waughroon_Shrine/IDs.lua | 57 ++--- scripts/zones/West_Ronfaure/IDs.lua | 77 +++--- scripts/zones/West_Sarutabaruta/IDs.lua | 101 ++++---- scripts/zones/West_Sarutabaruta_[S]/IDs.lua | 41 ++-- scripts/zones/Western_Adoulin/IDs.lua | 91 +++---- scripts/zones/Western_Altepa_Desert/IDs.lua | 71 +++--- scripts/zones/Windurst-Jeuno_Airship/IDs.lua | 23 +- scripts/zones/Windurst_Walls/IDs.lua | 1 + scripts/zones/Windurst_Waters/IDs.lua | 107 ++++----- scripts/zones/Windurst_Waters_[S]/IDs.lua | 61 ++--- scripts/zones/Windurst_Woods/IDs.lua | 147 ++++++------ scripts/zones/Woh_Gates/IDs.lua | 15 +- scripts/zones/Xarcabard/IDs.lua | 1 + scripts/zones/Xarcabard_[S]/IDs.lua | 57 ++--- scripts/zones/Yahse_Hunting_Grounds/IDs.lua | 39 +-- scripts/zones/Yhoator_Jungle/IDs.lua | 67 +++--- scripts/zones/Yorcia_Weald/IDs.lua | 33 +-- scripts/zones/Yorcia_Weald_U/IDs.lua | 15 +- scripts/zones/Yughott_Grotto/IDs.lua | 29 +-- scripts/zones/Yuhtunga_Jungle/IDs.lua | 85 +++---- scripts/zones/Zeruhn_Mines/IDs.lua | 41 ++-- scripts/zones/Zhayolm_Remnants/IDs.lua | 17 +- 290 files changed, 5813 insertions(+), 5523 deletions(-) diff --git a/scripts/zones/Abdhaljs_Isle-Purgonorgo/IDs.lua b/scripts/zones/Abdhaljs_Isle-Purgonorgo/IDs.lua index 9f5829b1f84..2d96fd43765 100644 --- a/scripts/zones/Abdhaljs_Isle-Purgonorgo/IDs.lua +++ b/scripts/zones/Abdhaljs_Isle-Purgonorgo/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.ABDHALJS_ISLE_PURGONORGO] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. }, mob = { diff --git a/scripts/zones/Abyssea-Altepa/IDs.lua b/scripts/zones/Abyssea-Altepa/IDs.lua index d27f9cf98ed..6fb6c29fdc2 100644 --- a/scripts/zones/Abyssea-Altepa/IDs.lua +++ b/scripts/zones/Abyssea-Altepa/IDs.lua @@ -11,59 +11,60 @@ zones[xi.zone.ABYSSEA_ALTEPA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: - LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: - STAGGERED = 7324, -- 's attack staggers the fiend! - YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. - BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. - RED_STAGGER = 7327, -- The fiend is frozen in its tracks. - YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! - BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! - RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! - ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. - RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. - NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. - RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. - NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. - MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! - OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! - OBTAINS_ITEM = 7494, -- obtains the item: ! - OBTAINS_KEYITEM = 7495, -- obtains the key item: ! - ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. - TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. - KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. - ITEM_DISAPPEARED = 7501, -- That item had already disappeared. - CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. - CRUOR_OBTAINED = 7503, -- obtained cruor. - OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! - BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! - CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. - PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. - PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. - CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. - RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! - AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] - INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] - GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . - HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. - HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . - HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . - HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . - HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . - PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! - PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. - TRADE_KEY_OPEN = 7557, -- uses and opens the lock! - BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... - INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. - USE_KI = 7584, -- Use the [key item/key items]? Yes. No. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: + LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: + STAGGERED = 7324, -- 's attack staggers the fiend! + YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. + BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. + RED_STAGGER = 7327, -- The fiend is frozen in its tracks. + YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! + BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! + RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! + ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. + RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. + NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. + RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. + NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. + MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! + OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! + OBTAINS_ITEM = 7494, -- obtains the item: ! + OBTAINS_KEYITEM = 7495, -- obtains the key item: ! + ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. + TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. + KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. + ITEM_DISAPPEARED = 7501, -- That item had already disappeared. + CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. + CRUOR_OBTAINED = 7503, -- obtained cruor. + OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! + BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! + CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. + PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. + PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. + CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. + RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! + AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] + INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] + GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . + HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. + HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . + HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . + HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . + HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . + PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! + PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. + TRADE_KEY_OPEN = 7557, -- uses and opens the lock! + BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... + INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. + USE_KI = 7584, -- Use the [key item/key items]? Yes. No. }, mob = { diff --git a/scripts/zones/Abyssea-Attohwa/IDs.lua b/scripts/zones/Abyssea-Attohwa/IDs.lua index 87aff7ca35d..e48039f14e3 100644 --- a/scripts/zones/Abyssea-Attohwa/IDs.lua +++ b/scripts/zones/Abyssea-Attohwa/IDs.lua @@ -11,59 +11,60 @@ zones[xi.zone.ABYSSEA_ATTOHWA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LIGHTS_MESSAGE_1 = 7222, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: - LIGHTS_MESSAGE_2 = 7223, -- Azure: / Ruby: / Amber: - STAGGERED = 7224, -- 's attack staggers the fiend! - YELLOW_STAGGER = 7225, -- The fiend is unable to cast magic. - BLUE_STAGGER = 7226, -- The fiend is unable to use special attacks. - RED_STAGGER = 7227, -- The fiend is frozen in its tracks. - YELLOW_WEAKNESS = 7228, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! - BLUE_WEAKNESS = 7229, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! - RED_WEAKNESS = 7230, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! - ABYSSEA_TIME_OFFSET = 7231, -- Your visitant status will wear off in [second/minute]. - RETURNING_TO_SEARING_IN = 7240, -- Returning to the Searing Ward in [second/seconds]. - NO_VISITANT_WARD = 7241, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. - RETURNING_TO_WARD = 7243, -- Returning to the Searing Ward now. - NO_VISITANT_STATUS = 7300, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. - MONSTER_CONCEALED_CHEST = 7383, -- The monster was concealing a treasure chest! - OBTAINS_TEMP_ITEM = 7393, -- obtains the temporary item: ! - OBTAINS_ITEM = 7394, -- obtains the item: ! - OBTAINS_KEYITEM = 7395, -- obtains the key item: ! - ADD_SPOILS_TO_TREASURE = 7396, -- transferred the contents of the pyxis to the cache of lottable spoils. - TEMP_ITEM_DISAPPEARED = 7399, -- That temporary item had already disappeared. - KEYITEM_DISAPPEARED = 7400, -- That key item had already disappeared. - ITEM_DISAPPEARED = 7401, -- That item had already disappeared. - CHEST_DESPAWNED = 7402, -- The treasure chest had already disappeared. - CRUOR_OBTAINED = 7403, -- obtained cruor. - OBTAINS_SEVERAL_TEMPS = 7404, -- obtains several temporary items! - BODY_EMITS_OFFSET = 7405, -- 's body emits [a faint/a mild/a strong] pearlescent light! - CANNOT_OPEN_CHEST = 7412, -- You cannot open that treasure chest. - PLAYER_HAS_CLAIM_OF_CHEST = 7413, -- has claim over that treasure chest. - PARTY_NOT_OWN_CHEST = 7414, -- Your party does not have claim over that treasure chest. - CHEST_DISAPPEARED = 7417, -- The treasure chest has disappeared. - RANDOM_SUCCESS_FAIL_GUESS = 7439, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! - AIR_PRESSURE_CHANGE = 7443, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] - INPUT_SUCCESS_FAIL_GUESS = 7448, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] - GREATER_OR_LESS_THAN = 7449, -- You have a hunch that the lock's combination is [greater/less] than . - HUNCH_SECOND_FIRST_EVEN_ODD = 7450, -- You have a hunch that the [second/first] digit is [even/odd]. - HUNCH_SECOND_FIRST_IS = 7451, -- You have a hunch that the [second/first] digit is . - HUNCH_SECOND_FIRST_IS_OR = 7452, -- You have a hunch that the [second/first] digit is , , or . - HUNCH_ONE_DIGIT_IS = 7453, -- You have a hunch that one of the digits is . - HUNCH_SUM_EQUALS = 7454, -- You have a hunch that the sum of the two digits is . - PLAYER_OPENED_LOCK = 7455, -- succeeded in opening the lock! - PLAYER_FAILED_LOCK = 7456, -- failed to open the lock. - TRADE_KEY_OPEN = 7457, -- uses and opens the lock! - BOUNDLESS_RAGE = 7480, -- You sense an aura of boundless rage... - INFO_KI = 7481, -- Your keen senses tell you that something may happen if only you had [this item/these items]. - USE_KI = 7484, -- Use the [key item/key items]? Yes. No. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LIGHTS_MESSAGE_1 = 7222, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: + LIGHTS_MESSAGE_2 = 7223, -- Azure: / Ruby: / Amber: + STAGGERED = 7224, -- 's attack staggers the fiend! + YELLOW_STAGGER = 7225, -- The fiend is unable to cast magic. + BLUE_STAGGER = 7226, -- The fiend is unable to use special attacks. + RED_STAGGER = 7227, -- The fiend is frozen in its tracks. + YELLOW_WEAKNESS = 7228, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! + BLUE_WEAKNESS = 7229, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! + RED_WEAKNESS = 7230, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! + ABYSSEA_TIME_OFFSET = 7231, -- Your visitant status will wear off in [second/minute]. + RETURNING_TO_SEARING_IN = 7240, -- Returning to the Searing Ward in [second/seconds]. + NO_VISITANT_WARD = 7241, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. + RETURNING_TO_WARD = 7243, -- Returning to the Searing Ward now. + NO_VISITANT_STATUS = 7300, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. + MONSTER_CONCEALED_CHEST = 7383, -- The monster was concealing a treasure chest! + OBTAINS_TEMP_ITEM = 7393, -- obtains the temporary item: ! + OBTAINS_ITEM = 7394, -- obtains the item: ! + OBTAINS_KEYITEM = 7395, -- obtains the key item: ! + ADD_SPOILS_TO_TREASURE = 7396, -- transferred the contents of the pyxis to the cache of lottable spoils. + TEMP_ITEM_DISAPPEARED = 7399, -- That temporary item had already disappeared. + KEYITEM_DISAPPEARED = 7400, -- That key item had already disappeared. + ITEM_DISAPPEARED = 7401, -- That item had already disappeared. + CHEST_DESPAWNED = 7402, -- The treasure chest had already disappeared. + CRUOR_OBTAINED = 7403, -- obtained cruor. + OBTAINS_SEVERAL_TEMPS = 7404, -- obtains several temporary items! + BODY_EMITS_OFFSET = 7405, -- 's body emits [a faint/a mild/a strong] pearlescent light! + CANNOT_OPEN_CHEST = 7412, -- You cannot open that treasure chest. + PLAYER_HAS_CLAIM_OF_CHEST = 7413, -- has claim over that treasure chest. + PARTY_NOT_OWN_CHEST = 7414, -- Your party does not have claim over that treasure chest. + CHEST_DISAPPEARED = 7417, -- The treasure chest has disappeared. + RANDOM_SUCCESS_FAIL_GUESS = 7439, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! + AIR_PRESSURE_CHANGE = 7443, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] + INPUT_SUCCESS_FAIL_GUESS = 7448, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] + GREATER_OR_LESS_THAN = 7449, -- You have a hunch that the lock's combination is [greater/less] than . + HUNCH_SECOND_FIRST_EVEN_ODD = 7450, -- You have a hunch that the [second/first] digit is [even/odd]. + HUNCH_SECOND_FIRST_IS = 7451, -- You have a hunch that the [second/first] digit is . + HUNCH_SECOND_FIRST_IS_OR = 7452, -- You have a hunch that the [second/first] digit is , , or . + HUNCH_ONE_DIGIT_IS = 7453, -- You have a hunch that one of the digits is . + HUNCH_SUM_EQUALS = 7454, -- You have a hunch that the sum of the two digits is . + PLAYER_OPENED_LOCK = 7455, -- succeeded in opening the lock! + PLAYER_FAILED_LOCK = 7456, -- failed to open the lock. + TRADE_KEY_OPEN = 7457, -- uses and opens the lock! + BOUNDLESS_RAGE = 7480, -- You sense an aura of boundless rage... + INFO_KI = 7481, -- Your keen senses tell you that something may happen if only you had [this item/these items]. + USE_KI = 7484, -- Use the [key item/key items]? Yes. No. }, mob = { diff --git a/scripts/zones/Abyssea-Empyreal_Paradox/IDs.lua b/scripts/zones/Abyssea-Empyreal_Paradox/IDs.lua index 9d07fed5741..32f74169339 100644 --- a/scripts/zones/Abyssea-Empyreal_Paradox/IDs.lua +++ b/scripts/zones/Abyssea-Empyreal_Paradox/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.ABYSSEA_EMPYREAL_PARADOX] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CRUOR_OBTAINED = 7403, -- obtained cruor. - PARTY_MEMBERS_HAVE_FALLEN = 8053, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 8060, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CRUOR_OBTAINED = 7403, -- obtained cruor. + PARTY_MEMBERS_HAVE_FALLEN = 8053, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 8060, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Abyssea-Grauberg/IDs.lua b/scripts/zones/Abyssea-Grauberg/IDs.lua index 720069eab25..992e912d127 100644 --- a/scripts/zones/Abyssea-Grauberg/IDs.lua +++ b/scripts/zones/Abyssea-Grauberg/IDs.lua @@ -11,63 +11,64 @@ zones[xi.zone.ABYSSEA_GRAUBERG] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - PLAYER_GAINED_EXPERIENCE = 6999, -- gained [points of experience/limit points]. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: - LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: - STAGGERED = 7324, -- 's attack staggers the fiend! - YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. - BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. - RED_STAGGER = 7327, -- The fiend is frozen in its tracks. - YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! - BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! - RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! - ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. - RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. - NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. - RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. - NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. - MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! - OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! - OBTAINS_ITEM = 7494, -- obtains the item: ! - OBTAINS_KEYITEM = 7495, -- obtains the key item: ! - ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. - TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. - KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. - ITEM_DISAPPEARED = 7501, -- That item had already disappeared. - CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. - CRUOR_OBTAINED = 7503, -- obtained cruor. - OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! - BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! - CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. - PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. - PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. - CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. - RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! - AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] - INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] - GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . - HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. - HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . - HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . - HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . - HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . - PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! - PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. - TRADE_KEY_OPEN = 7557, -- uses and opens the lock! - BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... - INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. - USE_KI = 7584, -- Use the [key item/key items]? Yes. No. - OBTAINS_DOMINION_NOTES = 7873, -- obtains Dominion note[/s] (Total: ). - DOMINION_SIGNED_ON = 10409, -- You have signed on for Dominion Ops! - CANCELED_OBJECTIVE = 10410, -- You have canceled your objective. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + PLAYER_GAINED_EXPERIENCE = 6999, -- gained [points of experience/limit points]. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: + LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: + STAGGERED = 7324, -- 's attack staggers the fiend! + YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. + BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. + RED_STAGGER = 7327, -- The fiend is frozen in its tracks. + YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! + BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! + RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! + ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. + RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. + NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. + RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. + NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. + MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! + OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! + OBTAINS_ITEM = 7494, -- obtains the item: ! + OBTAINS_KEYITEM = 7495, -- obtains the key item: ! + ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. + TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. + KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. + ITEM_DISAPPEARED = 7501, -- That item had already disappeared. + CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. + CRUOR_OBTAINED = 7503, -- obtained cruor. + OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! + BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! + CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. + PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. + PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. + CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. + RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! + AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] + INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] + GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . + HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. + HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . + HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . + HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . + HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . + PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! + PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. + TRADE_KEY_OPEN = 7557, -- uses and opens the lock! + BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... + INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. + USE_KI = 7584, -- Use the [key item/key items]? Yes. No. + OBTAINS_DOMINION_NOTES = 7873, -- obtains Dominion note[/s] (Total: ). + DOMINION_SIGNED_ON = 10409, -- You have signed on for Dominion Ops! + CANCELED_OBJECTIVE = 10410, -- You have canceled your objective. }, mob = { diff --git a/scripts/zones/Abyssea-Konschtat/IDs.lua b/scripts/zones/Abyssea-Konschtat/IDs.lua index f9834448755..a012b95218d 100644 --- a/scripts/zones/Abyssea-Konschtat/IDs.lua +++ b/scripts/zones/Abyssea-Konschtat/IDs.lua @@ -11,62 +11,63 @@ zones[xi.zone.ABYSSEA_KONSCHTAT] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - LOST_KEYITEM = 6394, -- Lost key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: - LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: - STAGGERED = 7324, -- 's attack staggers the fiend! - YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. - BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. - RED_STAGGER = 7327, -- The fiend is frozen in its tracks. - YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! - BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! - RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! - ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. - RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. - NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. - RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. - ALREADY_POSSESS_KEY_ITEM = 7399, -- It appears you already possess that key item. - NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. - MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! - OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! - OBTAINS_ITEM = 7494, -- obtains the item: ! - OBTAINS_KEYITEM = 7495, -- obtains the key item: ! - ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. - TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. - KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. - ITEM_DISAPPEARED = 7501, -- That item had already disappeared. - CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. - CRUOR_OBTAINED = 7503, -- obtained cruor. - OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! - BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! - CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. - PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. - PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. - CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. - RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! - AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] - INPUT_ERROR = 7547, -- Please input a two-digit combination between . - INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] - GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . - HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. - HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . - HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . - HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . - HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . - PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! - PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. - TRADE_KEY_OPEN = 7557, -- uses and opens the lock! - BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... - INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. - USE_KI = 7584, -- Use the [key item/key items]? Yes. No. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + LOST_KEYITEM = 6394, -- Lost key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: + LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: + STAGGERED = 7324, -- 's attack staggers the fiend! + YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. + BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. + RED_STAGGER = 7327, -- The fiend is frozen in its tracks. + YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! + BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! + RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! + ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. + RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. + NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. + RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. + ALREADY_POSSESS_KEY_ITEM = 7399, -- It appears you already possess that key item. + NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. + MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! + OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! + OBTAINS_ITEM = 7494, -- obtains the item: ! + OBTAINS_KEYITEM = 7495, -- obtains the key item: ! + ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. + TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. + KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. + ITEM_DISAPPEARED = 7501, -- That item had already disappeared. + CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. + CRUOR_OBTAINED = 7503, -- obtained cruor. + OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! + BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! + CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. + PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. + PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. + CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. + RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! + AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] + INPUT_ERROR = 7547, -- Please input a two-digit combination between . + INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] + GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . + HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. + HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . + HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . + HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . + HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . + PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! + PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. + TRADE_KEY_OPEN = 7557, -- uses and opens the lock! + BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... + INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. + USE_KI = 7584, -- Use the [key item/key items]? Yes. No. }, mob = { diff --git a/scripts/zones/Abyssea-La_Theine/IDs.lua b/scripts/zones/Abyssea-La_Theine/IDs.lua index a7354a26bc9..bca5a4bbd4f 100644 --- a/scripts/zones/Abyssea-La_Theine/IDs.lua +++ b/scripts/zones/Abyssea-La_Theine/IDs.lua @@ -11,59 +11,60 @@ zones[xi.zone.ABYSSEA_LA_THEINE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: - LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: - STAGGERED = 7324, -- 's attack staggers the fiend! - YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. - BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. - RED_STAGGER = 7327, -- The fiend is frozen in its tracks. - YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! - BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! - RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! - ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. - RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. - NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. - RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. - NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. - MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! - OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! - OBTAINS_ITEM = 7494, -- obtains the item: ! - OBTAINS_KEYITEM = 7495, -- obtains the key item: ! - ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. - TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. - KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. - ITEM_DISAPPEARED = 7501, -- That item had already disappeared. - CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. - CRUOR_OBTAINED = 7503, -- obtained cruor. - OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! - BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! - CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. - PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. - PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. - CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. - RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! - AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] - INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] - GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . - HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. - HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . - HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . - HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . - HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . - PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! - PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. - TRADE_KEY_OPEN = 7557, -- uses and opens the lock! - BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... - INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. - USE_KI = 7584, -- Use the [key item/key items]? Yes. No. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: + LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: + STAGGERED = 7324, -- 's attack staggers the fiend! + YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. + BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. + RED_STAGGER = 7327, -- The fiend is frozen in its tracks. + YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! + BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! + RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! + ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. + RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. + NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. + RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. + NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. + MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! + OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! + OBTAINS_ITEM = 7494, -- obtains the item: ! + OBTAINS_KEYITEM = 7495, -- obtains the key item: ! + ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. + TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. + KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. + ITEM_DISAPPEARED = 7501, -- That item had already disappeared. + CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. + CRUOR_OBTAINED = 7503, -- obtained cruor. + OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! + BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! + CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. + PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. + PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. + CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. + RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! + AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] + INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] + GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . + HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. + HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . + HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . + HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . + HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . + PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! + PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. + TRADE_KEY_OPEN = 7557, -- uses and opens the lock! + BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... + INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. + USE_KI = 7584, -- Use the [key item/key items]? Yes. No. }, mob = { diff --git a/scripts/zones/Abyssea-Misareaux/IDs.lua b/scripts/zones/Abyssea-Misareaux/IDs.lua index 4f329c600a8..50b9537f8a7 100644 --- a/scripts/zones/Abyssea-Misareaux/IDs.lua +++ b/scripts/zones/Abyssea-Misareaux/IDs.lua @@ -11,59 +11,60 @@ zones[xi.zone.ABYSSEA_MISAREAUX] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: - LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: - STAGGERED = 7324, -- 's attack staggers the fiend! - YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. - BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. - RED_STAGGER = 7327, -- The fiend is frozen in its tracks. - YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! - BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! - RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! - ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. - RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. - NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. - RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. - NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. - MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! - OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! - OBTAINS_ITEM = 7494, -- obtains the item: ! - OBTAINS_KEYITEM = 7495, -- obtains the key item: ! - ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. - TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. - KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. - ITEM_DISAPPEARED = 7501, -- That item had already disappeared. - CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. - CRUOR_OBTAINED = 7503, -- obtained cruor. - OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! - BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! - CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. - PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. - PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. - CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. - RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! - AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] - INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] - GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . - HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. - HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . - HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . - HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . - HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . - PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! - PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. - TRADE_KEY_OPEN = 7557, -- uses and opens the lock! - BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... - INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. - USE_KI = 7584, -- Use the [key item/key items]? Yes. No. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: + LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: + STAGGERED = 7324, -- 's attack staggers the fiend! + YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. + BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. + RED_STAGGER = 7327, -- The fiend is frozen in its tracks. + YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! + BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! + RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! + ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. + RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. + NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. + RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. + NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. + MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! + OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! + OBTAINS_ITEM = 7494, -- obtains the item: ! + OBTAINS_KEYITEM = 7495, -- obtains the key item: ! + ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. + TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. + KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. + ITEM_DISAPPEARED = 7501, -- That item had already disappeared. + CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. + CRUOR_OBTAINED = 7503, -- obtained cruor. + OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! + BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! + CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. + PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. + PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. + CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. + RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! + AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] + INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] + GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . + HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. + HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . + HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . + HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . + HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . + PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! + PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. + TRADE_KEY_OPEN = 7557, -- uses and opens the lock! + BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... + INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. + USE_KI = 7584, -- Use the [key item/key items]? Yes. No. }, mob = { diff --git a/scripts/zones/Abyssea-Tahrongi/IDs.lua b/scripts/zones/Abyssea-Tahrongi/IDs.lua index 013228b3fec..b44b091434c 100644 --- a/scripts/zones/Abyssea-Tahrongi/IDs.lua +++ b/scripts/zones/Abyssea-Tahrongi/IDs.lua @@ -11,59 +11,60 @@ zones[xi.zone.ABYSSEA_TAHRONGI] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: - LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: - STAGGERED = 7324, -- 's attack staggers the fiend! - YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. - BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. - RED_STAGGER = 7327, -- The fiend is frozen in its tracks. - YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! - BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! - RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! - ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. - RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. - NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. - RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. - NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. - MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! - OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! - OBTAINS_ITEM = 7494, -- obtains the item: ! - OBTAINS_KEYITEM = 7495, -- obtains the key item: ! - ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. - TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. - KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. - ITEM_DISAPPEARED = 7501, -- That item had already disappeared. - CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. - CRUOR_OBTAINED = 7503, -- obtained cruor. - OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! - BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! - CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. - PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. - PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. - CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. - RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! - AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] - INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] - GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . - HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. - HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . - HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . - HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . - HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . - PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! - PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. - TRADE_KEY_OPEN = 7557, -- uses and opens the lock! - BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... - INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. - USE_KI = 7584, -- Use the [key item/key items]? Yes. No. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: + LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: + STAGGERED = 7324, -- 's attack staggers the fiend! + YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. + BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. + RED_STAGGER = 7327, -- The fiend is frozen in its tracks. + YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! + BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! + RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! + ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. + RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. + NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. + RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. + NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. + MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! + OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! + OBTAINS_ITEM = 7494, -- obtains the item: ! + OBTAINS_KEYITEM = 7495, -- obtains the key item: ! + ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. + TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. + KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. + ITEM_DISAPPEARED = 7501, -- That item had already disappeared. + CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. + CRUOR_OBTAINED = 7503, -- obtained cruor. + OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! + BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! + CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. + PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. + PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. + CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. + RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! + AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] + INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] + GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . + HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. + HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . + HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . + HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . + HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . + PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! + PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. + TRADE_KEY_OPEN = 7557, -- uses and opens the lock! + BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... + INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. + USE_KI = 7584, -- Use the [key item/key items]? Yes. No. }, mob = { diff --git a/scripts/zones/Abyssea-Uleguerand/IDs.lua b/scripts/zones/Abyssea-Uleguerand/IDs.lua index 37843349130..7b8b2a260bd 100644 --- a/scripts/zones/Abyssea-Uleguerand/IDs.lua +++ b/scripts/zones/Abyssea-Uleguerand/IDs.lua @@ -11,59 +11,60 @@ zones[xi.zone.ABYSSEA_ULEGUERAND] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LIGHTS_MESSAGE_1 = 7222, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: - LIGHTS_MESSAGE_2 = 7223, -- Azure: / Ruby: / Amber: - STAGGERED = 7224, -- 's attack staggers the fiend! - YELLOW_STAGGER = 7225, -- The fiend is unable to cast magic. - BLUE_STAGGER = 7226, -- The fiend is unable to use special attacks. - RED_STAGGER = 7227, -- The fiend is frozen in its tracks. - YELLOW_WEAKNESS = 7228, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! - BLUE_WEAKNESS = 7229, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! - RED_WEAKNESS = 7230, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! - ABYSSEA_TIME_OFFSET = 7231, -- Your visitant status will wear off in [second/minute]. - RETURNING_TO_SEARING_IN = 7240, -- Returning to the Searing Ward in [second/seconds]. - NO_VISITANT_WARD = 7241, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. - RETURNING_TO_WARD = 7243, -- Returning to the Searing Ward now. - NO_VISITANT_STATUS = 7300, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. - MONSTER_CONCEALED_CHEST = 7383, -- The monster was concealing a treasure chest! - OBTAINS_TEMP_ITEM = 7393, -- obtains the temporary item: ! - OBTAINS_ITEM = 7394, -- obtains the item: ! - OBTAINS_KEYITEM = 7395, -- obtains the key item: ! - ADD_SPOILS_TO_TREASURE = 7396, -- transferred the contents of the pyxis to the cache of lottable spoils. - TEMP_ITEM_DISAPPEARED = 7399, -- That temporary item had already disappeared. - KEYITEM_DISAPPEARED = 7400, -- That key item had already disappeared. - ITEM_DISAPPEARED = 7401, -- That item had already disappeared. - CHEST_DESPAWNED = 7402, -- The treasure chest had already disappeared. - CRUOR_OBTAINED = 7403, -- obtained cruor. - OBTAINS_SEVERAL_TEMPS = 7404, -- obtains several temporary items! - BODY_EMITS_OFFSET = 7405, -- 's body emits [a faint/a mild/a strong] pearlescent light! - CANNOT_OPEN_CHEST = 7412, -- You cannot open that treasure chest. - PLAYER_HAS_CLAIM_OF_CHEST = 7413, -- has claim over that treasure chest. - PARTY_NOT_OWN_CHEST = 7414, -- Your party does not have claim over that treasure chest. - CHEST_DISAPPEARED = 7417, -- The treasure chest has disappeared. - RANDOM_SUCCESS_FAIL_GUESS = 7439, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! - AIR_PRESSURE_CHANGE = 7443, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] - INPUT_SUCCESS_FAIL_GUESS = 7448, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] - GREATER_OR_LESS_THAN = 7449, -- You have a hunch that the lock's combination is [greater/less] than . - HUNCH_SECOND_FIRST_EVEN_ODD = 7450, -- You have a hunch that the [second/first] digit is [even/odd]. - HUNCH_SECOND_FIRST_IS = 7451, -- You have a hunch that the [second/first] digit is . - HUNCH_SECOND_FIRST_IS_OR = 7452, -- You have a hunch that the [second/first] digit is , , or . - HUNCH_ONE_DIGIT_IS = 7453, -- You have a hunch that one of the digits is . - HUNCH_SUM_EQUALS = 7454, -- You have a hunch that the sum of the two digits is . - PLAYER_OPENED_LOCK = 7455, -- succeeded in opening the lock! - PLAYER_FAILED_LOCK = 7456, -- failed to open the lock. - TRADE_KEY_OPEN = 7457, -- uses and opens the lock! - BOUNDLESS_RAGE = 7480, -- You sense an aura of boundless rage... - INFO_KI = 7481, -- Your keen senses tell you that something may happen if only you had [this item/these items]. - USE_KI = 7484, -- Use the [key item/key items]? Yes. No. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LIGHTS_MESSAGE_1 = 7222, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: + LIGHTS_MESSAGE_2 = 7223, -- Azure: / Ruby: / Amber: + STAGGERED = 7224, -- 's attack staggers the fiend! + YELLOW_STAGGER = 7225, -- The fiend is unable to cast magic. + BLUE_STAGGER = 7226, -- The fiend is unable to use special attacks. + RED_STAGGER = 7227, -- The fiend is frozen in its tracks. + YELLOW_WEAKNESS = 7228, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! + BLUE_WEAKNESS = 7229, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! + RED_WEAKNESS = 7230, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! + ABYSSEA_TIME_OFFSET = 7231, -- Your visitant status will wear off in [second/minute]. + RETURNING_TO_SEARING_IN = 7240, -- Returning to the Searing Ward in [second/seconds]. + NO_VISITANT_WARD = 7241, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. + RETURNING_TO_WARD = 7243, -- Returning to the Searing Ward now. + NO_VISITANT_STATUS = 7300, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. + MONSTER_CONCEALED_CHEST = 7383, -- The monster was concealing a treasure chest! + OBTAINS_TEMP_ITEM = 7393, -- obtains the temporary item: ! + OBTAINS_ITEM = 7394, -- obtains the item: ! + OBTAINS_KEYITEM = 7395, -- obtains the key item: ! + ADD_SPOILS_TO_TREASURE = 7396, -- transferred the contents of the pyxis to the cache of lottable spoils. + TEMP_ITEM_DISAPPEARED = 7399, -- That temporary item had already disappeared. + KEYITEM_DISAPPEARED = 7400, -- That key item had already disappeared. + ITEM_DISAPPEARED = 7401, -- That item had already disappeared. + CHEST_DESPAWNED = 7402, -- The treasure chest had already disappeared. + CRUOR_OBTAINED = 7403, -- obtained cruor. + OBTAINS_SEVERAL_TEMPS = 7404, -- obtains several temporary items! + BODY_EMITS_OFFSET = 7405, -- 's body emits [a faint/a mild/a strong] pearlescent light! + CANNOT_OPEN_CHEST = 7412, -- You cannot open that treasure chest. + PLAYER_HAS_CLAIM_OF_CHEST = 7413, -- has claim over that treasure chest. + PARTY_NOT_OWN_CHEST = 7414, -- Your party does not have claim over that treasure chest. + CHEST_DISAPPEARED = 7417, -- The treasure chest has disappeared. + RANDOM_SUCCESS_FAIL_GUESS = 7439, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! + AIR_PRESSURE_CHANGE = 7443, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] + INPUT_SUCCESS_FAIL_GUESS = 7448, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] + GREATER_OR_LESS_THAN = 7449, -- You have a hunch that the lock's combination is [greater/less] than . + HUNCH_SECOND_FIRST_EVEN_ODD = 7450, -- You have a hunch that the [second/first] digit is [even/odd]. + HUNCH_SECOND_FIRST_IS = 7451, -- You have a hunch that the [second/first] digit is . + HUNCH_SECOND_FIRST_IS_OR = 7452, -- You have a hunch that the [second/first] digit is , , or . + HUNCH_ONE_DIGIT_IS = 7453, -- You have a hunch that one of the digits is . + HUNCH_SUM_EQUALS = 7454, -- You have a hunch that the sum of the two digits is . + PLAYER_OPENED_LOCK = 7455, -- succeeded in opening the lock! + PLAYER_FAILED_LOCK = 7456, -- failed to open the lock. + TRADE_KEY_OPEN = 7457, -- uses and opens the lock! + BOUNDLESS_RAGE = 7480, -- You sense an aura of boundless rage... + INFO_KI = 7481, -- Your keen senses tell you that something may happen if only you had [this item/these items]. + USE_KI = 7484, -- Use the [key item/key items]? Yes. No. }, mob = { diff --git a/scripts/zones/Abyssea-Vunkerl/IDs.lua b/scripts/zones/Abyssea-Vunkerl/IDs.lua index f8cdba37723..85cb8520982 100644 --- a/scripts/zones/Abyssea-Vunkerl/IDs.lua +++ b/scripts/zones/Abyssea-Vunkerl/IDs.lua @@ -11,59 +11,60 @@ zones[xi.zone.ABYSSEA_VUNKERL] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: - LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: - STAGGERED = 7324, -- 's attack staggers the fiend! - YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. - BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. - RED_STAGGER = 7327, -- The fiend is frozen in its tracks. - YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! - BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! - RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! - ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. - RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. - NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. - RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. - NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. - MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! - OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! - OBTAINS_ITEM = 7494, -- obtains the item: ! - OBTAINS_KEYITEM = 7495, -- obtains the key item: ! - ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. - TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. - KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. - ITEM_DISAPPEARED = 7501, -- That item had already disappeared. - CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. - CRUOR_OBTAINED = 7503, -- obtained cruor. - OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! - BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! - CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. - PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. - PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. - CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. - RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! - AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] - INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] - GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . - HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. - HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . - HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . - HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . - HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . - PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! - PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. - TRADE_KEY_OPEN = 7557, -- uses and opens the lock! - BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... - INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. - USE_KI = 7584, -- Use the [key item/key items]? Yes. No. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CRUOR_TOTAL = 6988, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LIGHTS_MESSAGE_1 = 7322, -- Visitant Light Intensity Pearlescent: / Ebon: Golden: / Silvery: + LIGHTS_MESSAGE_2 = 7323, -- Azure: / Ruby: / Amber: + STAGGERED = 7324, -- 's attack staggers the fiend! + YELLOW_STAGGER = 7325, -- The fiend is unable to cast magic. + BLUE_STAGGER = 7326, -- The fiend is unable to use special attacks. + RED_STAGGER = 7327, -- The fiend is frozen in its tracks. + YELLOW_WEAKNESS = 7328, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental magic! + BLUE_WEAKNESS = 7329, -- The fiend appears vulnerable to [/hand-to-hand/dagger/sword/great sword/axe/great axe/scythe/polearm/katana/great katana/club/staff/archery/marksmanship] weapon skills! + RED_WEAKNESS = 7330, -- The fiend appears vulnerable to [/fire/ice/wind/earth/lightning/water/light/darkness] elemental weapon skills! + ABYSSEA_TIME_OFFSET = 7331, -- Your visitant status will wear off in [second/minute]. + RETURNING_TO_SEARING_IN = 7340, -- Returning to the Searing Ward in [second/seconds]. + NO_VISITANT_WARD = 7341, -- You do not have visitant status. Returning to the Searing Ward in [second/seconds]. + RETURNING_TO_WARD = 7343, -- Returning to the Searing Ward now. + NO_VISITANT_STATUS = 7400, -- You do not have visitant status. Please proceed to the nearest Conflux Surveyor to have it granted. + MONSTER_CONCEALED_CHEST = 7483, -- The monster was concealing a treasure chest! + OBTAINS_TEMP_ITEM = 7493, -- obtains the temporary item: ! + OBTAINS_ITEM = 7494, -- obtains the item: ! + OBTAINS_KEYITEM = 7495, -- obtains the key item: ! + ADD_SPOILS_TO_TREASURE = 7496, -- transferred the contents of the pyxis to the cache of lottable spoils. + TEMP_ITEM_DISAPPEARED = 7499, -- That temporary item had already disappeared. + KEYITEM_DISAPPEARED = 7500, -- That key item had already disappeared. + ITEM_DISAPPEARED = 7501, -- That item had already disappeared. + CHEST_DESPAWNED = 7502, -- The treasure chest had already disappeared. + CRUOR_OBTAINED = 7503, -- obtained cruor. + OBTAINS_SEVERAL_TEMPS = 7504, -- obtains several temporary items! + BODY_EMITS_OFFSET = 7505, -- 's body emits [a faint/a mild/a strong] pearlescent light! + CANNOT_OPEN_CHEST = 7512, -- You cannot open that treasure chest. + PLAYER_HAS_CLAIM_OF_CHEST = 7513, -- has claim over that treasure chest. + PARTY_NOT_OWN_CHEST = 7514, -- Your party does not have claim over that treasure chest. + CHEST_DISAPPEARED = 7517, -- The treasure chest has disappeared. + RANDOM_SUCCESS_FAIL_GUESS = 7539, -- The randomly generated number was ! guessed [successfully/unsuccessfully]! + AIR_PRESSURE_CHANGE = 7543, -- [reduced/increased] the air pressure by units. Current air pressure: [/ (minimum)/ (maximum)] + INPUT_SUCCESS_FAIL_GUESS = 7548, -- inputs the number [, but nothing happens./, successfully unlocking the chest!] + GREATER_OR_LESS_THAN = 7549, -- You have a hunch that the lock's combination is [greater/less] than . + HUNCH_SECOND_FIRST_EVEN_ODD = 7550, -- You have a hunch that the [second/first] digit is [even/odd]. + HUNCH_SECOND_FIRST_IS = 7551, -- You have a hunch that the [second/first] digit is . + HUNCH_SECOND_FIRST_IS_OR = 7552, -- You have a hunch that the [second/first] digit is , , or . + HUNCH_ONE_DIGIT_IS = 7553, -- You have a hunch that one of the digits is . + HUNCH_SUM_EQUALS = 7554, -- You have a hunch that the sum of the two digits is . + PLAYER_OPENED_LOCK = 7555, -- succeeded in opening the lock! + PLAYER_FAILED_LOCK = 7556, -- failed to open the lock. + TRADE_KEY_OPEN = 7557, -- uses and opens the lock! + BOUNDLESS_RAGE = 7580, -- You sense an aura of boundless rage... + INFO_KI = 7581, -- Your keen senses tell you that something may happen if only you had [this item/these items]. + USE_KI = 7584, -- Use the [key item/key items]? Yes. No. }, mob = { diff --git a/scripts/zones/Aht_Urhgan_Whitegate/IDs.lua b/scripts/zones/Aht_Urhgan_Whitegate/IDs.lua index db0ea6dc328..5100b8bf686 100644 --- a/scripts/zones/Aht_Urhgan_Whitegate/IDs.lua +++ b/scripts/zones/Aht_Urhgan_Whitegate/IDs.lua @@ -20,6 +20,7 @@ zones[xi.zone.AHT_URHGAN_WHITEGATE] = CARRIED_OVER_POINTS = 838, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 839, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 840, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 860, -- Your party is unable to participate because certain members' levels are restricted. UNABLE_TO_PROGRESS_ROV = 884, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. UNABLE_TO_PROGRESS_ROV2 = 885, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the quest [Champion of the Dawn/A Forbidden Reunion]. FISHING_MESSAGE_OFFSET = 891, -- You can't fish here. diff --git a/scripts/zones/AlTaieu/IDs.lua b/scripts/zones/AlTaieu/IDs.lua index 6551fd3a784..878957d4c70 100644 --- a/scripts/zones/AlTaieu/IDs.lua +++ b/scripts/zones/AlTaieu/IDs.lua @@ -10,24 +10,25 @@ zones[xi.zone.ALTAIEU] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7157, -- Tallying conquest results... - QUASILUMIN_01 = 7373, -- This is Al'Taieu. The celestial capital overflowing with the blessings of Altana. - IMPERVIOUS_FIELD_BLOCKS = 7454, -- An impervious field of energy blocks your path... - NOTHING_OF_INTEREST = 7483, -- There is nothing of interest here. - OMINOUS_SHADOW = 7484, -- An ominous shadow falls over you... - AMULET_SHATTERED = 7505, -- The held by has shattered... - LIGHT_STOLEN = 7506, -- The was stolen by Nag'molada... - OBTAIN_BUT_STOLEN = 7507, -- You obtain the , only to have it stolen by Nag'molada... - RETURN_AMULET_TO_PRISHE = 7531, -- You return the to Prishe. - HOMEPOINT_SET = 7572, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7157, -- Tallying conquest results... + QUASILUMIN_01 = 7373, -- This is Al'Taieu. The celestial capital overflowing with the blessings of Altana. + IMPERVIOUS_FIELD_BLOCKS = 7454, -- An impervious field of energy blocks your path... + NOTHING_OF_INTEREST = 7483, -- There is nothing of interest here. + OMINOUS_SHADOW = 7484, -- An ominous shadow falls over you... + AMULET_SHATTERED = 7505, -- The held by has shattered... + LIGHT_STOLEN = 7506, -- The was stolen by Nag'molada... + OBTAIN_BUT_STOLEN = 7507, -- You obtain the , only to have it stolen by Nag'molada... + RETURN_AMULET_TO_PRISHE = 7531, -- You return the to Prishe. + HOMEPOINT_SET = 7572, -- Home point set! }, mob = { diff --git a/scripts/zones/Al_Zahbi/IDs.lua b/scripts/zones/Al_Zahbi/IDs.lua index 4e184c05b08..eb2eabb9a09 100644 --- a/scripts/zones/Al_Zahbi/IDs.lua +++ b/scripts/zones/Al_Zahbi/IDs.lua @@ -10,30 +10,31 @@ zones[xi.zone.AL_ZAHBI] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - MOG_LOCKER_OFFSET = 7393, -- Your Mog Locker lease is valid until , kupo. - HOMEPOINT_SET = 7539, -- Home point set! - IMAGE_SUPPORT_ACTIVE = 7562, -- You have to wait a bit longer before asking for synthesis image support again. - IMAGE_SUPPORT = 7564, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. - KAHAHHOBICHAI_SHOP_DIALOG = 7623, -- Step rrright up to Kahah Hobichai's Blades! We've got everything your battle-thirrrsty heart desires! - ALLARD_SHOP_DIALOG = 7629, -- Hey, how ya doin'? Welcome to the armor shop of the Ulthalam Parade's leading star--Allard, in the flesh! - ZAFIF_SHOP_DIALOG = 7635, -- Welcome... I'm Zafif, and this is my magic shop... I hope you can find something of use here. - CHAYAYA_SHOP_DIALOG = 7641, -- Chayaya's Projectiles! Get your darts and more at Chayaya's Projectiles! Just don't touch the stuff in the high drawers, okay? - NEED_CANDESCENCE_BACK = 7694, -- ...Hm? You! Yes, you! What do you think you're staring at, anyway? Go get the Astral Candescence back, and now! - ITEM_DELIVERY_DIALOG = 7845, -- No need to wrap your goods. Just hand them over and they're as good as delivered! (I've got to be nice as long as the manager's got his eye on me...) - DEHBI_MOSHAL_SHOP_DIALOG = 7849, -- Welcome to the Carpenters' Guild! - NDEGO_SHOP_DIALOG = 7851, -- The Blacksmiths' Guild thanks you for your business! - BORNAHN_SHOP_DIALOG = 7853, -- Welcome! We have all your goldsmithing needs right here! - TATEN_BILTEN_SHOP_DIALOG = 7855, -- Weave something beautiful with the materials you buy here, okay? - CHOCOBO_HAPPY = 7858, -- The chocobo appears to be extremely happy. - SANCTION = 7983, -- You have received the Empire's Sanction. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + MOG_LOCKER_OFFSET = 7393, -- Your Mog Locker lease is valid until , kupo. + HOMEPOINT_SET = 7539, -- Home point set! + IMAGE_SUPPORT_ACTIVE = 7562, -- You have to wait a bit longer before asking for synthesis image support again. + IMAGE_SUPPORT = 7564, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. + KAHAHHOBICHAI_SHOP_DIALOG = 7623, -- Step rrright up to Kahah Hobichai's Blades! We've got everything your battle-thirrrsty heart desires! + ALLARD_SHOP_DIALOG = 7629, -- Hey, how ya doin'? Welcome to the armor shop of the Ulthalam Parade's leading star--Allard, in the flesh! + ZAFIF_SHOP_DIALOG = 7635, -- Welcome... I'm Zafif, and this is my magic shop... I hope you can find something of use here. + CHAYAYA_SHOP_DIALOG = 7641, -- Chayaya's Projectiles! Get your darts and more at Chayaya's Projectiles! Just don't touch the stuff in the high drawers, okay? + NEED_CANDESCENCE_BACK = 7694, -- ...Hm? You! Yes, you! What do you think you're staring at, anyway? Go get the Astral Candescence back, and now! + ITEM_DELIVERY_DIALOG = 7845, -- No need to wrap your goods. Just hand them over and they're as good as delivered! (I've got to be nice as long as the manager's got his eye on me...) + DEHBI_MOSHAL_SHOP_DIALOG = 7849, -- Welcome to the Carpenters' Guild! + NDEGO_SHOP_DIALOG = 7851, -- The Blacksmiths' Guild thanks you for your business! + BORNAHN_SHOP_DIALOG = 7853, -- Welcome! We have all your goldsmithing needs right here! + TATEN_BILTEN_SHOP_DIALOG = 7855, -- Weave something beautiful with the materials you buy here, okay? + CHOCOBO_HAPPY = 7858, -- The chocobo appears to be extremely happy. + SANCTION = 7983, -- You have received the Empire's Sanction. }, mob = { diff --git a/scripts/zones/Altar_Room/IDs.lua b/scripts/zones/Altar_Room/IDs.lua index 4dc3d64edb8..652bc57abe9 100644 --- a/scripts/zones/Altar_Room/IDs.lua +++ b/scripts/zones/Altar_Room/IDs.lua @@ -10,15 +10,16 @@ zones[xi.zone.ALTAR_ROOM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - THE_MAGICITE_GLOWS_OMINOUSLY = 7110, -- The magicite glows ominously. - CONQUEST_BASE = 7111, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + THE_MAGICITE_GLOWS_OMINOUSLY = 7110, -- The magicite glows ominously. + CONQUEST_BASE = 7111, -- Tallying conquest results... }, mob = { diff --git a/scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua b/scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua index ea2de6f8f7a..3f0915bf8b4 100644 --- a/scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua +++ b/scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua @@ -10,33 +10,34 @@ zones[xi.zone.ALZADAAL_UNDERSEA_RUINS] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - STAGING_GATE_CLOSER = 7217, -- You must move closer. - STAGING_GATE_INTERACT = 7218, -- This gate guards an area under Imperial control. - STAGING_GATE_NYZUL = 7224, -- Nyzul Isle Staging Point. - CANNOT_LEAVE = 7228, -- You cannot leave this area while in the possession of . - RESPONSE = 7237, -- There is no response... - DEVICE_MALFUNCTIONING = 7253, -- The device appears to be malfunctioning... - COMMENCING_TRANSPORT = 7446, -- Commencing transport to [Leujaoam Sanctum/the Mamool Ja Training Grounds/Lebros Cavern/Periqia/Ilrusi Atoll/Nyzul Isle/The Ashu Talif/Zhayolm Remnants/Arrapago Remnants/Bhaflau Remnants/Silver Sea Remnants]! - CANNOT_ENTER = 7449, -- You cannot enter at this time. Please wait a while before trying again. - AREA_FULL = 7450, -- This area is fully occupied. You were unable to enter. - MEMBER_NO_REQS = 7454, -- Not all of your party members meet the requirements for this objective. Unable to enter area. - MEMBER_TOO_FAR = 7458, -- One or more party members are too far away from the entrance. Unable to enter area. - MEMBER_IMBUED_ITEM = 7459, -- One or more party members are carrying imbued items. Unable to enter area. - IMBUED_ITEM = 7460, -- You are carrying imbued items. Unable to enter area. - MYTHIC_REQUIRED = 7462, -- You do not have the appropriate mythic weapon equipped. Unable to enter area. - HEADY_FRAGRANCE = 7736, -- The heady fragrance of wine pervades the air... - GLITTERING_FRAGMENTS = 7737, -- Minute glittering fragments are scattered all over... - SLIMY_TOUCH = 7755, -- The ground here is slimy to the touch... - DRAWS_NEAR = 7766, -- Something draws near! + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + STAGING_GATE_CLOSER = 7217, -- You must move closer. + STAGING_GATE_INTERACT = 7218, -- This gate guards an area under Imperial control. + STAGING_GATE_NYZUL = 7224, -- Nyzul Isle Staging Point. + CANNOT_LEAVE = 7228, -- You cannot leave this area while in the possession of . + RESPONSE = 7237, -- There is no response... + DEVICE_MALFUNCTIONING = 7253, -- The device appears to be malfunctioning... + COMMENCING_TRANSPORT = 7446, -- Commencing transport to [Leujaoam Sanctum/the Mamool Ja Training Grounds/Lebros Cavern/Periqia/Ilrusi Atoll/Nyzul Isle/The Ashu Talif/Zhayolm Remnants/Arrapago Remnants/Bhaflau Remnants/Silver Sea Remnants]! + CANNOT_ENTER = 7449, -- You cannot enter at this time. Please wait a while before trying again. + AREA_FULL = 7450, -- This area is fully occupied. You were unable to enter. + MEMBER_NO_REQS = 7454, -- Not all of your party members meet the requirements for this objective. Unable to enter area. + MEMBER_TOO_FAR = 7458, -- One or more party members are too far away from the entrance. Unable to enter area. + MEMBER_IMBUED_ITEM = 7459, -- One or more party members are carrying imbued items. Unable to enter area. + IMBUED_ITEM = 7460, -- You are carrying imbued items. Unable to enter area. + MYTHIC_REQUIRED = 7462, -- You do not have the appropriate mythic weapon equipped. Unable to enter area. + HEADY_FRAGRANCE = 7736, -- The heady fragrance of wine pervades the air... + GLITTERING_FRAGMENTS = 7737, -- Minute glittering fragments are scattered all over... + SLIMY_TOUCH = 7755, -- The ground here is slimy to the touch... + DRAWS_NEAR = 7766, -- Something draws near! }, mob = { diff --git a/scripts/zones/Apollyon/IDs.lua b/scripts/zones/Apollyon/IDs.lua index 66e409718ef..5f145732366 100644 --- a/scripts/zones/Apollyon/IDs.lua +++ b/scripts/zones/Apollyon/IDs.lua @@ -10,24 +10,25 @@ zones[xi.zone.APOLLYON] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - TIME_EXCEEDED = 7062, -- You have exceeded the time limit. Exiting Limbus now. - CONDITION_FOR_LIMBUS = 7063, -- You have clearance to enter Limbus, but cannot enter while you or a party member is engaged in battle. - HUM = 7075, -- You hear a faint hum. - NO_KEY = 7080, -- There are several six-sided indentations and a thin slot in the center of the circular dais here. - WIPE_KICK = 7355, -- All party members in Limbus have fallen in battle. Exiting now. - WIPE = 7363, -- All party members in Limbus have fallen in battle. Exiting in [minute/minutes]. - CHIP_TRADE = 7369, -- The light in the has grown dim. - TIME_EXTENDED = 7371, -- our time in Limbus has been extended [minute/minutes]. - TIME_LEFT = 7372, -- ou have [minute/minutes] left in Limbus. - CONQUEST_BASE = 7374, -- Tallying conquest results... - GATE_OPEN = 7553, -- vortex materializes... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + TIME_EXCEEDED = 7062, -- You have exceeded the time limit. Exiting Limbus now. + CONDITION_FOR_LIMBUS = 7063, -- You have clearance to enter Limbus, but cannot enter while you or a party member is engaged in battle. + HUM = 7075, -- You hear a faint hum. + NO_KEY = 7080, -- There are several six-sided indentations and a thin slot in the center of the circular dais here. + WIPE_KICK = 7355, -- All party members in Limbus have fallen in battle. Exiting now. + WIPE = 7363, -- All party members in Limbus have fallen in battle. Exiting in [minute/minutes]. + CHIP_TRADE = 7369, -- The light in the has grown dim. + TIME_EXTENDED = 7371, -- our time in Limbus has been extended [minute/minutes]. + TIME_LEFT = 7372, -- ou have [minute/minutes] left in Limbus. + CONQUEST_BASE = 7374, -- Tallying conquest results... + GATE_OPEN = 7553, -- vortex materializes... }, mob = { diff --git a/scripts/zones/Arrapago_Reef/IDs.lua b/scripts/zones/Arrapago_Reef/IDs.lua index 1a166e0e771..8d230a866e7 100644 --- a/scripts/zones/Arrapago_Reef/IDs.lua +++ b/scripts/zones/Arrapago_Reef/IDs.lua @@ -10,44 +10,45 @@ zones[xi.zone.ARRAPAGO_REEF] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - STAGING_GATE_CLOSER = 7314, -- You must move closer. - STAGING_GATE_INTERACT = 7315, -- This gate guards an area under Imperial control. - STAGING_GATE_ILRUSI = 7320, -- Ilrusi Atoll Staging Point. - CANNOT_LEAVE = 7325, -- You cannot leave this area while in the possession of . - RESPONSE = 7334, -- There is no response... - DOOR_IS_LOCKED = 7463, -- The door is locked. You might be able to open it with . - DOOR_IS_LOCKED2 = 7464, -- The door is locked. You might be able to open it with or . - KEY_BREAKS = 7465, -- The breaks! - YOU_UNLOCK_DOOR = 7468, -- You unlock the door from the inside. - LOCK_SUCCESS = 7469, -- successfully opened the lock with the ! - LOCK_FAIL = 7470, -- failed to open the lock with the ... - PARTY_MEMBERS_HAVE_FALLEN = 7889, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7896, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - YOU_NO_REQS = 7900, -- You do not meet the requirements to enter the battlefield with your party members. Access is denied. - YOUR_IMPERIAL_STANDING = 7914, -- Your Imperial Standing has increased! - HAND_OVER_TO_IMMORTAL = 8432, -- You hand over the % to the Immortal. - CANNOT_ENTER = 8451, -- You cannot enter at this time. Please wait a while before trying again. - AREA_FULL = 8452, -- This area is fully occupied. You were unable to enter. - MEMBER_NO_REQS = 8456, -- Not all of your party members meet the requirements for this objective. Unable to enter area. - MEMBER_TOO_FAR = 8460, -- One or more party members are too far away from the entrance. Unable to enter area. - MEDUSA_ENGAGE = 8562, -- Foolish two-legs... Have you forgotten the terrible power of the gorgons you created? It is time you were reminded... - MEDUSA_DEATH = 8563, -- No... I cannot leave my sisters... - GLITTERING_FRAGMENTS = 8886, -- Minute glittering fragments are scattered all over... - STIFLING_STENCH = 8899, -- A stifling stench pervades the air... - SLIMY_TOUCH = 8904, -- The ground here is slimy to the touch... - FLUTTERY_OBJECTS = 8910, -- Light, fluttery objects litter the ground... - DRAWS_NEAR = 8915, -- Something draws near! - COMMON_SENSE_SURVIVAL = 9786, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + STAGING_GATE_CLOSER = 7314, -- You must move closer. + STAGING_GATE_INTERACT = 7315, -- This gate guards an area under Imperial control. + STAGING_GATE_ILRUSI = 7320, -- Ilrusi Atoll Staging Point. + CANNOT_LEAVE = 7325, -- You cannot leave this area while in the possession of . + RESPONSE = 7334, -- There is no response... + DOOR_IS_LOCKED = 7463, -- The door is locked. You might be able to open it with . + DOOR_IS_LOCKED2 = 7464, -- The door is locked. You might be able to open it with or . + KEY_BREAKS = 7465, -- The breaks! + YOU_UNLOCK_DOOR = 7468, -- You unlock the door from the inside. + LOCK_SUCCESS = 7469, -- successfully opened the lock with the ! + LOCK_FAIL = 7470, -- failed to open the lock with the ... + PARTY_MEMBERS_HAVE_FALLEN = 7889, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7896, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + YOU_NO_REQS = 7900, -- You do not meet the requirements to enter the battlefield with your party members. Access is denied. + YOUR_IMPERIAL_STANDING = 7914, -- Your Imperial Standing has increased! + HAND_OVER_TO_IMMORTAL = 8432, -- You hand over the % to the Immortal. + CANNOT_ENTER = 8451, -- You cannot enter at this time. Please wait a while before trying again. + AREA_FULL = 8452, -- This area is fully occupied. You were unable to enter. + MEMBER_NO_REQS = 8456, -- Not all of your party members meet the requirements for this objective. Unable to enter area. + MEMBER_TOO_FAR = 8460, -- One or more party members are too far away from the entrance. Unable to enter area. + MEDUSA_ENGAGE = 8562, -- Foolish two-legs... Have you forgotten the terrible power of the gorgons you created? It is time you were reminded... + MEDUSA_DEATH = 8563, -- No... I cannot leave my sisters... + GLITTERING_FRAGMENTS = 8886, -- Minute glittering fragments are scattered all over... + STIFLING_STENCH = 8899, -- A stifling stench pervades the air... + SLIMY_TOUCH = 8904, -- The ground here is slimy to the touch... + FLUTTERY_OBJECTS = 8910, -- Light, fluttery objects litter the ground... + DRAWS_NEAR = 8915, -- Something draws near! + COMMON_SENSE_SURVIVAL = 9786, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Arrapago_Remnants/IDs.lua b/scripts/zones/Arrapago_Remnants/IDs.lua index 57db71507c8..26eb71f46b6 100644 --- a/scripts/zones/Arrapago_Remnants/IDs.lua +++ b/scripts/zones/Arrapago_Remnants/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.ARRAPAGO_REMNANTS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CELL_OFFSET = 7217, -- Main Weapon/Sub-Weapon restriction removed. - SALVAGE_START = 7240, -- You feel an incredible pressure bearing down on you. This area appears to be blanketed in some sort of intense psionic field... - TIME_TO_COMPLETE = 7447, -- You have [minute/minutes] (Earth time) to complete this mission. - MISSION_FAILED = 7448, -- The mission has failed. Leaving area. - TIME_REMAINING_MINUTES = 7452, -- ime remaining: [minute/minutes] (Earth time). - TIME_REMAINING_SECONDS = 7453, -- ime remaining: [second/seconds] (Earth time). - PARTY_FALLEN = 7455, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. - DOOR_IS_SEALED = 7466, -- The door is sealed... - DOOR_IS_SEALED_MYSTERIOUS = 7469, -- The door is sealed by some mysterious force... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CELL_OFFSET = 7217, -- Main Weapon/Sub-Weapon restriction removed. + SALVAGE_START = 7240, -- You feel an incredible pressure bearing down on you. This area appears to be blanketed in some sort of intense psionic field... + TIME_TO_COMPLETE = 7447, -- You have [minute/minutes] (Earth time) to complete this mission. + MISSION_FAILED = 7448, -- The mission has failed. Leaving area. + TIME_REMAINING_MINUTES = 7452, -- ime remaining: [minute/minutes] (Earth time). + TIME_REMAINING_SECONDS = 7453, -- ime remaining: [second/seconds] (Earth time). + PARTY_FALLEN = 7455, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. + DOOR_IS_SEALED = 7466, -- The door is sealed... + DOOR_IS_SEALED_MYSTERIOUS = 7469, -- The door is sealed by some mysterious force... }, mob = { diff --git a/scripts/zones/Attohwa_Chasm/IDs.lua b/scripts/zones/Attohwa_Chasm/IDs.lua index 6223a3e5c17..48ee63152e7 100644 --- a/scripts/zones/Attohwa_Chasm/IDs.lua +++ b/scripts/zones/Attohwa_Chasm/IDs.lua @@ -10,23 +10,24 @@ zones[xi.zone.ATTOHWA_CHASM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - MINING_IS_POSSIBLE_HERE = 7216, -- Mining is possible here if you have . - MIMEO_JEWEL_OFFSET = 7324, -- The light from the is beginning to fade. - MUST_MOVE_CLOSER = 7334, -- You must move a little closer to examine the area. - GASPONIA_POISON = 7336, -- The poison of the Gasponia has begun to spread through your body. - OCCASIONAL_LUMPS = 7351, -- Occasionally lumps arise in the ground here, then settle down again. It seems that there is something beneath the earth. - HOMEPOINT_SET = 8238, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + MINING_IS_POSSIBLE_HERE = 7216, -- Mining is possible here if you have . + MIMEO_JEWEL_OFFSET = 7324, -- The light from the is beginning to fade. + MUST_MOVE_CLOSER = 7334, -- You must move a little closer to examine the area. + GASPONIA_POISON = 7336, -- The poison of the Gasponia has begun to spread through your body. + OCCASIONAL_LUMPS = 7351, -- Occasionally lumps arise in the ground here, then settle down again. It seems that there is something beneath the earth. + HOMEPOINT_SET = 8238, -- Home point set! }, mob = { diff --git a/scripts/zones/Aydeewa_Subterrane/IDs.lua b/scripts/zones/Aydeewa_Subterrane/IDs.lua index 6058f4f7761..a6759fa2a32 100644 --- a/scripts/zones/Aydeewa_Subterrane/IDs.lua +++ b/scripts/zones/Aydeewa_Subterrane/IDs.lua @@ -10,22 +10,23 @@ zones[xi.zone.AYDEEWA_SUBTERRANE] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - MINING_IS_POSSIBLE_HERE = 7325, -- Mining is possible here if you have . - SENSE_OMINOUS_PRESENCE = 8004, -- You sense an ominous presence... - BLOOD_STAINS = 8010, -- The ground is smeared with bloodstains... - DRAWS_NEAR = 8035, -- Something draws near! - COMMON_SENSE_SURVIVAL = 8907, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + MINING_IS_POSSIBLE_HERE = 7325, -- Mining is possible here if you have . + SENSE_OMINOUS_PRESENCE = 8004, -- You sense an ominous presence... + BLOOD_STAINS = 8010, -- The ground is smeared with bloodstains... + DRAWS_NEAR = 8035, -- Something draws near! + COMMON_SENSE_SURVIVAL = 8907, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Balgas_Dais/IDs.lua b/scripts/zones/Balgas_Dais/IDs.lua index 54ceabb425e..4c413d2f9a2 100644 --- a/scripts/zones/Balgas_Dais/IDs.lua +++ b/scripts/zones/Balgas_Dais/IDs.lua @@ -10,30 +10,31 @@ zones[xi.zone.BALGAS_DAIS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - YOU_DECIDED_TO_SHOW_UP = 7638, -- So, you decided to show up. Now it's time to see what you're really made of, heh heh heh. - LOOKS_LIKE_YOU_WERENT_READY = 7639, -- Looks like you weren't ready for me, were you? Now go home, wash your face, and come back when you think you've got what it takes. - YOUVE_COME_A_LONG_WAY = 7640, -- Hm. That was a mighty fine display of skill there, . You've come a long way... - TEACH_YOU_TO_RESPECT_ELDERS = 7641, -- I'll teach you to respect your elders! - TAKE_THAT_YOU_WHIPPERSNAPPER = 7642, -- Take that, you whippersnapper! - NOW_THAT_IM_WARMED_UP = 7643, -- Now that I'm warmed up... - THAT_LL_HURT_IN_THE_MORNING = 7644, -- Ungh... That'll hurt in the morning... - PROMISE_ME_YOU_WONT_GO_DOWN = 7682, -- Promise you won't go down too easy, okay? - IM_JUST_GETTING_WARMED_UP = 7683, -- Haha! I'm just getting warmed up! - YOU_PACKED_MORE_OF_A_PUNCH = 7684, -- Hah! You pack more of a punch than I thoughtaru. But I won't go down as easy as old Maat! - WHATS_THIS_STRANGE_FEELING = 7685, -- What's this strange feeling...? It's not supposed to end...like... - HUH_IS_THAT_ALL = 7686, -- Huh? Is that all? I haven't even broken a sweataru... - YIKEY_WIKEYS = 7687, -- Yikey-wikeys! Get that thing away from meee! - WHATS_THE_MATTARU = 7688, -- ... What's the mattaru, ? Too much of a pansy-wansy to fight fair? + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + YOU_DECIDED_TO_SHOW_UP = 7638, -- So, you decided to show up. Now it's time to see what you're really made of, heh heh heh. + LOOKS_LIKE_YOU_WERENT_READY = 7639, -- Looks like you weren't ready for me, were you? Now go home, wash your face, and come back when you think you've got what it takes. + YOUVE_COME_A_LONG_WAY = 7640, -- Hm. That was a mighty fine display of skill there, . You've come a long way... + TEACH_YOU_TO_RESPECT_ELDERS = 7641, -- I'll teach you to respect your elders! + TAKE_THAT_YOU_WHIPPERSNAPPER = 7642, -- Take that, you whippersnapper! + NOW_THAT_IM_WARMED_UP = 7643, -- Now that I'm warmed up... + THAT_LL_HURT_IN_THE_MORNING = 7644, -- Ungh... That'll hurt in the morning... + PROMISE_ME_YOU_WONT_GO_DOWN = 7682, -- Promise you won't go down too easy, okay? + IM_JUST_GETTING_WARMED_UP = 7683, -- Haha! I'm just getting warmed up! + YOU_PACKED_MORE_OF_A_PUNCH = 7684, -- Hah! You pack more of a punch than I thoughtaru. But I won't go down as easy as old Maat! + WHATS_THIS_STRANGE_FEELING = 7685, -- What's this strange feeling...? It's not supposed to end...like... + HUH_IS_THAT_ALL = 7686, -- Huh? Is that all? I haven't even broken a sweataru... + YIKEY_WIKEYS = 7687, -- Yikey-wikeys! Get that thing away from meee! + WHATS_THE_MATTARU = 7688, -- ... What's the mattaru, ? Too much of a pansy-wansy to fight fair? }, mob = { diff --git a/scripts/zones/Bastok-Jeuno_Airship/IDs.lua b/scripts/zones/Bastok-Jeuno_Airship/IDs.lua index fa5614b3627..216f2b3202a 100644 --- a/scripts/zones/Bastok-Jeuno_Airship/IDs.lua +++ b/scripts/zones/Bastok-Jeuno_Airship/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.BASTOK_JEUNO_AIRSHIP] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - WILL_REACH_JEUNO = 7216, -- The airship will reach Jeuno in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - WILL_REACH_BASTOK = 7217, -- The airship will reach Bastok in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - IN_JEUNO_MOMENTARILY = 7218, -- We will be arriving in Jeuno momentarily. - IN_BASTOK_MOMENTARILY = 7219, -- We will be arriving in Bastok momentarily. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WILL_REACH_JEUNO = 7216, -- The airship will reach Jeuno in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + WILL_REACH_BASTOK = 7217, -- The airship will reach Bastok in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + IN_JEUNO_MOMENTARILY = 7218, -- We will be arriving in Jeuno momentarily. + IN_BASTOK_MOMENTARILY = 7219, -- We will be arriving in Bastok momentarily. }, mob = { diff --git a/scripts/zones/Bastok_Markets/IDs.lua b/scripts/zones/Bastok_Markets/IDs.lua index b0a1f204d9d..7add28896f0 100644 --- a/scripts/zones/Bastok_Markets/IDs.lua +++ b/scripts/zones/Bastok_Markets/IDs.lua @@ -10,70 +10,71 @@ zones[xi.zone.BASTOK_MARKETS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - YOU_OBTAIN_ITEM = 6396, -- You obtain ! - ITEMS_OBTAINED = 6399, -- You obtain ! - YOU_MUST_WAIT_ANOTHER_N_DAYS = 6426, -- You must wait another [day/days] to perform that action. - CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - HOMEPOINT_SET = 6487, -- Home point set! - YOU_ACCEPT_THE_MISSION = 6516, -- You have accepted the mission. - ORIGINAL_MISSION_OFFSET = 6521, -- You can consult the Mission section of the main menu to review your objectives. Speed and efficiency are your priorities. Dismissed. - CONQUEST_BASE = 6589, -- Tallying conquest results... - MOG_LOCKER_OFFSET = 6883, -- Your Mog Locker lease is valid until , kupo. - GOLDSMITHING_SUPPORT = 7088, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. - GUILD_TERMINATE_CONTRACT = 7102, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - GUILD_NEW_CONTRACT = 7110, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - NO_MORE_GP_ELIGIBLE = 7117, -- You are not eligible to receive guild points at this time. - GP_OBTAINED = 7122, -- Obtained: guild points. - NOT_HAVE_ENOUGH_GP = 7123, -- You do not have enough guild points. - RENOUNCE_CRAFTSMAN = 7136, -- Renounce your rank at which guild? None. Carpenters'. Blacksmiths'. Goldsmiths'. Weavers'. Tanners'. Boneworkers'. Alchemists'. Culinarians'. - FISHING_MESSAGE_OFFSET = 7219, -- You can't fish here. - SOMNPAEMN_CLOSED_DIALOG = 7585, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Sarutabaruta, but it's not easy getting stuff out of areas that aren't under Bastokan control. - YAFAFA_CLOSED_DIALOG = 7586, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Kolshushu, but it's not easy getting stuff out of areas that aren't under Bastokan control. - OGGODETT_CLOSED_DIALOG = 7587, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Aragoneu, but it's not easy getting stuff out of areas that aren't under Bastokan control. - ITEM_DELIVERY_DIALOG = 7674, -- Need something sent to a friend's house? Sending items to your own room? You've come to the right place! - TEERTH_SHOP_DIALOG = 7688, -- Welcome to the Goldsmiths' Guild shop. What can I do for you? - VISALA_SHOP_DIALOG = 7689, -- Welcome to the Goldsmiths' Guild shop. How may I help you? - ZHIKKOM_SHOP_DIALOG = 7690, -- Hello! Welcome to the only weaponry store in Bastok, the Dragon's Claws! - CIQALA_SHOP_DIALOG = 7691, -- A weapon is the most precious thing to an adventurer! Well, after his life, of course. Choose wisely. - PERITRAGE_SHOP_DIALOG = 7692, -- Hey! I've got just the thing for you! - BRUNHILDE_SHOP_DIALOG = 7693, -- Welcome to my store! You want armor, you want shields? I've got them all! - CHARGINGCHOCOBO_SHOP_DIALOG = 7694, -- Hello. What piece of armor are you missing? - BALTHILDA_SHOP_DIALOG = 7695, -- Feeling defenseless of late? Brunhilde's Armory has got you covered! - MJOLL_SHOP_DIALOG = 7696, -- Welcome. Have a look and compare! You'll never find better wares anywhere. - OLWYN_SHOP_DIALOG = 7697, -- Welcome to Mjoll's Goods! What can I do for you? - ZAIRA_SHOP_DIALOG = 7698, -- Greetings. What spell are you looking for? - SORORO_SHOP_DIALOG = 7699, -- Hello-mellow, welcome to Sororo's Scribe and Notary! Hmm? No, we sell magic spells! What did you think? - HARMODIOS_SHOP_DIALOG = 7700, -- Add music to your adventuring life! Welcome to Harmodios's. - CARMELIDE_SHOP_DIALOG = 7701, -- Ah, welcome, welcome! What might I interest you in? - RAGHD_SHOP_DIALOG = 7702, -- Give a smile to that special someone! Welcome to Carmelide's. - HORTENSE_SHOP_DIALOG = 7703, -- Hello there! We have instruments and music sheets at Harmodios's! - OGGODETT_OPEN_DIALOG = 7704, -- Hello there! Might I interest you in some specialty goods from Aragoneu? - YAFAFA_OPEN_DIALOG = 7705, -- Hello! I've got some goods from Kolshushu--interested? - SOMNPAEMN_OPEN_DIALOG = 7706, -- Welcome! I have goods straight from Sarutabaruta! What say you? - CONQUEST = 7797, -- You've earned conquest points! - EXTENDED_MISSION_OFFSET = 8159, -- Go to Ore Street and talk to Medicine Eagle. He says he was there when the commotion started. - TRICK_OR_TREAT = 8282, -- Trick or treat... - THANK_YOU_TREAT = 8283, -- Thank you... And now for your treat... - HERE_TAKE_THIS = 8284, -- Here, take this... - IF_YOU_WEAR_THIS = 8285, -- If you put this on and walk around, something...unexpected might happen... - THANK_YOU = 8286, -- Thank you... - RETRIEVE_DIALOG_ID = 12892, -- You retrieve from the porter moogle's care. - TURNING_IN_SPARKS = 14217, -- Ohohoho... Turning in sparks, I see. - DO_NOT_POSSESS_ENOUGH = 14241, -- You do not possess enough to complete the transaction. - NOT_ENOUGH_SPARKS = 14242, -- You do not possess enough sparks of eminence to complete the transaction. - MAX_SPARKS_LIMIT_REACHED = 14243, -- You have reached the maximum number of sparks that you can exchange this week (). Your ability to purchase skill books and equipment will be restricted until next week. - YOU_NOW_HAVE_AMT_CURRENCY = 14253, -- You now have [sparks of eminence/conquest points/points of imperial standing/Allied Notes/bayld/Fields of Valor points/assault points (Leujaoam)/assault points (Mamool Ja Training Grounds)/assault points (Lebros Cavern)/assault points (Periqia)/assault points (Ilrusi Atoll)/cruor/kinetic units/obsidian fragments/mweya plasm corpuscles/ballista points/Unity accolades/pinches of Escha silt/resistance credits]. - YOU_HAVE_JOINED_UNITY = 14556, -- ou have joined [Pieuje's/Ayame's/Invincible Shield's/Apururu's/Maat's/Aldo's/Jakoh Wahcondalo's/Naja Salaheem's/Flaviria's/Yoran-Oran's/Sylvie's] Unity! - HAVE_ALREADY_CHANGED_UNITY = 14632, -- ou have already changed Unities. Please wait until the next tabulation period. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + YOU_OBTAIN_ITEM = 6396, -- You obtain ! + ITEMS_OBTAINED = 6399, -- You obtain ! + YOU_MUST_WAIT_ANOTHER_N_DAYS = 6426, -- You must wait another [day/days] to perform that action. + CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6451, -- Your party is unable to participate because certain members' levels are restricted. + HOMEPOINT_SET = 6487, -- Home point set! + YOU_ACCEPT_THE_MISSION = 6516, -- You have accepted the mission. + ORIGINAL_MISSION_OFFSET = 6521, -- You can consult the Mission section of the main menu to review your objectives. Speed and efficiency are your priorities. Dismissed. + CONQUEST_BASE = 6589, -- Tallying conquest results... + MOG_LOCKER_OFFSET = 6883, -- Your Mog Locker lease is valid until , kupo. + GOLDSMITHING_SUPPORT = 7088, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. + GUILD_TERMINATE_CONTRACT = 7102, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + GUILD_NEW_CONTRACT = 7110, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + NO_MORE_GP_ELIGIBLE = 7117, -- You are not eligible to receive guild points at this time. + GP_OBTAINED = 7122, -- Obtained: guild points. + NOT_HAVE_ENOUGH_GP = 7123, -- You do not have enough guild points. + RENOUNCE_CRAFTSMAN = 7136, -- Renounce your rank at which guild? None. Carpenters'. Blacksmiths'. Goldsmiths'. Weavers'. Tanners'. Boneworkers'. Alchemists'. Culinarians'. + FISHING_MESSAGE_OFFSET = 7219, -- You can't fish here. + SOMNPAEMN_CLOSED_DIALOG = 7585, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Sarutabaruta, but it's not easy getting stuff out of areas that aren't under Bastokan control. + YAFAFA_CLOSED_DIALOG = 7586, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Kolshushu, but it's not easy getting stuff out of areas that aren't under Bastokan control. + OGGODETT_CLOSED_DIALOG = 7587, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Aragoneu, but it's not easy getting stuff out of areas that aren't under Bastokan control. + ITEM_DELIVERY_DIALOG = 7674, -- Need something sent to a friend's house? Sending items to your own room? You've come to the right place! + TEERTH_SHOP_DIALOG = 7688, -- Welcome to the Goldsmiths' Guild shop. What can I do for you? + VISALA_SHOP_DIALOG = 7689, -- Welcome to the Goldsmiths' Guild shop. How may I help you? + ZHIKKOM_SHOP_DIALOG = 7690, -- Hello! Welcome to the only weaponry store in Bastok, the Dragon's Claws! + CIQALA_SHOP_DIALOG = 7691, -- A weapon is the most precious thing to an adventurer! Well, after his life, of course. Choose wisely. + PERITRAGE_SHOP_DIALOG = 7692, -- Hey! I've got just the thing for you! + BRUNHILDE_SHOP_DIALOG = 7693, -- Welcome to my store! You want armor, you want shields? I've got them all! + CHARGINGCHOCOBO_SHOP_DIALOG = 7694, -- Hello. What piece of armor are you missing? + BALTHILDA_SHOP_DIALOG = 7695, -- Feeling defenseless of late? Brunhilde's Armory has got you covered! + MJOLL_SHOP_DIALOG = 7696, -- Welcome. Have a look and compare! You'll never find better wares anywhere. + OLWYN_SHOP_DIALOG = 7697, -- Welcome to Mjoll's Goods! What can I do for you? + ZAIRA_SHOP_DIALOG = 7698, -- Greetings. What spell are you looking for? + SORORO_SHOP_DIALOG = 7699, -- Hello-mellow, welcome to Sororo's Scribe and Notary! Hmm? No, we sell magic spells! What did you think? + HARMODIOS_SHOP_DIALOG = 7700, -- Add music to your adventuring life! Welcome to Harmodios's. + CARMELIDE_SHOP_DIALOG = 7701, -- Ah, welcome, welcome! What might I interest you in? + RAGHD_SHOP_DIALOG = 7702, -- Give a smile to that special someone! Welcome to Carmelide's. + HORTENSE_SHOP_DIALOG = 7703, -- Hello there! We have instruments and music sheets at Harmodios's! + OGGODETT_OPEN_DIALOG = 7704, -- Hello there! Might I interest you in some specialty goods from Aragoneu? + YAFAFA_OPEN_DIALOG = 7705, -- Hello! I've got some goods from Kolshushu--interested? + SOMNPAEMN_OPEN_DIALOG = 7706, -- Welcome! I have goods straight from Sarutabaruta! What say you? + CONQUEST = 7797, -- You've earned conquest points! + EXTENDED_MISSION_OFFSET = 8159, -- Go to Ore Street and talk to Medicine Eagle. He says he was there when the commotion started. + TRICK_OR_TREAT = 8282, -- Trick or treat... + THANK_YOU_TREAT = 8283, -- Thank you... And now for your treat... + HERE_TAKE_THIS = 8284, -- Here, take this... + IF_YOU_WEAR_THIS = 8285, -- If you put this on and walk around, something...unexpected might happen... + THANK_YOU = 8286, -- Thank you... + RETRIEVE_DIALOG_ID = 12892, -- You retrieve from the porter moogle's care. + TURNING_IN_SPARKS = 14217, -- Ohohoho... Turning in sparks, I see. + DO_NOT_POSSESS_ENOUGH = 14241, -- You do not possess enough to complete the transaction. + NOT_ENOUGH_SPARKS = 14242, -- You do not possess enough sparks of eminence to complete the transaction. + MAX_SPARKS_LIMIT_REACHED = 14243, -- You have reached the maximum number of sparks that you can exchange this week (). Your ability to purchase skill books and equipment will be restricted until next week. + YOU_NOW_HAVE_AMT_CURRENCY = 14253, -- You now have [sparks of eminence/conquest points/points of imperial standing/Allied Notes/bayld/Fields of Valor points/assault points (Leujaoam)/assault points (Mamool Ja Training Grounds)/assault points (Lebros Cavern)/assault points (Periqia)/assault points (Ilrusi Atoll)/cruor/kinetic units/obsidian fragments/mweya plasm corpuscles/ballista points/Unity accolades/pinches of Escha silt/resistance credits]. + YOU_HAVE_JOINED_UNITY = 14556, -- ou have joined [Pieuje's/Ayame's/Invincible Shield's/Apururu's/Maat's/Aldo's/Jakoh Wahcondalo's/Naja Salaheem's/Flaviria's/Yoran-Oran's/Sylvie's] Unity! + HAVE_ALREADY_CHANGED_UNITY = 14632, -- ou have already changed Unities. Please wait until the next tabulation period. }, mob = { diff --git a/scripts/zones/Bastok_Markets_[S]/IDs.lua b/scripts/zones/Bastok_Markets_[S]/IDs.lua index 04ffbe3f517..72b8f265f4e 100644 --- a/scripts/zones/Bastok_Markets_[S]/IDs.lua +++ b/scripts/zones/Bastok_Markets_[S]/IDs.lua @@ -10,30 +10,31 @@ zones[xi.zone.BASTOK_MARKETS_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - BLINGBRIX_SHOP_DIALOG = 7207, -- Blingbrix good Gobbie from Boodlix's! Boodlix's Emporium help fighting fighters and maging mages. Gil okay, okay? - MOG_LOCKER_OFFSET = 7473, -- Your Mog Locker lease is valid until , kupo. - REGIME_CANCELED = 7711, -- Current training regime canceled. - HUNT_ACCEPTED = 7729, -- Hunt accepted! - USE_SCYLDS = 7730, -- You use [scyld/scylds]. Scyld balance: . - HUNT_RECORDED = 7741, -- You record your hunt. - OBTAIN_SCYLDS = 7743, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. - HUNT_CANCELED = 7747, -- Hunt canceled. - HOMEPOINT_SET = 10840, -- Home point set! - KARLOTTE_DELIVERY_DIALOG = 10874, -- I am here to help with all your parcel delivery needs. - WELDON_DELIVERY_DIALOG = 10875, -- Do you have something you wish to send? - ALLIED_SIGIL = 12363, -- You have received the Allied Sigil! - SILKE_SHOP_DIALOG = 12815, -- You wouldn't happen to be a fellow scholar, by any chance? The contents of these pages are beyond me, but perhaps you might glean something from them. They could be yours...for a nominal fee. - RETRIEVE_DIALOG_ID = 14731, -- You retrieve from the porter moogle's care. - NOT_ENOUGH_NOTES = 14756, -- You tryin' to cheat me? That's not nearly enough notes! - COMMON_SENSE_SURVIVAL = 14800, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + BLINGBRIX_SHOP_DIALOG = 7207, -- Blingbrix good Gobbie from Boodlix's! Boodlix's Emporium help fighting fighters and maging mages. Gil okay, okay? + MOG_LOCKER_OFFSET = 7473, -- Your Mog Locker lease is valid until , kupo. + REGIME_CANCELED = 7711, -- Current training regime canceled. + HUNT_ACCEPTED = 7729, -- Hunt accepted! + USE_SCYLDS = 7730, -- You use [scyld/scylds]. Scyld balance: . + HUNT_RECORDED = 7741, -- You record your hunt. + OBTAIN_SCYLDS = 7743, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. + HUNT_CANCELED = 7747, -- Hunt canceled. + HOMEPOINT_SET = 10840, -- Home point set! + KARLOTTE_DELIVERY_DIALOG = 10874, -- I am here to help with all your parcel delivery needs. + WELDON_DELIVERY_DIALOG = 10875, -- Do you have something you wish to send? + ALLIED_SIGIL = 12363, -- You have received the Allied Sigil! + SILKE_SHOP_DIALOG = 12815, -- You wouldn't happen to be a fellow scholar, by any chance? The contents of these pages are beyond me, but perhaps you might glean something from them. They could be yours...for a nominal fee. + RETRIEVE_DIALOG_ID = 14731, -- You retrieve from the porter moogle's care. + NOT_ENOUGH_NOTES = 14756, -- You tryin' to cheat me? That's not nearly enough notes! + COMMON_SENSE_SURVIVAL = 14800, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Bastok_Mines/IDs.lua b/scripts/zones/Bastok_Mines/IDs.lua index c70cfa92a89..d69a54049db 100644 --- a/scripts/zones/Bastok_Mines/IDs.lua +++ b/scripts/zones/Bastok_Mines/IDs.lua @@ -21,6 +21,7 @@ zones[xi.zone.BASTOK_MINES] = CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6451, -- Your party is unable to participate because certain members' levels are restricted. HOMEPOINT_SET = 6487, -- Home point set! YOU_ACCEPT_THE_MISSION = 6516, -- You have accepted the mission. ORIGINAL_MISSION_OFFSET = 6521, -- You can consult the Mission section of the main menu to review your objectives. Speed and efficiency are your priorities. Dismissed. diff --git a/scripts/zones/Batallia_Downs/IDs.lua b/scripts/zones/Batallia_Downs/IDs.lua index 73a49e29e9a..9f5bf818c86 100644 --- a/scripts/zones/Batallia_Downs/IDs.lua +++ b/scripts/zones/Batallia_Downs/IDs.lua @@ -10,50 +10,51 @@ zones[xi.zone.BATALLIA_DOWNS] = { text = { - NOTHING_HAPPENS = 141, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. - REPORT_TO_CAIT_SITH = 7014, -- You have obtained all of Lilisette's memory fragments. Make haste and report to Cait Sith. - CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - UNABLE_TO_PROGRESS = 7069, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. - CONQUEST_BASE = 7079, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. - SPARKLING_LIGHT = 7347, -- The ground is sparkling with a strange light. - SENSE_SOMETHING_LURKING = 7437, -- You sense something lurking close by! - NO_GRASS_GROWING_HERE = 7497, -- There is no grass growing here... - PLAYER_OBTAINS_ITEM = 7709, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7710, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7711, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7712, -- You already possess that temporary item. - NO_COMBINATION = 7717, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 7748, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 9995, -- New training regime registered! - FRAGMENT_FAR_TOO_SMALL = 11333, -- You obtain . However, it is far too small to house an adequate amount of energy. Alone, it serves no purpose. - FRAGMENTS_MELD = 11334, -- The tiny fragments of Lilisette's memory meld together to form ! - SEE_WEATHERED_GRAVESTONE = 11335, -- You see a weathered gravestone. - VOIDWALKER_NO_MOB = 11336, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 11337, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 11338, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 11339, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 11341, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 11342, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 11343, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 11344, -- Obtained key item: ! - LEARNS_SPELL = 12844, -- learns ! - UNCANNY_SENSATION = 12846, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 12853, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. - RAPTOR_OVERCOME_MUNCHIES = 13006, -- The raptor has overcome the munchies! (/) - RAPTOR_SECOND_WIND = 13007, -- The raptor has gained a second wind! - MEET_SYRILLIA = 13008, -- Meet up with Syrillia. - RAPTOR_SPEEDS_OFF = 13009, -- The raptor speeds off into the sunset... + NOTHING_HAPPENS = 141, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. + REPORT_TO_CAIT_SITH = 7014, -- You have obtained all of Lilisette's memory fragments. Make haste and report to Cait Sith. + CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. + UNABLE_TO_PROGRESS = 7069, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. + CONQUEST_BASE = 7079, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. + SPARKLING_LIGHT = 7347, -- The ground is sparkling with a strange light. + SENSE_SOMETHING_LURKING = 7437, -- You sense something lurking close by! + NO_GRASS_GROWING_HERE = 7497, -- There is no grass growing here... + PLAYER_OBTAINS_ITEM = 7709, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7710, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7711, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7712, -- You already possess that temporary item. + NO_COMBINATION = 7717, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 7748, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 9995, -- New training regime registered! + FRAGMENT_FAR_TOO_SMALL = 11333, -- You obtain . However, it is far too small to house an adequate amount of energy. Alone, it serves no purpose. + FRAGMENTS_MELD = 11334, -- The tiny fragments of Lilisette's memory meld together to form ! + SEE_WEATHERED_GRAVESTONE = 11335, -- You see a weathered gravestone. + VOIDWALKER_NO_MOB = 11336, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 11337, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 11338, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 11339, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 11341, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 11342, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 11343, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 11344, -- Obtained key item: ! + LEARNS_SPELL = 12844, -- learns ! + UNCANNY_SENSATION = 12846, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 12853, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + RAPTOR_OVERCOME_MUNCHIES = 13006, -- The raptor has overcome the munchies! (/) + RAPTOR_SECOND_WIND = 13007, -- The raptor has gained a second wind! + MEET_SYRILLIA = 13008, -- Meet up with Syrillia. + RAPTOR_SPEEDS_OFF = 13009, -- The raptor speeds off into the sunset... }, mob = { diff --git a/scripts/zones/Batallia_Downs_[S]/IDs.lua b/scripts/zones/Batallia_Downs_[S]/IDs.lua index 7fcda5aabfe..db1b917db0b 100644 --- a/scripts/zones/Batallia_Downs_[S]/IDs.lua +++ b/scripts/zones/Batallia_Downs_[S]/IDs.lua @@ -10,29 +10,30 @@ zones[xi.zone.BATALLIA_DOWNS_S] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - UNABLE_TO_PROGRESS = 7047, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. - LYCOPODIUM_ENTRANCED = 7064, -- The lycopodium is entranced by a sparkling light... - FISHING_MESSAGE_OFFSET = 7077, -- You can't fish here. - NO_RESPONSE = 7699, -- There is no response... - VOIDWALKER_DESPAWN = 8263, -- The monster fades before your eyes, a look of disappointment on its face. - VOIDWALKER_NO_MOB = 8310, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8311, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8312, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8313, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8315, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8316, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8317, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8318, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 9593, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + UNABLE_TO_PROGRESS = 7047, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. + LYCOPODIUM_ENTRANCED = 7064, -- The lycopodium is entranced by a sparkling light... + FISHING_MESSAGE_OFFSET = 7077, -- You can't fish here. + NO_RESPONSE = 7699, -- There is no response... + VOIDWALKER_DESPAWN = 8263, -- The monster fades before your eyes, a look of disappointment on its face. + VOIDWALKER_NO_MOB = 8310, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8311, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8312, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8313, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8315, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8316, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8317, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8318, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 9593, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Beadeaux/IDs.lua b/scripts/zones/Beadeaux/IDs.lua index 1a20e759297..7325c295ded 100644 --- a/scripts/zones/Beadeaux/IDs.lua +++ b/scripts/zones/Beadeaux/IDs.lua @@ -21,6 +21,7 @@ zones[xi.zone.BEADEAUX] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... LOCKED_DOOR_QUADAV_HAS_KEY = 7220, -- It is locked tight, but has what looks like a keyhole. Maybe one of the Quadav here has the key. FEEL_COLD = 7342, -- You feel cold... diff --git a/scripts/zones/Beadeaux_[S]/IDs.lua b/scripts/zones/Beadeaux_[S]/IDs.lua index cdb442f65f3..aeba47cb65b 100644 --- a/scripts/zones/Beadeaux_[S]/IDs.lua +++ b/scripts/zones/Beadeaux_[S]/IDs.lua @@ -10,15 +10,16 @@ zones[xi.zone.BEADEAUX_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7929, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7936, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7929, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7936, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Bearclaw_Pinnacle/IDs.lua b/scripts/zones/Bearclaw_Pinnacle/IDs.lua index 2a9f0df049b..65fdaab50ee 100644 --- a/scripts/zones/Bearclaw_Pinnacle/IDs.lua +++ b/scripts/zones/Bearclaw_Pinnacle/IDs.lua @@ -10,21 +10,22 @@ zones[xi.zone.BEARCLAW_PINNACLE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - ZEPHYR_RIPS = 7422, -- The rips! - CONQUEST_BASE = 7429, -- Tallying conquest results... - BLOWN_AWAY = 7615, -- The explosion has blown you out of the area! - BEGINS_TO_MELT = 7672, -- The Snoll Tzar has begun to melt! - LARGE_STEAM = 7673, -- The Snoll Tzar is emitting a large amount of steam. - SHOOK_SALT = 7674, -- The Snoll Tzar shakes off the salt! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ZEPHYR_RIPS = 7422, -- The rips! + CONQUEST_BASE = 7429, -- Tallying conquest results... + BLOWN_AWAY = 7615, -- The explosion has blown you out of the area! + BEGINS_TO_MELT = 7672, -- The Snoll Tzar has begun to melt! + LARGE_STEAM = 7673, -- The Snoll Tzar is emitting a large amount of steam. + SHOOK_SALT = 7674, -- The Snoll Tzar shakes off the salt! }, mob = { diff --git a/scripts/zones/Beaucedine_Glacier/IDs.lua b/scripts/zones/Beaucedine_Glacier/IDs.lua index c5cb4e964d8..5ca25a823b3 100644 --- a/scripts/zones/Beaucedine_Glacier/IDs.lua +++ b/scripts/zones/Beaucedine_Glacier/IDs.lua @@ -24,6 +24,7 @@ zones[xi.zone.BEAUCEDINE_GLACIER] = CARRIED_OVER_POINTS = 7182, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7183, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7184, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7204, -- Your party is unable to participate because certain members' levels are restricted. FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. CONQUEST = 7491, -- You've earned conquest points! YOU_CANNOT_ENTER_DYNAMIS = 7882, -- You cannot enter Dynamis - [Dummy/San d'Oria/Bastok/Windurst/Jeuno/Beaucedine/Xarcabard/Valkurm/Buburimu/Qufim/Tavnazia] for [day/days] (Vana'diel time). diff --git a/scripts/zones/Beaucedine_Glacier_[S]/IDs.lua b/scripts/zones/Beaucedine_Glacier_[S]/IDs.lua index aae6d7e7593..b85e10e6fe4 100644 --- a/scripts/zones/Beaucedine_Glacier_[S]/IDs.lua +++ b/scripts/zones/Beaucedine_Glacier_[S]/IDs.lua @@ -10,33 +10,34 @@ zones[xi.zone.BEAUCEDINE_GLACIER_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - NOW_IS_NOT_THE_TIME = 6406, -- Now is not the time for that! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - NONDESCRIPT_MASS = 7759, -- A nondescript mass squirms hypnotically beneath the rock. - REMAINS_OF_COOKFIRE = 7783, -- You see the charred remains of a cookfire. - UNWANTED_ATTENTION = 8584, -- Your presence has drawn unwanted attention! - UNUSUAL_PRESENCE = 8586, -- You sense an unusual presence in the area... - NO_RESPONSE = 8588, -- There is no response... - VOIDWALKER_DESPAWN = 8611, -- The monster fades before your eyes, a look of disappointment on its face. - GREETINGS_TRAVELER = 8615, -- Greetings, fair traveler. My people would entreat thy assistance, and offer rich reward in return. Thou shouldst speak with my sister Callisto, who abides in Grauberg's Witchfire Glen. - VOIDWALKER_NO_MOB = 8662, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8663, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8664, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8665, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8667, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8668, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8669, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8670, -- Obtained key item: ! - GATHERED_DAWNDROPS_LIGHT = 8690, -- The gathered dawndrops unleash a brilliant light, melding together to form ! - RETRACED_ALL_JUNCTIONS = 8691, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. - COMMON_SENSE_SURVIVAL = 8695, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + NOW_IS_NOT_THE_TIME = 6406, -- Now is not the time for that! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + NONDESCRIPT_MASS = 7759, -- A nondescript mass squirms hypnotically beneath the rock. + REMAINS_OF_COOKFIRE = 7783, -- You see the charred remains of a cookfire. + UNWANTED_ATTENTION = 8584, -- Your presence has drawn unwanted attention! + UNUSUAL_PRESENCE = 8586, -- You sense an unusual presence in the area... + NO_RESPONSE = 8588, -- There is no response... + VOIDWALKER_DESPAWN = 8611, -- The monster fades before your eyes, a look of disappointment on its face. + GREETINGS_TRAVELER = 8615, -- Greetings, fair traveler. My people would entreat thy assistance, and offer rich reward in return. Thou shouldst speak with my sister Callisto, who abides in Grauberg's Witchfire Glen. + VOIDWALKER_NO_MOB = 8662, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8663, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8664, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8665, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8667, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8668, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8669, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8670, -- Obtained key item: ! + GATHERED_DAWNDROPS_LIGHT = 8690, -- The gathered dawndrops unleash a brilliant light, melding together to form ! + RETRACED_ALL_JUNCTIONS = 8691, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. + COMMON_SENSE_SURVIVAL = 8695, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Behemoths_Dominion/IDs.lua b/scripts/zones/Behemoths_Dominion/IDs.lua index 7b29d6970c0..3ff7544a333 100644 --- a/scripts/zones/Behemoths_Dominion/IDs.lua +++ b/scripts/zones/Behemoths_Dominion/IDs.lua @@ -10,33 +10,34 @@ zones[xi.zone.BEHEMOTHS_DOMINION] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... - IRREPRESSIBLE_MIGHT = 6408, -- An aura of irrepressible might threatens to overwhelm you... - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - AIR_AROUND_YOU_CHANGED = 7322, -- The air around you has suddenly changed! - SOMETHING_BETTER = 7323, -- Don't you have something better to do right now? - CANNOT_REMOVE_FRAG = 7326, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... - ALREADY_OBTAINED_FRAG = 7327, -- You have already obtained this monument's . Try searching for another. - FOUND_ALL_FRAGS = 7329, -- You have obtained ! You now have all 8 fragments of light! - ZILART_MONUMENT = 7330, -- It is an ancient Zilart monument. - PLAYER_OBTAINS_ITEM = 7351, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7352, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7353, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7354, -- You already possess that temporary item. - NO_COMBINATION = 7359, -- You were unable to enter a combination. - REGIME_REGISTERED = 9537, -- New training regime registered! - LEARNS_SPELL = 11526, -- learns ! - UNCANNY_SENSATION = 11528, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 11535, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... + IRREPRESSIBLE_MIGHT = 6408, -- An aura of irrepressible might threatens to overwhelm you... + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + AIR_AROUND_YOU_CHANGED = 7322, -- The air around you has suddenly changed! + SOMETHING_BETTER = 7323, -- Don't you have something better to do right now? + CANNOT_REMOVE_FRAG = 7326, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... + ALREADY_OBTAINED_FRAG = 7327, -- You have already obtained this monument's . Try searching for another. + FOUND_ALL_FRAGS = 7329, -- You have obtained ! You now have all 8 fragments of light! + ZILART_MONUMENT = 7330, -- It is an ancient Zilart monument. + PLAYER_OBTAINS_ITEM = 7351, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7352, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7353, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7354, -- You already possess that temporary item. + NO_COMBINATION = 7359, -- You were unable to enter a combination. + REGIME_REGISTERED = 9537, -- New training regime registered! + LEARNS_SPELL = 11526, -- learns ! + UNCANNY_SENSATION = 11528, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 11535, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Bhaflau_Remnants/IDs.lua b/scripts/zones/Bhaflau_Remnants/IDs.lua index 5577cbfa070..559cc202a6c 100644 --- a/scripts/zones/Bhaflau_Remnants/IDs.lua +++ b/scripts/zones/Bhaflau_Remnants/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.BHAFLAU_REMNANTS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CELL_OFFSET = 7217, -- Main Weapon/Sub-Weapon restriction removed. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CELL_OFFSET = 7217, -- Main Weapon/Sub-Weapon restriction removed. }, mob = { diff --git a/scripts/zones/Bhaflau_Thickets/IDs.lua b/scripts/zones/Bhaflau_Thickets/IDs.lua index 9134ef18a34..e6df2ff3a04 100644 --- a/scripts/zones/Bhaflau_Thickets/IDs.lua +++ b/scripts/zones/Bhaflau_Thickets/IDs.lua @@ -10,34 +10,35 @@ zones[xi.zone.BHAFLAU_THICKETS] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - DIG_THROW_AWAY = 7067, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7069, -- You dig and you dig, but find nothing. - STAGING_GATE_CLOSER = 7314, -- You must move closer. - STAGING_GATE_INTERACT = 7315, -- This gate guards an area under Imperial control. - STAGING_GATE_MAMOOL = 7317, -- Mamool Ja Staging Point. - CANNOT_LEAVE = 7325, -- You cannot leave this area while in the possession of . - RESPONSE = 7334, -- There is no response... - HAND_OVER_TO_IMMORTAL = 7547, -- You hand over the % to the Immortal. - YOUR_IMPERIAL_STANDING = 7548, -- Your Imperial Standing has increased! - HARVESTING_IS_POSSIBLE_HERE = 7566, -- Harvesting is possible here if you have . - CANNOT_ENTER = 7589, -- You cannot enter at this time. Please wait a while before trying again. - AREA_FULL = 7590, -- This area is fully occupied. You were unable to enter. - MEMBER_NO_REQS = 7594, -- Not all of your party members meet the requirements for this objective. Unable to enter area. - MEMBER_TOO_FAR = 7598, -- One or more party members are too far away from the entrance. Unable to enter area. - SHED_LEAVES = 7659, -- The ground is strewn with shed leaves... - BLOOD_STAINS = 7661, -- The ground is smeared with bloodstains... - DRAWS_NEAR = 7686, -- Something draws near! - HOMEPOINT_SET = 7697, -- Home point set! + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + DIG_THROW_AWAY = 7067, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7069, -- You dig and you dig, but find nothing. + STAGING_GATE_CLOSER = 7314, -- You must move closer. + STAGING_GATE_INTERACT = 7315, -- This gate guards an area under Imperial control. + STAGING_GATE_MAMOOL = 7317, -- Mamool Ja Staging Point. + CANNOT_LEAVE = 7325, -- You cannot leave this area while in the possession of . + RESPONSE = 7334, -- There is no response... + HAND_OVER_TO_IMMORTAL = 7547, -- You hand over the % to the Immortal. + YOUR_IMPERIAL_STANDING = 7548, -- Your Imperial Standing has increased! + HARVESTING_IS_POSSIBLE_HERE = 7566, -- Harvesting is possible here if you have . + CANNOT_ENTER = 7589, -- You cannot enter at this time. Please wait a while before trying again. + AREA_FULL = 7590, -- This area is fully occupied. You were unable to enter. + MEMBER_NO_REQS = 7594, -- Not all of your party members meet the requirements for this objective. Unable to enter area. + MEMBER_TOO_FAR = 7598, -- One or more party members are too far away from the entrance. Unable to enter area. + SHED_LEAVES = 7659, -- The ground is strewn with shed leaves... + BLOOD_STAINS = 7661, -- The ground is smeared with bloodstains... + DRAWS_NEAR = 7686, -- Something draws near! + HOMEPOINT_SET = 7697, -- Home point set! }, mob = { diff --git a/scripts/zones/Bibiki_Bay/IDs.lua b/scripts/zones/Bibiki_Bay/IDs.lua index 77916d032d4..8bfff0be778 100644 --- a/scripts/zones/Bibiki_Bay/IDs.lua +++ b/scripts/zones/Bibiki_Bay/IDs.lua @@ -10,41 +10,42 @@ zones[xi.zone.BIBIKI_BAY] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - YOU_OBTAIN = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - POHKA_SHOP_DIALOG = 7228, -- Hey buddy, need a rod? I've got loads of state-of-the-art, top-of-the-line, high quality rods right here waitin' fer ya! Whaddya say? - MEP_NHAPOPOLUKO_DIALOG = 7230, -- Welcome! Fishermen's Guild representative, at your service! - WHOA_HOLD_ON_NOW = 7246, -- Whoa, hold on now. Ain't look like you got 'nuff room in that spiffy bag o' yours to carrrry all these darn clams. Why don't you trrry thrrrowin' some o' that old junk away before ya come back here 'gain? - YOU_GIT_YER_BAG_READY = 7247, -- You git yer bag ready, pardner? Well alrighty then. Here'rrre yer clams. - YOU_RETURN_THE = 7254, -- You return the . - AREA_IS_LITTERED = 7255, -- The area is littered with pieces of broken seashells. - YOU_FIND_ITEM = 7257, -- You find and toss it into your bucket. - THE_WEIGHT_IS_TOO_MUCH = 7258, -- You find and toss it into your bucket... But the weight is too much for the bucket and its bottom breaks! All your shellfish are washed back into the sea... - YOU_CANNOT_COLLECT = 7259, -- You cannot collect any clams with a broken bucket! - IT_LOOKS_LIKE_SOMEONE = 7260, -- It looks like someone has been digging here. - YOUR_CLAMMING_CAPACITY = 7268, -- Your clamming capacity has increased to ponzes! Now you may be able to dig up a... - SOMETHING_JUMPS_INTO = 7271, -- Something jumps into your bucket and breaks through the bottom! All your shellfish are washed back into the sea... - FISHING_MESSAGE_OFFSET = 7272, -- You can't fish here. - DIG_THROW_AWAY = 7285, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7287, -- You dig and you dig, but find nothing. - CLUNK_CLUNK_WHIRL_WHIZZ = 7377, -- ... ...! - YOU_ARE_NOT_ALONE = 7447, -- You are not alone! - NO_BILLET = 7489, -- You were refused passage for failing to present ! - HAVE_BILLET = 7494, -- You cannot buy morrre than one . Use the one you have now to ride the next ship. - LEFT_BILLET = 7499, -- You use your . ( trip[/s] remaining) - END_BILLET = 7500, -- You use up your . - NOTHING_LEFT_INTEREST = 7617, -- There is nothing left of interest here. - COMMON_SENSE_SURVIVAL = 8645, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. - NEWS_BILLET = 8668, -- has been [added to your list of favorites/removed from your list of favorites]. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + YOU_OBTAIN = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + POHKA_SHOP_DIALOG = 7228, -- Hey buddy, need a rod? I've got loads of state-of-the-art, top-of-the-line, high quality rods right here waitin' fer ya! Whaddya say? + MEP_NHAPOPOLUKO_DIALOG = 7230, -- Welcome! Fishermen's Guild representative, at your service! + WHOA_HOLD_ON_NOW = 7246, -- Whoa, hold on now. Ain't look like you got 'nuff room in that spiffy bag o' yours to carrrry all these darn clams. Why don't you trrry thrrrowin' some o' that old junk away before ya come back here 'gain? + YOU_GIT_YER_BAG_READY = 7247, -- You git yer bag ready, pardner? Well alrighty then. Here'rrre yer clams. + YOU_RETURN_THE = 7254, -- You return the . + AREA_IS_LITTERED = 7255, -- The area is littered with pieces of broken seashells. + YOU_FIND_ITEM = 7257, -- You find and toss it into your bucket. + THE_WEIGHT_IS_TOO_MUCH = 7258, -- You find and toss it into your bucket... But the weight is too much for the bucket and its bottom breaks! All your shellfish are washed back into the sea... + YOU_CANNOT_COLLECT = 7259, -- You cannot collect any clams with a broken bucket! + IT_LOOKS_LIKE_SOMEONE = 7260, -- It looks like someone has been digging here. + YOUR_CLAMMING_CAPACITY = 7268, -- Your clamming capacity has increased to ponzes! Now you may be able to dig up a... + SOMETHING_JUMPS_INTO = 7271, -- Something jumps into your bucket and breaks through the bottom! All your shellfish are washed back into the sea... + FISHING_MESSAGE_OFFSET = 7272, -- You can't fish here. + DIG_THROW_AWAY = 7285, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7287, -- You dig and you dig, but find nothing. + CLUNK_CLUNK_WHIRL_WHIZZ = 7377, -- ... ...! + YOU_ARE_NOT_ALONE = 7447, -- You are not alone! + NO_BILLET = 7489, -- You were refused passage for failing to present ! + HAVE_BILLET = 7494, -- You cannot buy morrre than one . Use the one you have now to ride the next ship. + LEFT_BILLET = 7499, -- You use your . ( trip[/s] remaining) + END_BILLET = 7500, -- You use up your . + NOTHING_LEFT_INTEREST = 7617, -- There is nothing left of interest here. + COMMON_SENSE_SURVIVAL = 8645, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NEWS_BILLET = 8668, -- has been [added to your list of favorites/removed from your list of favorites]. }, mob = { diff --git a/scripts/zones/Boneyard_Gully/IDs.lua b/scripts/zones/Boneyard_Gully/IDs.lua index 61e7e75ecda..6b2e0e82b98 100644 --- a/scripts/zones/Boneyard_Gully/IDs.lua +++ b/scripts/zones/Boneyard_Gully/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.BONEYARD_GULLY] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CONQUEST_BASE = 7429, -- Tallying conquest results... - TUCHULCHA_SANDPIT = 7748, -- Tuchulcha retreats beneath the soil! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CONQUEST_BASE = 7429, -- Tallying conquest results... + TUCHULCHA_SANDPIT = 7748, -- Tuchulcha retreats beneath the soil! }, mob = { diff --git a/scripts/zones/Bostaunieux_Oubliette/IDs.lua b/scripts/zones/Bostaunieux_Oubliette/IDs.lua index a7ae4ab65e3..0cc10da4e25 100644 --- a/scripts/zones/Bostaunieux_Oubliette/IDs.lua +++ b/scripts/zones/Bostaunieux_Oubliette/IDs.lua @@ -10,32 +10,33 @@ zones[xi.zone.BOSTAUNIEUX_OUBLIETTE] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - CHUMIA_DIALOG = 7316, -- Welcome to Bostaunieux Oubliette... - SEEMS_LOCKED = 7318, -- It seems to be locked. - SPIRAL_HELL_LEARNED = 7425, -- You have learned the weapon skill Spiral Hell! - SENSE_OMINOUS_PRESENCE = 7426, -- You sense an ominous presence... - ITEMS_ITEMS_LA_LA = 7429, -- You can hear a strange voice... Items, items, la la la la la - GOBLIN_SLIPPED_AWAY = 7435, -- The Goblin slipped away when you were not looking... - REGIME_REGISTERED = 9540, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 10592, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 10593, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 10594, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 10595, -- You already possess that temporary item. - NO_COMBINATION = 10600, -- You were unable to enter a combination. - LEARNS_SPELL = 10624, -- learns ! - UNCANNY_SENSATION = 10626, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 10633, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + CHUMIA_DIALOG = 7316, -- Welcome to Bostaunieux Oubliette... + SEEMS_LOCKED = 7318, -- It seems to be locked. + SPIRAL_HELL_LEARNED = 7425, -- You have learned the weapon skill Spiral Hell! + SENSE_OMINOUS_PRESENCE = 7426, -- You sense an ominous presence... + ITEMS_ITEMS_LA_LA = 7429, -- You can hear a strange voice... Items, items, la la la la la + GOBLIN_SLIPPED_AWAY = 7435, -- The Goblin slipped away when you were not looking... + REGIME_REGISTERED = 9540, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 10592, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 10593, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 10594, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 10595, -- You already possess that temporary item. + NO_COMBINATION = 10600, -- You were unable to enter a combination. + LEARNS_SPELL = 10624, -- learns ! + UNCANNY_SENSATION = 10626, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 10633, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Buburimu_Peninsula/IDs.lua b/scripts/zones/Buburimu_Peninsula/IDs.lua index 241883dc8fe..965a4043af7 100644 --- a/scripts/zones/Buburimu_Peninsula/IDs.lua +++ b/scripts/zones/Buburimu_Peninsula/IDs.lua @@ -20,6 +20,7 @@ zones[xi.zone.BUBURIMU_PENINSULA] = CARRIED_OVER_POINTS = 7036, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7037, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7038, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7058, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7092, -- Tallying conquest results... BEASTMEN_BANNER = 7173, -- There is a beastmen's banner. FIVEOFSPADES_DIALOG = 7251, -- GiMmefIvE! FiVe isA cArdIanOF WiN-DuRst! FIvEiS OnpA-tRol! diff --git a/scripts/zones/Caedarva_Mire/IDs.lua b/scripts/zones/Caedarva_Mire/IDs.lua index 2c8b553e203..a88b0f63769 100644 --- a/scripts/zones/Caedarva_Mire/IDs.lua +++ b/scripts/zones/Caedarva_Mire/IDs.lua @@ -10,39 +10,40 @@ zones[xi.zone.CAEDARVA_MIRE] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - STAGING_GATE_CLOSER = 7314, -- You must move closer. - STAGING_GATE_INTERACT = 7315, -- This gate guards an area under Imperial control. - STAGING_GATE_AZOUPH = 7316, -- Azouph Isle Staging Point. - STAGING_GATE_DVUCCA = 7319, -- Dvucca Isle Staging Point. - CANNOT_LEAVE = 7325, -- You cannot leave this area while in the possession of . - RESPONSE = 7334, -- There is no response... - LOGGING_IS_POSSIBLE_HERE = 7348, -- Logging is possible here if you have . - HAND_OVER_TO_IMMORTAL = 7429, -- You hand over the % to the Immortal. - YOUR_IMPERIAL_STANDING = 7430, -- Your Imperial Standing has increased! - CANNOT_ENTER = 7468, -- You cannot enter at this time. Please wait a while before trying again. - AREA_FULL = 7469, -- This area is fully occupied. You were unable to enter. - MEMBER_NO_REQS = 7473, -- Not all of your party members meet the requirements for this objective. Unable to enter area. - MEMBER_TOO_FAR = 7477, -- One or more party members are too far away from the entrance. Unable to enter area. - JAZARAATS_HEADSTONE = 7529, -- The name Sir Jazaraat is engraved on the headstone... - SEAPRINCES_TOMBSTONE = 8053, -- It appears to be the grave of a great soul to an age long past. - SHED_LEAVES = 8059, -- The ground is strewn with shed leaves... - SICKLY_SWEET = 8064, -- A sickly sweet fragrance pervades the air... - STIFLING_STENCH = 8070, -- A stifling stench pervades the air... - SHREDDED_SCRAPS = 8077, -- Shredded scraps of paper are scattered all over... - DRAWS_NEAR = 8086, -- Something draws near! - HOMEPOINT_SET = 8979, -- Home point set! - COMMON_SENSE_SURVIVAL = 9059, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + STAGING_GATE_CLOSER = 7314, -- You must move closer. + STAGING_GATE_INTERACT = 7315, -- This gate guards an area under Imperial control. + STAGING_GATE_AZOUPH = 7316, -- Azouph Isle Staging Point. + STAGING_GATE_DVUCCA = 7319, -- Dvucca Isle Staging Point. + CANNOT_LEAVE = 7325, -- You cannot leave this area while in the possession of . + RESPONSE = 7334, -- There is no response... + LOGGING_IS_POSSIBLE_HERE = 7348, -- Logging is possible here if you have . + HAND_OVER_TO_IMMORTAL = 7429, -- You hand over the % to the Immortal. + YOUR_IMPERIAL_STANDING = 7430, -- Your Imperial Standing has increased! + CANNOT_ENTER = 7468, -- You cannot enter at this time. Please wait a while before trying again. + AREA_FULL = 7469, -- This area is fully occupied. You were unable to enter. + MEMBER_NO_REQS = 7473, -- Not all of your party members meet the requirements for this objective. Unable to enter area. + MEMBER_TOO_FAR = 7477, -- One or more party members are too far away from the entrance. Unable to enter area. + JAZARAATS_HEADSTONE = 7529, -- The name Sir Jazaraat is engraved on the headstone... + SEAPRINCES_TOMBSTONE = 8053, -- It appears to be the grave of a great soul to an age long past. + SHED_LEAVES = 8059, -- The ground is strewn with shed leaves... + SICKLY_SWEET = 8064, -- A sickly sweet fragrance pervades the air... + STIFLING_STENCH = 8070, -- A stifling stench pervades the air... + SHREDDED_SCRAPS = 8077, -- Shredded scraps of paper are scattered all over... + DRAWS_NEAR = 8086, -- Something draws near! + HOMEPOINT_SET = 8979, -- Home point set! + COMMON_SENSE_SURVIVAL = 9059, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Cape_Teriggan/IDs.lua b/scripts/zones/Cape_Teriggan/IDs.lua index 8547b650db8..f214fe12b1a 100644 --- a/scripts/zones/Cape_Teriggan/IDs.lua +++ b/scripts/zones/Cape_Teriggan/IDs.lua @@ -10,39 +10,40 @@ zones[xi.zone.CAPE_TERIGGAN] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. - CONQUEST = 7225, -- You've earned conquest points! - FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. - SOMETHING_BETTER = 7670, -- Don't you have something better to do right now? - CANNOT_REMOVE_FRAG = 7673, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... - ALREADY_OBTAINED_FRAG = 7674, -- You have already obtained this monument's . Try searching for another. - FOUND_ALL_FRAGS = 7675, -- You have obtained all of the fragments. You must hurry to the ruins of the ancient shrine! - ZILART_MONUMENT = 7677, -- It is an ancient Zilart monument. - MUST_BE_A_WAY_TO_SOOTHE = 7685, -- There must be a way to soothe the weary soul who once guarded this monument... - COLD_WIND_CHILLS_YOU = 7692, -- A cold wind chills you to the bone. - SENSE_OMINOUS_PRESENCE = 7694, -- You sense an ominous presence... - PLAYER_OBTAINS_ITEM = 7928, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7929, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7930, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7931, -- You already possess that temporary item. - NO_COMBINATION = 7936, -- You were unable to enter a combination. - REGIME_REGISTERED = 10114, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 11233, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. - HOMEPOINT_SET = 11261, -- Home point set! + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. + CONQUEST = 7225, -- You've earned conquest points! + FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. + SOMETHING_BETTER = 7670, -- Don't you have something better to do right now? + CANNOT_REMOVE_FRAG = 7673, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... + ALREADY_OBTAINED_FRAG = 7674, -- You have already obtained this monument's . Try searching for another. + FOUND_ALL_FRAGS = 7675, -- You have obtained all of the fragments. You must hurry to the ruins of the ancient shrine! + ZILART_MONUMENT = 7677, -- It is an ancient Zilart monument. + MUST_BE_A_WAY_TO_SOOTHE = 7685, -- There must be a way to soothe the weary soul who once guarded this monument... + COLD_WIND_CHILLS_YOU = 7692, -- A cold wind chills you to the bone. + SENSE_OMINOUS_PRESENCE = 7694, -- You sense an ominous presence... + PLAYER_OBTAINS_ITEM = 7928, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7929, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7930, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7931, -- You already possess that temporary item. + NO_COMBINATION = 7936, -- You were unable to enter a combination. + REGIME_REGISTERED = 10114, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 11233, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + HOMEPOINT_SET = 11261, -- Home point set! }, mob = { diff --git a/scripts/zones/Carpenters_Landing/IDs.lua b/scripts/zones/Carpenters_Landing/IDs.lua index 013f0db3b48..b81c942c15a 100644 --- a/scripts/zones/Carpenters_Landing/IDs.lua +++ b/scripts/zones/Carpenters_Landing/IDs.lua @@ -10,32 +10,33 @@ zones[xi.zone.CARPENTERS_LANDING] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - YOU_WISH_TO_KNOW_MISTALLE = 7232, -- You wish to know of the Knights Mistalle? - SQUASH_ANOTHER_WORM = 7233, -- You're just like everyone else! A maggot looking for a scandal! Well, it's time for me to squash another worm! - BEGONE_TRESPASSER = 7252, -- Begone, trespasser! This land belongs to the Knights Mi- This land belongs to Count Teulomme! - CRYPTONBERRY_FALLEN_TREE = 7254, -- A tree has fallen here... - CRYPTONBERRY_EXECUTOR_POP = 7255, -- You feel a wave of hatred wash over you! - FISHING_MESSAGE_OFFSET = 7278, -- You can't fish here. - LOGGING_IS_POSSIBLE_HERE = 7395, -- Logging is possible here if you have . - BEUGUNGEL_SHOP_DIALOG = 7427, -- Hello, [sir/ma'am]! I'm selling goods direct from the Carpenters' Guild. - CRYPTONBERRY_EXECUTOR_DIE = 7479, -- ...Cleave our foesss with barren hate. - CRYPTONBERRY_ASSASSIN_2HR = 7480, -- ..Take up thy lanternsss. The truth we shall illuminate. - CRYPTONBERRY_EXECUTOR_2HR = 7481, -- Through this we ssseek our just reward... - MYCOPHILE_MUSHROOM = 7498, -- There is a rotten mushroom here. There are 3 openings in its cap. - HERCULES_TREE_NOTHING_YET = 7500, -- There is nothing here yet. Check again in the morning. - COMMON_SENSE_SURVIVAL = 7565, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + YOU_WISH_TO_KNOW_MISTALLE = 7232, -- You wish to know of the Knights Mistalle? + SQUASH_ANOTHER_WORM = 7233, -- You're just like everyone else! A maggot looking for a scandal! Well, it's time for me to squash another worm! + BEGONE_TRESPASSER = 7252, -- Begone, trespasser! This land belongs to the Knights Mi- This land belongs to Count Teulomme! + CRYPTONBERRY_FALLEN_TREE = 7254, -- A tree has fallen here... + CRYPTONBERRY_EXECUTOR_POP = 7255, -- You feel a wave of hatred wash over you! + FISHING_MESSAGE_OFFSET = 7278, -- You can't fish here. + LOGGING_IS_POSSIBLE_HERE = 7395, -- Logging is possible here if you have . + BEUGUNGEL_SHOP_DIALOG = 7427, -- Hello, [sir/ma'am]! I'm selling goods direct from the Carpenters' Guild. + CRYPTONBERRY_EXECUTOR_DIE = 7479, -- ...Cleave our foesss with barren hate. + CRYPTONBERRY_ASSASSIN_2HR = 7480, -- ..Take up thy lanternsss. The truth we shall illuminate. + CRYPTONBERRY_EXECUTOR_2HR = 7481, -- Through this we ssseek our just reward... + MYCOPHILE_MUSHROOM = 7498, -- There is a rotten mushroom here. There are 3 openings in its cap. + HERCULES_TREE_NOTHING_YET = 7500, -- There is nothing here yet. Check again in the morning. + COMMON_SENSE_SURVIVAL = 7565, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Castle_Oztroja/IDs.lua b/scripts/zones/Castle_Oztroja/IDs.lua index bc9a4c10afb..511be87f6b6 100644 --- a/scripts/zones/Castle_Oztroja/IDs.lua +++ b/scripts/zones/Castle_Oztroja/IDs.lua @@ -32,6 +32,7 @@ zones[xi.zone.CASTLE_OZTROJA] = CARRIED_OVER_POINTS = 7186, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7187, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7188, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7208, -- Your party is unable to participate because certain members' levels are restricted. FISHING_MESSAGE_OFFSET = 7261, -- You can't fish here. CHEST_UNLOCKED = 7432, -- You unlock the chest! YAGUDO_AVATAR_ENGAGE = 7453, -- Kahk-ka-ka... You filthy, dim-witted heretics! You have damned yourselves by coming here. diff --git a/scripts/zones/Castle_Oztroja_[S]/IDs.lua b/scripts/zones/Castle_Oztroja_[S]/IDs.lua index 15e6a221991..73cde5a10b1 100644 --- a/scripts/zones/Castle_Oztroja_[S]/IDs.lua +++ b/scripts/zones/Castle_Oztroja_[S]/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.CASTLE_OZTROJA_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - PARTY_MEMBERS_HAVE_FALLEN = 8029, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 8036, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + PARTY_MEMBERS_HAVE_FALLEN = 8029, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 8036, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Castle_Zvahl_Baileys/IDs.lua b/scripts/zones/Castle_Zvahl_Baileys/IDs.lua index 770018f5fb0..02d53cd3bb3 100644 --- a/scripts/zones/Castle_Zvahl_Baileys/IDs.lua +++ b/scripts/zones/Castle_Zvahl_Baileys/IDs.lua @@ -10,19 +10,20 @@ zones[xi.zone.CASTLE_ZVAHL_BAILEYS] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6564, -- You are suddenly overcome with a sense of foreboding... - FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CHEST_UNLOCKED = 7231, -- You unlock the chest! - COMMON_SENSE_SURVIVAL = 7606, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6564, -- You are suddenly overcome with a sense of foreboding... + FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + CHEST_UNLOCKED = 7231, -- You unlock the chest! + COMMON_SENSE_SURVIVAL = 7606, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Castle_Zvahl_Baileys_[S]/IDs.lua b/scripts/zones/Castle_Zvahl_Baileys_[S]/IDs.lua index 66ed3fc0ec8..fc81fcb7815 100644 --- a/scripts/zones/Castle_Zvahl_Baileys_[S]/IDs.lua +++ b/scripts/zones/Castle_Zvahl_Baileys_[S]/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.CASTLE_ZVAHL_BAILEYS_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CANNOT_FIND_FLARE = 7675, -- You cannot find the . Try searching again at a later time. - NO_RESPONSE = 7889, -- There is no response... - COMMON_SENSE_SURVIVAL = 7947, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CANNOT_FIND_FLARE = 7675, -- You cannot find the . Try searching again at a later time. + NO_RESPONSE = 7889, -- There is no response... + COMMON_SENSE_SURVIVAL = 7947, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Castle_Zvahl_Keep/IDs.lua b/scripts/zones/Castle_Zvahl_Keep/IDs.lua index 6ae8dadd3dd..9cf0f2233b7 100644 --- a/scripts/zones/Castle_Zvahl_Keep/IDs.lua +++ b/scripts/zones/Castle_Zvahl_Keep/IDs.lua @@ -10,20 +10,21 @@ zones[xi.zone.CASTLE_ZVAHL_KEEP] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CHEST_UNLOCKED = 7231, -- You unlock the chest! - ITEMS_ITEMS_LA_LA = 7240, -- You can hear a strange voice... Items, items, la la la la la - GOBLIN_SLIPPED_AWAY = 7246, -- The Goblin slipped away when you were not looking... - HOMEPOINT_SET = 7289, -- Home point set! + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + CHEST_UNLOCKED = 7231, -- You unlock the chest! + ITEMS_ITEMS_LA_LA = 7240, -- You can hear a strange voice... Items, items, la la la la la + GOBLIN_SLIPPED_AWAY = 7246, -- The Goblin slipped away when you were not looking... + HOMEPOINT_SET = 7289, -- Home point set! }, mob = { diff --git a/scripts/zones/Castle_Zvahl_Keep_[S]/IDs.lua b/scripts/zones/Castle_Zvahl_Keep_[S]/IDs.lua index 00492f0b2ff..f7a6b207779 100644 --- a/scripts/zones/Castle_Zvahl_Keep_[S]/IDs.lua +++ b/scripts/zones/Castle_Zvahl_Keep_[S]/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.CASTLE_ZVAHL_KEEP_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - HOMEPOINT_SET = 7870, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + HOMEPOINT_SET = 7870, -- Home point set! }, mob = { diff --git a/scripts/zones/Ceizak_Battlegrounds/IDs.lua b/scripts/zones/Ceizak_Battlegrounds/IDs.lua index 454640c0efc..c15907e0c60 100644 --- a/scripts/zones/Ceizak_Battlegrounds/IDs.lua +++ b/scripts/zones/Ceizak_Battlegrounds/IDs.lua @@ -10,27 +10,28 @@ zones[xi.zone.CEIZAK_BATTLEGROUNDS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - WAYPOINT_ATTUNED = 7588, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3]! - EXPENDED_KINETIC_UNITS = 7603, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 7604, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 7605, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 7606, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 7607, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 7608, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 7609, -- A surplus of kinetic unit[/s] has been lost to the aether. - HOMEPOINT_SET = 7791, -- Home point set! - LEARNS_SPELL = 8034, -- learns ! - UNCANNY_SENSATION = 8036, -- You are assaulted by an uncanny sensation. - ENERGIES_COURSE = 8037, -- The arcane energies begin to course within your veins. - MYSTICAL_WARMTH = 8038, -- You feel a mystical warmth welling up inside you! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WAYPOINT_ATTUNED = 7588, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3]! + EXPENDED_KINETIC_UNITS = 7603, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 7604, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 7605, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 7606, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 7607, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 7608, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 7609, -- A surplus of kinetic unit[/s] has been lost to the aether. + HOMEPOINT_SET = 7791, -- Home point set! + LEARNS_SPELL = 8034, -- learns ! + UNCANNY_SENSATION = 8036, -- You are assaulted by an uncanny sensation. + ENERGIES_COURSE = 8037, -- The arcane energies begin to course within your veins. + MYSTICAL_WARMTH = 8038, -- You feel a mystical warmth welling up inside you! }, mob = { diff --git a/scripts/zones/Celennia_Memorial_Library/IDs.lua b/scripts/zones/Celennia_Memorial_Library/IDs.lua index 7159ad870ee..07da178936d 100644 --- a/scripts/zones/Celennia_Memorial_Library/IDs.lua +++ b/scripts/zones/Celennia_Memorial_Library/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.CELENNIA_MEMORIAL_LIBRARY] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Chamber_of_Oracles/IDs.lua b/scripts/zones/Chamber_of_Oracles/IDs.lua index 93215bd9b80..64766c45811 100644 --- a/scripts/zones/Chamber_of_Oracles/IDs.lua +++ b/scripts/zones/Chamber_of_Oracles/IDs.lua @@ -17,6 +17,7 @@ zones[xi.zone.CHAMBER_OF_ORACLES] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... YOU_CANNOT_ENTER_THE_BATTLEFIELD = 7218, -- You cannot enter the battlefield at present. Please wait a little longer. PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. diff --git a/scripts/zones/Chateau_dOraguille/IDs.lua b/scripts/zones/Chateau_dOraguille/IDs.lua index 9f2f2633f50..eaff339c387 100644 --- a/scripts/zones/Chateau_dOraguille/IDs.lua +++ b/scripts/zones/Chateau_dOraguille/IDs.lua @@ -10,32 +10,33 @@ zones[xi.zone.CHATEAU_DORAGUILLE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6592, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6598, -- Obtained: . - GIL_OBTAINED = 6599, -- Obtained gil. - KEYITEM_OBTAINED = 6601, -- Obtained key item: . - KEYITEM_LOST = 6602, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6603, -- You do not have enough gil. - CARRIED_OVER_POINTS = 6637, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6638, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6639, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - YOU_LEARNED_TRUST = 6661, -- You learned Trust: ! - HALVER_OFFSET = 6801, -- The princess is always speaking of your deeds for the Kingdom. Everyone here is counting on you, . - LIGHTBRINGER_EXTRA = 6844, -- Lightbringer has been found! This is the happiest day in my tenure as monarlais! - CONQUEST_BASE = 6887, -- Tallying conquest results... - SHALL_BEGIN_DISCUSSION = 7123, -- We shall begin immediate discussion on a policy for action. , you must work on improving your skills and equipment. - TIME_TO_REACH_DECISION = 7156, -- I believe it will take some time for us to reach a decision. Your time will come in due course, my friend. Until then, be well. - TOMBSTONE = 7180, -- Here lies the beloved Queen Leaute. May Her Majesty's soul find Paradise. - ITS_LOCKED = 7227, -- It's locked. - ITS_LOCKED_TIGHT = 7228, -- It's locked tight. - FEI_YIN_NORTHEAST = 7262, -- Fei'Yin is to the northeast of Beaucedine Glacier. Be wary on the road, there are many beastmen, and worse, about. - PRINCE_TRION_CHAMBERS = 7264, -- Prince Trion went to his chambers a short while ago and has yet to return. You should go speak with him there. - WHAT_TRION_WILL_SAY = 7265, -- I do not know what Prince Trion will say...but I leave your actions to your judgment. You are free to do as you will. - KNEW_YOU_WERE_THE_ONE = 7268, -- ! I knew you were the one for the job. But don't rest on your laurels! - HIS_MAJESTY_AWAITS = 7272, -- Go, . His Majesty awaits! - HEIR_TO_LIGHT_EXTRA = 7798, -- ! I never doubted your ability on the front line. We are truly in your debt. Proceed to the Audience Chamber. His Highness awaits! - SAVAGE_BLADE_LEARNED = 7948, -- You have learned the weapon skill Savage Blade! - CELEBRATORY_GOODS = 8460, -- An assortment of celebratory goods is available for purchase. + ITEM_CANNOT_BE_OBTAINED = 6592, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6598, -- Obtained: . + GIL_OBTAINED = 6599, -- Obtained gil. + KEYITEM_OBTAINED = 6601, -- Obtained key item: . + KEYITEM_LOST = 6602, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6603, -- You do not have enough gil. + CARRIED_OVER_POINTS = 6637, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6638, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6639, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6659, -- Your party is unable to participate because certain members' levels are restricted. + YOU_LEARNED_TRUST = 6661, -- You learned Trust: ! + HALVER_OFFSET = 6801, -- The princess is always speaking of your deeds for the Kingdom. Everyone here is counting on you, . + LIGHTBRINGER_EXTRA = 6844, -- Lightbringer has been found! This is the happiest day in my tenure as monarlais! + CONQUEST_BASE = 6887, -- Tallying conquest results... + SHALL_BEGIN_DISCUSSION = 7123, -- We shall begin immediate discussion on a policy for action. , you must work on improving your skills and equipment. + TIME_TO_REACH_DECISION = 7156, -- I believe it will take some time for us to reach a decision. Your time will come in due course, my friend. Until then, be well. + TOMBSTONE = 7180, -- Here lies the beloved Queen Leaute. May Her Majesty's soul find Paradise. + ITS_LOCKED = 7227, -- It's locked. + ITS_LOCKED_TIGHT = 7228, -- It's locked tight. + FEI_YIN_NORTHEAST = 7262, -- Fei'Yin is to the northeast of Beaucedine Glacier. Be wary on the road, there are many beastmen, and worse, about. + PRINCE_TRION_CHAMBERS = 7264, -- Prince Trion went to his chambers a short while ago and has yet to return. You should go speak with him there. + WHAT_TRION_WILL_SAY = 7265, -- I do not know what Prince Trion will say...but I leave your actions to your judgment. You are free to do as you will. + KNEW_YOU_WERE_THE_ONE = 7268, -- ! I knew you were the one for the job. But don't rest on your laurels! + HIS_MAJESTY_AWAITS = 7272, -- Go, . His Majesty awaits! + HEIR_TO_LIGHT_EXTRA = 7798, -- ! I never doubted your ability on the front line. We are truly in your debt. Proceed to the Audience Chamber. His Highness awaits! + SAVAGE_BLADE_LEARNED = 7948, -- You have learned the weapon skill Savage Blade! + CELEBRATORY_GOODS = 8460, -- An assortment of celebratory goods is available for purchase. }, mob = { diff --git a/scripts/zones/Chocobo_Circuit/IDs.lua b/scripts/zones/Chocobo_Circuit/IDs.lua index 01b48ac72bc..ca4a09cb6d6 100644 --- a/scripts/zones/Chocobo_Circuit/IDs.lua +++ b/scripts/zones/Chocobo_Circuit/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.CHOCOBO_CIRCUIT] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Cirdas_Caverns/IDs.lua b/scripts/zones/Cirdas_Caverns/IDs.lua index f623d33a2a8..e69cc2205d5 100644 --- a/scripts/zones/Cirdas_Caverns/IDs.lua +++ b/scripts/zones/Cirdas_Caverns/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.CIRDAS_CAVERNS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Cirdas_Caverns_U/IDs.lua b/scripts/zones/Cirdas_Caverns_U/IDs.lua index 915f75949ec..9ee5dad9afc 100644 --- a/scripts/zones/Cirdas_Caverns_U/IDs.lua +++ b/scripts/zones/Cirdas_Caverns_U/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.CIRDAS_CAVERNS_U] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Cloister_of_Flames/IDs.lua b/scripts/zones/Cloister_of_Flames/IDs.lua index acb2a58ee38..73859b90616 100644 --- a/scripts/zones/Cloister_of_Flames/IDs.lua +++ b/scripts/zones/Cloister_of_Flames/IDs.lua @@ -17,6 +17,7 @@ zones[xi.zone.CLOISTER_OF_FLAMES] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... YOU_CANNOT_ENTER_THE_BATTLEFIELD = 7218, -- You cannot enter the battlefield at present. Please wait a little longer. PROTOCRYSTAL = 7242, -- It is a giant crystal. diff --git a/scripts/zones/Cloister_of_Frost/IDs.lua b/scripts/zones/Cloister_of_Frost/IDs.lua index 9d1df899b63..337c771b1c4 100644 --- a/scripts/zones/Cloister_of_Frost/IDs.lua +++ b/scripts/zones/Cloister_of_Frost/IDs.lua @@ -17,6 +17,7 @@ zones[xi.zone.CLOISTER_OF_FROST] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... YOU_CANNOT_ENTER_THE_BATTLEFIELD = 7218, -- You cannot enter the battlefield at present. Please wait a little longer. PROTOCRYSTAL = 7242, -- It is a giant crystal. diff --git a/scripts/zones/Cloister_of_Gales/IDs.lua b/scripts/zones/Cloister_of_Gales/IDs.lua index 3638187b462..0b9e6238909 100644 --- a/scripts/zones/Cloister_of_Gales/IDs.lua +++ b/scripts/zones/Cloister_of_Gales/IDs.lua @@ -17,6 +17,7 @@ zones[xi.zone.CLOISTER_OF_GALES] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... YOU_CANNOT_ENTER_THE_BATTLEFIELD = 7218, -- You cannot enter the battlefield at present. Please wait a little longer. PROTOCRYSTAL = 7242, -- It is a giant crystal. diff --git a/scripts/zones/Cloister_of_Storms/IDs.lua b/scripts/zones/Cloister_of_Storms/IDs.lua index 0ae227b8b68..953c09f0f05 100644 --- a/scripts/zones/Cloister_of_Storms/IDs.lua +++ b/scripts/zones/Cloister_of_Storms/IDs.lua @@ -17,6 +17,7 @@ zones[xi.zone.CLOISTER_OF_STORMS] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... YOU_CANNOT_ENTER_THE_BATTLEFIELD = 7218, -- You cannot enter the battlefield at present. Please wait a little longer. PROTOCRYSTAL = 7242, -- It is a giant crystal. diff --git a/scripts/zones/Cloister_of_Tides/IDs.lua b/scripts/zones/Cloister_of_Tides/IDs.lua index 9b4b8180f9d..7c3b5fbf26c 100644 --- a/scripts/zones/Cloister_of_Tides/IDs.lua +++ b/scripts/zones/Cloister_of_Tides/IDs.lua @@ -17,6 +17,7 @@ zones[xi.zone.CLOISTER_OF_TIDES] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... YOU_CANNOT_ENTER_THE_BATTLEFIELD = 7218, -- You cannot enter the battlefield at present. Please wait a little longer. PROTOCRYSTAL = 7242, -- It is a giant crystal. diff --git a/scripts/zones/Cloister_of_Tremors/IDs.lua b/scripts/zones/Cloister_of_Tremors/IDs.lua index df26545d552..613d068d408 100644 --- a/scripts/zones/Cloister_of_Tremors/IDs.lua +++ b/scripts/zones/Cloister_of_Tremors/IDs.lua @@ -18,6 +18,7 @@ zones[xi.zone.CLOISTER_OF_TREMORS] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... YOU_CANNOT_ENTER_THE_BATTLEFIELD = 7218, -- You cannot enter the battlefield at present. Please wait a little longer. PROTOCRYSTAL = 7242, -- It is a giant crystal. diff --git a/scripts/zones/Crawlers_Nest/IDs.lua b/scripts/zones/Crawlers_Nest/IDs.lua index 59449da620d..793e7556b88 100644 --- a/scripts/zones/Crawlers_Nest/IDs.lua +++ b/scripts/zones/Crawlers_Nest/IDs.lua @@ -24,6 +24,7 @@ zones[xi.zone.CRAWLERS_NEST] = LOGIN_CAMPAIGN_UNDERWAY = 7192, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7193, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. GEOMAGNETRON_ATTUNED = 7202, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7213, -- Your party is unable to participate because certain members' levels are restricted. CHEST_UNLOCKED = 7260, -- You unlock the chest! SOMEONE_HAS_BEEN_DIGGING_HERE = 7268, -- Someone has been digging here. EQUIPMENT_NOT_PURIFIED = 7269, -- Your equipment has not been completely purified. diff --git a/scripts/zones/Crawlers_Nest_[S]/IDs.lua b/scripts/zones/Crawlers_Nest_[S]/IDs.lua index 6594477bee1..edaef4945a7 100644 --- a/scripts/zones/Crawlers_Nest_[S]/IDs.lua +++ b/scripts/zones/Crawlers_Nest_[S]/IDs.lua @@ -10,15 +10,16 @@ zones[xi.zone.CRAWLERS_NEST_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6906, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6912, -- Obtained: . - GIL_OBTAINED = 6913, -- Obtained gil. - KEYITEM_OBTAINED = 6915, -- Obtained key item: . - CARRIED_OVER_POINTS = 7523, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7524, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7525, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - ITEM_DELIVERY_DIALOG = 7685, -- Hello! Any packages to sendy-wend? - COMMON_SENSE_SURVIVAL = 8650, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6906, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6912, -- Obtained: . + GIL_OBTAINED = 6913, -- Obtained gil. + KEYITEM_OBTAINED = 6915, -- Obtained key item: . + CARRIED_OVER_POINTS = 7523, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7524, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7525, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7545, -- Your party is unable to participate because certain members' levels are restricted. + ITEM_DELIVERY_DIALOG = 7685, -- Hello! Any packages to sendy-wend? + COMMON_SENSE_SURVIVAL = 8650, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Dangruf_Wadi/IDs.lua b/scripts/zones/Dangruf_Wadi/IDs.lua index 9046f7f48c8..c429b5c8b94 100644 --- a/scripts/zones/Dangruf_Wadi/IDs.lua +++ b/scripts/zones/Dangruf_Wadi/IDs.lua @@ -10,41 +10,42 @@ zones[xi.zone.DANGRUF_WADI] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - DEVICE_NOT_WORKING = 7330, -- The device is not working. - SYS_OVERLOAD = 7339, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. - YOU_LOST_THE = 7344, -- You lost the . - CRYSTALLINE_DUST = 7348, -- The area is littered with a white crystalline dust. - PLANT_EXTRACT = 7349, -- A plant extract is smeared around the area. - BROKEN_EGGS = 7350, -- A number of broken eggs lie scattered about. - YOU_PLACE_ITEM = 7351, -- You place down. - YOU_BEAT_GOBLIN = 7353, -- You beat the Goblin! - GOBLIN_BEAT_YOU = 7354, -- The Goblin beat you... - YOU_GAVE_UP = 7355, -- You gave up... - BEAT_SALTVIX = 7360, -- You hear a voice... (...Hmph! All happy 'cause [he/she] beat Saltvix...Won't stand chance 'gainst Grasswix of North...) - DONT_WASTE_TIME = 7370, -- You hear a voice... (Grasswix don't waste time with losers...) - BEAT_GRASSWIX = 7371, -- You hear a voice... (...can't believe it! How could Grasswix lose! Eggblix of Cavern...he no lose!) - JUST_WONT_DO = 7381, -- You hear a voice... (...just won't do...nope...nope...) - BEAT_EGGBLIX = 7382, -- (...Lucky, ya are! Don't forget to say hi to our sister at Drachenfall!) - CHEST_UNLOCKED = 7442, -- You unlock the chest! - SMALL_HOLE = 7496, -- There is a small hole here. - PLAYER_OBTAINS_ITEM = 8373, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8374, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8375, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8376, -- You already possess that temporary item. - NO_COMBINATION = 8381, -- You were unable to enter a combination. - REGIME_REGISTERED = 10459, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 11530, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + DEVICE_NOT_WORKING = 7330, -- The device is not working. + SYS_OVERLOAD = 7339, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. + YOU_LOST_THE = 7344, -- You lost the . + CRYSTALLINE_DUST = 7348, -- The area is littered with a white crystalline dust. + PLANT_EXTRACT = 7349, -- A plant extract is smeared around the area. + BROKEN_EGGS = 7350, -- A number of broken eggs lie scattered about. + YOU_PLACE_ITEM = 7351, -- You place down. + YOU_BEAT_GOBLIN = 7353, -- You beat the Goblin! + GOBLIN_BEAT_YOU = 7354, -- The Goblin beat you... + YOU_GAVE_UP = 7355, -- You gave up... + BEAT_SALTVIX = 7360, -- You hear a voice... (...Hmph! All happy 'cause [he/she] beat Saltvix...Won't stand chance 'gainst Grasswix of North...) + DONT_WASTE_TIME = 7370, -- You hear a voice... (Grasswix don't waste time with losers...) + BEAT_GRASSWIX = 7371, -- You hear a voice... (...can't believe it! How could Grasswix lose! Eggblix of Cavern...he no lose!) + JUST_WONT_DO = 7381, -- You hear a voice... (...just won't do...nope...nope...) + BEAT_EGGBLIX = 7382, -- (...Lucky, ya are! Don't forget to say hi to our sister at Drachenfall!) + CHEST_UNLOCKED = 7442, -- You unlock the chest! + SMALL_HOLE = 7496, -- There is a small hole here. + PLAYER_OBTAINS_ITEM = 8373, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8374, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8375, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8376, -- You already possess that temporary item. + NO_COMBINATION = 8381, -- You were unable to enter a combination. + REGIME_REGISTERED = 10459, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 11530, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Davoi/IDs.lua b/scripts/zones/Davoi/IDs.lua index 971ded2b5b6..01afc72a605 100644 --- a/scripts/zones/Davoi/IDs.lua +++ b/scripts/zones/Davoi/IDs.lua @@ -10,35 +10,36 @@ zones[xi.zone.DAVOI] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOT_ENOUGH_GIL = 6395, -- You do not have enough gil. - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - CAVE_HAS_BEEN_SEALED_OFF = 7360, -- The cave has been sealed off by some sort of barrier. - MAY_BE_SOME_WAY_TO_BREAK = 7361, -- There may be some way to break through. - POWER_OF_THE_ORB_ALLOW_PASS = 7363, -- The disruptive power of the orb allows passage through the barrier. - COLOR_OF_BLOOD = 7364, -- This pool is the color of blood. - ORB_QUEST_OFFSET = 7366, -- You carefully dip the orb into the pool. - QUEMARICOND_DIALOG = 7382, -- I can't believe I've lost my way! They must have used an Orcish spell to change the terrain! Yes, that must be it! - YOU_SEE_NOTHING = 7416, -- There is nothing here. - AN_ORCISH_STORAGE_HOLE = 7458, -- An Orcish storage hole. There is something inside, but you cannot open it without a key. - A_WELL = 7460, -- A well, presumably dug by Orcs. - CHEST_UNLOCKED = 7479, -- You unlock the chest! - WHERE_THE_TONBERRY_TOLD_YOU = 7928, -- This is where the Tonberry from Carpenters' Landing told you to bring the ... - NOTHING_TO_DO = 7929, -- You have nothing left to do here. - UNDER_ATTACK = 7931, -- You are under attack! - LEARNS_SPELL = 7971, -- learns ! - UNCANNY_SENSATION = 7973, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 7980, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOT_ENOUGH_GIL = 6395, -- You do not have enough gil. + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + CAVE_HAS_BEEN_SEALED_OFF = 7360, -- The cave has been sealed off by some sort of barrier. + MAY_BE_SOME_WAY_TO_BREAK = 7361, -- There may be some way to break through. + POWER_OF_THE_ORB_ALLOW_PASS = 7363, -- The disruptive power of the orb allows passage through the barrier. + COLOR_OF_BLOOD = 7364, -- This pool is the color of blood. + ORB_QUEST_OFFSET = 7366, -- You carefully dip the orb into the pool. + QUEMARICOND_DIALOG = 7382, -- I can't believe I've lost my way! They must have used an Orcish spell to change the terrain! Yes, that must be it! + YOU_SEE_NOTHING = 7416, -- There is nothing here. + AN_ORCISH_STORAGE_HOLE = 7458, -- An Orcish storage hole. There is something inside, but you cannot open it without a key. + A_WELL = 7460, -- A well, presumably dug by Orcs. + CHEST_UNLOCKED = 7479, -- You unlock the chest! + WHERE_THE_TONBERRY_TOLD_YOU = 7928, -- This is where the Tonberry from Carpenters' Landing told you to bring the ... + NOTHING_TO_DO = 7929, -- You have nothing left to do here. + UNDER_ATTACK = 7931, -- You are under attack! + LEARNS_SPELL = 7971, -- learns ! + UNCANNY_SENSATION = 7973, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 7980, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Den_of_Rancor/IDs.lua b/scripts/zones/Den_of_Rancor/IDs.lua index 9d8ba2600c2..8f5760a9d6b 100644 --- a/scripts/zones/Den_of_Rancor/IDs.lua +++ b/scripts/zones/Den_of_Rancor/IDs.lua @@ -10,27 +10,28 @@ zones[xi.zone.DEN_OF_RANCOR] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - LANTERN_OFFSET = 7216, -- The grating will not budge. - FISHING_MESSAGE_OFFSET = 7244, -- You can't fish here. - CHEST_UNLOCKED = 7352, -- You unlock the chest! - SENSE_OMINOUS_PRESENCE = 7362, -- You sense an ominous presence... - PLAYER_OBTAINS_ITEM = 7409, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7410, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7411, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7412, -- You already possess that temporary item. - NO_COMBINATION = 7417, -- You were unable to enter a combination. - REGIME_REGISTERED = 9495, -- New training regime registered! - HOMEPOINT_SET = 10545, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + LANTERN_OFFSET = 7216, -- The grating will not budge. + FISHING_MESSAGE_OFFSET = 7244, -- You can't fish here. + CHEST_UNLOCKED = 7352, -- You unlock the chest! + SENSE_OMINOUS_PRESENCE = 7362, -- You sense an ominous presence... + PLAYER_OBTAINS_ITEM = 7409, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7410, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7411, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7412, -- You already possess that temporary item. + NO_COMBINATION = 7417, -- You were unable to enter a combination. + REGIME_REGISTERED = 9495, -- New training regime registered! + HOMEPOINT_SET = 10545, -- Home point set! }, mob = { diff --git a/scripts/zones/Desuetia_Empyreal_Paradox/IDs.lua b/scripts/zones/Desuetia_Empyreal_Paradox/IDs.lua index 6a00dff14f6..603cb9a7c93 100644 --- a/scripts/zones/Desuetia_Empyreal_Paradox/IDs.lua +++ b/scripts/zones/Desuetia_Empyreal_Paradox/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.DESUETIA_EMPYREAL_PARADOX] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7666, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7673, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7666, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7673, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Dho_Gates/IDs.lua b/scripts/zones/Dho_Gates/IDs.lua index c1b6ab4324f..ae4a5143b03 100644 --- a/scripts/zones/Dho_Gates/IDs.lua +++ b/scripts/zones/Dho_Gates/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.DHO_GATES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Diorama_Abdhaljs-Ghelsba/IDs.lua b/scripts/zones/Diorama_Abdhaljs-Ghelsba/IDs.lua index 537d6474ed7..689183c4ca2 100644 --- a/scripts/zones/Diorama_Abdhaljs-Ghelsba/IDs.lua +++ b/scripts/zones/Diorama_Abdhaljs-Ghelsba/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.DIORAMA_ABDHALJS_GHELSBA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Dragons_Aery/IDs.lua b/scripts/zones/Dragons_Aery/IDs.lua index 520d21c35b7..cea5f942377 100644 --- a/scripts/zones/Dragons_Aery/IDs.lua +++ b/scripts/zones/Dragons_Aery/IDs.lua @@ -10,19 +10,20 @@ zones[xi.zone.DRAGONS_AERY] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - CONQUEST_BASE = 7159, -- Tallying conquest results... - COMMON_SENSE_SURVIVAL = 7503, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + CONQUEST_BASE = 7159, -- Tallying conquest results... + COMMON_SENSE_SURVIVAL = 7503, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Dynamis-Bastok/IDs.lua b/scripts/zones/Dynamis-Bastok/IDs.lua index ff95eb48c46..6e8e9d44ccc 100644 --- a/scripts/zones/Dynamis-Bastok/IDs.lua +++ b/scripts/zones/Dynamis-Bastok/IDs.lua @@ -12,21 +12,22 @@ zones[xi.zone.DYNAMIS_BASTOK] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7163, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... - OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7163, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... + OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . }, mob = { diff --git a/scripts/zones/Dynamis-Bastok_[D]/IDs.lua b/scripts/zones/Dynamis-Bastok_[D]/IDs.lua index b3a4be7c156..96e053f966e 100644 --- a/scripts/zones/Dynamis-Bastok_[D]/IDs.lua +++ b/scripts/zones/Dynamis-Bastok_[D]/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.DYNAMIS_BASTOK_D] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7054, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7054, -- Tallying conquest results... }, mob = { diff --git a/scripts/zones/Dynamis-Beaucedine/IDs.lua b/scripts/zones/Dynamis-Beaucedine/IDs.lua index 68618fe1461..d374270bae3 100644 --- a/scripts/zones/Dynamis-Beaucedine/IDs.lua +++ b/scripts/zones/Dynamis-Beaucedine/IDs.lua @@ -12,20 +12,21 @@ zones[xi.zone.DYNAMIS_BEAUCEDINE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7163, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... - OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7163, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... + OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . }, mob = { diff --git a/scripts/zones/Dynamis-Buburimu/IDs.lua b/scripts/zones/Dynamis-Buburimu/IDs.lua index 6bb3e1dc733..8e579c63fe8 100644 --- a/scripts/zones/Dynamis-Buburimu/IDs.lua +++ b/scripts/zones/Dynamis-Buburimu/IDs.lua @@ -12,21 +12,22 @@ zones[xi.zone.DYNAMIS_BUBURIMU] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7157, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... - DYNAMIS_SUB_UNLOCKED = 7332, -- Memories of skills long forgotten come flooding back to you... - OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7157, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... + DYNAMIS_SUB_UNLOCKED = 7332, -- Memories of skills long forgotten come flooding back to you... + OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . }, mob = { diff --git a/scripts/zones/Dynamis-Jeuno/IDs.lua b/scripts/zones/Dynamis-Jeuno/IDs.lua index 8fc3749f523..08935fd8ff4 100644 --- a/scripts/zones/Dynamis-Jeuno/IDs.lua +++ b/scripts/zones/Dynamis-Jeuno/IDs.lua @@ -12,20 +12,21 @@ zones[xi.zone.DYNAMIS_JEUNO] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7063, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7222, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7223, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7224, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7225, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7227, -- The sands of the hourglass have emptied... - OMINOUS_PRESENCE = 7239, -- You feel an ominous presence, as if something might happen if you possessed . + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7063, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7222, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7223, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7224, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7225, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7227, -- The sands of the hourglass have emptied... + OMINOUS_PRESENCE = 7239, -- You feel an ominous presence, as if something might happen if you possessed . }, mob = { diff --git a/scripts/zones/Dynamis-Jeuno_[D]/IDs.lua b/scripts/zones/Dynamis-Jeuno_[D]/IDs.lua index 141f37768e5..efc3e9e950a 100644 --- a/scripts/zones/Dynamis-Jeuno_[D]/IDs.lua +++ b/scripts/zones/Dynamis-Jeuno_[D]/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.DYNAMIS_JEUNO_D] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7054, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7054, -- Tallying conquest results... }, mob = { diff --git a/scripts/zones/Dynamis-Qufim/IDs.lua b/scripts/zones/Dynamis-Qufim/IDs.lua index 8cc62fe3cb9..61d96215302 100644 --- a/scripts/zones/Dynamis-Qufim/IDs.lua +++ b/scripts/zones/Dynamis-Qufim/IDs.lua @@ -12,21 +12,22 @@ zones[xi.zone.DYNAMIS_QUFIM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7157, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... - DYNAMIS_SUB_UNLOCKED = 7332, -- Memories of skills long forgotten come flooding back to you... - OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7157, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... + DYNAMIS_SUB_UNLOCKED = 7332, -- Memories of skills long forgotten come flooding back to you... + OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . }, mob = { diff --git a/scripts/zones/Dynamis-San_dOria/IDs.lua b/scripts/zones/Dynamis-San_dOria/IDs.lua index af605c013fd..776acac97b7 100644 --- a/scripts/zones/Dynamis-San_dOria/IDs.lua +++ b/scripts/zones/Dynamis-San_dOria/IDs.lua @@ -12,21 +12,22 @@ zones[xi.zone.DYNAMIS_SAN_DORIA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7063, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7222, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7223, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7224, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7225, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7227, -- The sands of the hourglass have emptied... - OMINOUS_PRESENCE = 7239, -- You feel an ominous presence, as if something might happen if you possessed . + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7063, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7222, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7223, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7224, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7225, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7227, -- The sands of the hourglass have emptied... + OMINOUS_PRESENCE = 7239, -- You feel an ominous presence, as if something might happen if you possessed . }, mob = { diff --git a/scripts/zones/Dynamis-San_dOria_[D]/IDs.lua b/scripts/zones/Dynamis-San_dOria_[D]/IDs.lua index 6dc8f064bbc..f00c116936b 100644 --- a/scripts/zones/Dynamis-San_dOria_[D]/IDs.lua +++ b/scripts/zones/Dynamis-San_dOria_[D]/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.DYNAMIS_SAN_DORIA_D] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7054, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7054, -- Tallying conquest results... }, mob = { diff --git a/scripts/zones/Dynamis-Tavnazia/IDs.lua b/scripts/zones/Dynamis-Tavnazia/IDs.lua index 5d57bd8f486..67296ff4cc6 100644 --- a/scripts/zones/Dynamis-Tavnazia/IDs.lua +++ b/scripts/zones/Dynamis-Tavnazia/IDs.lua @@ -12,22 +12,23 @@ zones[xi.zone.DYNAMIS_TAVNAZIA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7157, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... - DYNAMIS_SUB_UNLOCKED = 7332, -- Memories of skills long forgotten come flooding back to you... - DIABOLOS = 7336, -- You sense that something might happen if you possessed one of these... - OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7157, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... + DYNAMIS_SUB_UNLOCKED = 7332, -- Memories of skills long forgotten come flooding back to you... + DIABOLOS = 7336, -- You sense that something might happen if you possessed one of these... + OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . }, mob = { diff --git a/scripts/zones/Dynamis-Valkurm/IDs.lua b/scripts/zones/Dynamis-Valkurm/IDs.lua index a4a0ba26a3b..c3f59701921 100644 --- a/scripts/zones/Dynamis-Valkurm/IDs.lua +++ b/scripts/zones/Dynamis-Valkurm/IDs.lua @@ -12,21 +12,22 @@ zones[xi.zone.DYNAMIS_VALKURM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7157, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... - DYNAMIS_SUB_UNLOCKED = 7332, -- Memories of skills long forgotten come flooding back to you... - OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7157, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... + DYNAMIS_SUB_UNLOCKED = 7332, -- Memories of skills long forgotten come flooding back to you... + OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . }, mob = { diff --git a/scripts/zones/Dynamis-Windurst/IDs.lua b/scripts/zones/Dynamis-Windurst/IDs.lua index 3e547bf6f5a..e45350cef96 100644 --- a/scripts/zones/Dynamis-Windurst/IDs.lua +++ b/scripts/zones/Dynamis-Windurst/IDs.lua @@ -12,21 +12,22 @@ zones[xi.zone.DYNAMIS_WINDURST] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7163, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... - OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7163, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7322, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7323, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7324, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7325, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7327, -- The sands of the hourglass have emptied... + OMINOUS_PRESENCE = 7339, -- You feel an ominous presence, as if something might happen if you possessed . }, mob = { diff --git a/scripts/zones/Dynamis-Windurst_[D]/IDs.lua b/scripts/zones/Dynamis-Windurst_[D]/IDs.lua index 6fa2af20a22..e0e7123ab82 100644 --- a/scripts/zones/Dynamis-Windurst_[D]/IDs.lua +++ b/scripts/zones/Dynamis-Windurst_[D]/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.DYNAMIS_WINDURST_D] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7054, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7054, -- Tallying conquest results... }, mob = { diff --git a/scripts/zones/Dynamis-Xarcabard/IDs.lua b/scripts/zones/Dynamis-Xarcabard/IDs.lua index d77ac753f85..c885b3700b6 100644 --- a/scripts/zones/Dynamis-Xarcabard/IDs.lua +++ b/scripts/zones/Dynamis-Xarcabard/IDs.lua @@ -12,37 +12,38 @@ zones[xi.zone.DYNAMIS_XARCABARD] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7063, -- Tallying conquest results... - DYNAMIS_TIME_BEGIN = 7222, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. - DYNAMIS_TIME_EXTEND = 7223, -- our stay in Dynamis has been extended by minute[/s]. - DYNAMIS_TIME_UPDATE_1 = 7224, -- ou will be expelled from Dynamis in [second/minute] (Earth time). - DYNAMIS_TIME_UPDATE_2 = 7225, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). - DYNAMIS_TIME_EXPIRED = 7227, -- The sands of the hourglass have emptied... - OMINOUS_PRESENCE = 7239, -- You feel an ominous presence, as if something might happen if you possessed . - ANIMATED_KNUCKLES_DIALOG = 7306, -- I am known as the Fists of Mystics. Come, show me your fighting spirit. - ANIMATED_DAGGER_DIALOG = 7338, -- I am called the Ornate Blade. Now, show me your strength. - ANIMATED_LONGSWORD_DIALOG = 7370, -- People have named me the Holy Blade. I will try thy resolution. - ANIMATED_CLAYMORE_DIALOG = 7402, -- I am the Intricate Blade. Show me the depths of your fury! - ANIMATED_TABAR_DIALOG = 7434, -- Me, axe. Runaeic, Axe. You, die? - ANIMATED_GREATAXE_DIALOG = 7466, -- I have been given the title of Seraphic Axe. Will you attempt to survive my love? - ANIMATED_SPEAR_DIALOG = 7498, -- I am the Stellar Spear. It is time to test your courage. - ANIMATED_SCYTHE_DIALOG = 7530, -- I am known as the Tenebrous Scythe. Overwhelm me with your greed for power. - ANIMATED_KUNAI_DIALOG = 7562, -- I am called the Demoniac Blade. Allow me to witness your technique. - ANIMATED_TACHI_DIALOG = 7594, -- I am the Divine Blade. I demand a test of your will. - ANIMATED_HAMMER_DIALOG = 7626, -- People have named me the Heavenly Hammer. I will test your might to its very limits. - ANIMATED_STAFF_DIALOG = 7658, -- I am called the Celestial Staff. I will glimpse into your mind's eye... - ANIMATED_LONGBOW_DIALOG = 7690, -- I am known as the Snarled Bow. I will measure the limits of your determination. - ANIMATED_GUN_DIALOG = 7722, -- I am known as the Ethereal Rifle. Do you realize my incredible value? - ANIMATED_HORN_DIALOG = 7754, -- I am called the Mysterial Horn. Show me your true intentions. - ANIMATED_SHIELD_DIALOG = 7786, -- I am Aegis, the impervious shield of everlasting. - PRISON_OF_SOULS_HAS_SET_FREE = 7818, -- e prison of souls has set free its captive spirits! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7063, -- Tallying conquest results... + DYNAMIS_TIME_BEGIN = 7222, -- The sands of the have begun to fall. You have minutes (Earth time) remaining in Dynamis. + DYNAMIS_TIME_EXTEND = 7223, -- our stay in Dynamis has been extended by minute[/s]. + DYNAMIS_TIME_UPDATE_1 = 7224, -- ou will be expelled from Dynamis in [second/minute] (Earth time). + DYNAMIS_TIME_UPDATE_2 = 7225, -- ou will be expelled from Dynamis in [seconds/minutes] (Earth time). + DYNAMIS_TIME_EXPIRED = 7227, -- The sands of the hourglass have emptied... + OMINOUS_PRESENCE = 7239, -- You feel an ominous presence, as if something might happen if you possessed . + ANIMATED_KNUCKLES_DIALOG = 7306, -- I am known as the Fists of Mystics. Come, show me your fighting spirit. + ANIMATED_DAGGER_DIALOG = 7338, -- I am called the Ornate Blade. Now, show me your strength. + ANIMATED_LONGSWORD_DIALOG = 7370, -- People have named me the Holy Blade. I will try thy resolution. + ANIMATED_CLAYMORE_DIALOG = 7402, -- I am the Intricate Blade. Show me the depths of your fury! + ANIMATED_TABAR_DIALOG = 7434, -- Me, axe. Runaeic, Axe. You, die? + ANIMATED_GREATAXE_DIALOG = 7466, -- I have been given the title of Seraphic Axe. Will you attempt to survive my love? + ANIMATED_SPEAR_DIALOG = 7498, -- I am the Stellar Spear. It is time to test your courage. + ANIMATED_SCYTHE_DIALOG = 7530, -- I am known as the Tenebrous Scythe. Overwhelm me with your greed for power. + ANIMATED_KUNAI_DIALOG = 7562, -- I am called the Demoniac Blade. Allow me to witness your technique. + ANIMATED_TACHI_DIALOG = 7594, -- I am the Divine Blade. I demand a test of your will. + ANIMATED_HAMMER_DIALOG = 7626, -- People have named me the Heavenly Hammer. I will test your might to its very limits. + ANIMATED_STAFF_DIALOG = 7658, -- I am called the Celestial Staff. I will glimpse into your mind's eye... + ANIMATED_LONGBOW_DIALOG = 7690, -- I am known as the Snarled Bow. I will measure the limits of your determination. + ANIMATED_GUN_DIALOG = 7722, -- I am known as the Ethereal Rifle. Do you realize my incredible value? + ANIMATED_HORN_DIALOG = 7754, -- I am called the Mysterial Horn. Show me your true intentions. + ANIMATED_SHIELD_DIALOG = 7786, -- I am Aegis, the impervious shield of everlasting. + PRISON_OF_SOULS_HAS_SET_FREE = 7818, -- e prison of souls has set free its captive spirits! }, mob = { diff --git a/scripts/zones/East_Ronfaure/IDs.lua b/scripts/zones/East_Ronfaure/IDs.lua index 11ae54ea195..b3b9cb196f6 100644 --- a/scripts/zones/East_Ronfaure/IDs.lua +++ b/scripts/zones/East_Ronfaure/IDs.lua @@ -11,42 +11,43 @@ zones[xi.zone.EAST_RONFAURE] = { text = { - NOTHING_HAPPENS = 141, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7079, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. - RAYOCHINDOT_DIALOG = 7418, -- If you are outmatched, run to the city as quickly as you can. - CROTEILLARD_DIALOG = 7419, -- Sorry, no chatting while I'm on duty. - CHEVAL_RIVER_WATER = 7444, -- You fill your waterskin with water from the river. You now have . - BLESSED_WATERSKIN = 7463, -- To get water, trade the waterskin you hold with the river. - LOGGING_IS_POSSIBLE_HERE = 7494, -- Logging is possible here if you have . - PLAYER_OBTAINS_ITEM = 7505, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7506, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7507, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7508, -- You already possess that temporary item. - NO_COMBINATION = 7513, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 7544, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 9884, -- New training regime registered! - VOIDWALKER_NO_MOB = 11057, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 11058, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 11059, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 11060, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 11062, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 11063, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 11064, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 11065, -- Obtained key item: ! - LEARNS_SPELL = 11955, -- learns ! - UNCANNY_SENSATION = 11957, -- You are assaulted by an uncanny sensation. + NOTHING_HAPPENS = 141, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7079, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. + RAYOCHINDOT_DIALOG = 7418, -- If you are outmatched, run to the city as quickly as you can. + CROTEILLARD_DIALOG = 7419, -- Sorry, no chatting while I'm on duty. + CHEVAL_RIVER_WATER = 7444, -- You fill your waterskin with water from the river. You now have . + BLESSED_WATERSKIN = 7463, -- To get water, trade the waterskin you hold with the river. + LOGGING_IS_POSSIBLE_HERE = 7494, -- Logging is possible here if you have . + PLAYER_OBTAINS_ITEM = 7505, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7506, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7507, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7508, -- You already possess that temporary item. + NO_COMBINATION = 7513, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 7544, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 9884, -- New training regime registered! + VOIDWALKER_NO_MOB = 11057, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 11058, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 11059, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 11060, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 11062, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 11063, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 11064, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 11065, -- Obtained key item: ! + LEARNS_SPELL = 11955, -- learns ! + UNCANNY_SENSATION = 11957, -- You are assaulted by an uncanny sensation. }, mob = diff --git a/scripts/zones/East_Ronfaure_[S]/IDs.lua b/scripts/zones/East_Ronfaure_[S]/IDs.lua index 923ac8a541e..927bca5ca43 100644 --- a/scripts/zones/East_Ronfaure_[S]/IDs.lua +++ b/scripts/zones/East_Ronfaure_[S]/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.EAST_RONFAURE_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LOGGING_IS_POSSIBLE_HERE = 7154, -- Logging is possible here if you have . - FISHING_MESSAGE_OFFSET = 7738, -- You can't fish here. - VOIDWALKER_DESPAWN = 8000, -- The monster fades before your eyes, a look of disappointment on its face. - VOIDWALKER_NO_MOB = 8047, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8048, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8049, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8050, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8052, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8053, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8054, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8055, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 8965, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LOGGING_IS_POSSIBLE_HERE = 7154, -- Logging is possible here if you have . + FISHING_MESSAGE_OFFSET = 7738, -- You can't fish here. + VOIDWALKER_DESPAWN = 8000, -- The monster fades before your eyes, a look of disappointment on its face. + VOIDWALKER_NO_MOB = 8047, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8048, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8049, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8050, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8052, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8053, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8054, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8055, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 8965, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/East_Sarutabaruta/IDs.lua b/scripts/zones/East_Sarutabaruta/IDs.lua index dc438aaaa27..aa4222510a9 100644 --- a/scripts/zones/East_Sarutabaruta/IDs.lua +++ b/scripts/zones/East_Sarutabaruta/IDs.lua @@ -10,32 +10,33 @@ zones[xi.zone.EAST_SARUTABARUTA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - DIG_THROW_AWAY = 7229, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7231, -- You dig and you dig, but find nothing. - SIGNPOST_OFFSET = 7386, -- Southeast: South Tower, Horutoto Ruins Southwest: Windurst Woods - TABY_CANATAHEY_DIALOG = 7396, -- This is the entrrrance to Windurst. Please maintain orderrrly conduct while you'rrre in town. - HEIH_PORHIAAP_DIALOG = 7397, -- These grrrasslands make up East Sarutabaruta. Lately the number of monsters has drrramatically increased, causing us all sorts of trrrouble. - SAMA_GOHJIMA_POSTDIALOG = 7400, -- Were you able to find the laborrratory? There are many such hidden passages in the Horutoto Ruins. - QUH_BERHUJA_DIALOG = 7401, -- Hold on therrre! This ain't no place forrr adventurrrers to just wanderrr in and out of! Withdrrraw immediately! - QUH_BERHUJA_STOLEN_ORBS = 7403, -- Yowl! That was a close call, with those ferrral Carrrdians barrrging in therrre! Of courrrse, I rrran away...for help, I mean... - PORE_OHRE_DIALOG = 7405, -- There are reports of evil Cardians attacking people to steal the Mana Orbs created at this tower. Yikey-wikey, is this job scary!? - PORE_OHRE_STOLEN_ORBS = 7447, -- If you're heading back to town, then please go tell Minister Apururu at the Manustery about those feral Cardians stealing our Mana Orbs! Thanks, and be careful on your way homey-womey! - PLAYER_OBTAINS_ITEM = 7570, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7571, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7572, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7573, -- You already possess that temporary item. - NO_COMBINATION = 7578, -- You were unable to enter a combination. - REGIME_REGISTERED = 9938, -- New training regime registered! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + DIG_THROW_AWAY = 7229, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7231, -- You dig and you dig, but find nothing. + SIGNPOST_OFFSET = 7386, -- Southeast: South Tower, Horutoto Ruins Southwest: Windurst Woods + TABY_CANATAHEY_DIALOG = 7396, -- This is the entrrrance to Windurst. Please maintain orderrrly conduct while you'rrre in town. + HEIH_PORHIAAP_DIALOG = 7397, -- These grrrasslands make up East Sarutabaruta. Lately the number of monsters has drrramatically increased, causing us all sorts of trrrouble. + SAMA_GOHJIMA_POSTDIALOG = 7400, -- Were you able to find the laborrratory? There are many such hidden passages in the Horutoto Ruins. + QUH_BERHUJA_DIALOG = 7401, -- Hold on therrre! This ain't no place forrr adventurrrers to just wanderrr in and out of! Withdrrraw immediately! + QUH_BERHUJA_STOLEN_ORBS = 7403, -- Yowl! That was a close call, with those ferrral Carrrdians barrrging in therrre! Of courrrse, I rrran away...for help, I mean... + PORE_OHRE_DIALOG = 7405, -- There are reports of evil Cardians attacking people to steal the Mana Orbs created at this tower. Yikey-wikey, is this job scary!? + PORE_OHRE_STOLEN_ORBS = 7447, -- If you're heading back to town, then please go tell Minister Apururu at the Manustery about those feral Cardians stealing our Mana Orbs! Thanks, and be careful on your way homey-womey! + PLAYER_OBTAINS_ITEM = 7570, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7571, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7572, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7573, -- You already possess that temporary item. + NO_COMBINATION = 7578, -- You were unable to enter a combination. + REGIME_REGISTERED = 9938, -- New training regime registered! }, mob = { diff --git a/scripts/zones/Eastern_Adoulin/IDs.lua b/scripts/zones/Eastern_Adoulin/IDs.lua index e25d8b5572c..a7c6fdad473 100644 --- a/scripts/zones/Eastern_Adoulin/IDs.lua +++ b/scripts/zones/Eastern_Adoulin/IDs.lua @@ -10,30 +10,31 @@ zones[xi.zone.EASTERN_ADOULIN] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - LOST_KEYITEM = 6394, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BAYLD_OBTAINED = 7007, -- You have obtained bayld! - NOT_ENOUGH_BAYLD = 7009, -- You do not have enough bayld! - YOU_CAN_NOW_BECOME = 7011, -- You can now become a [geomancer/rune fencer]! - YOU_LEARNED_TRUST = 7025, -- You learned Trust: ! - MOG_LOCKER_OFFSET = 7582, -- Your Mog Locker lease is valid until , kupo. - WAYPOINT_ATTUNED = 7783, -- Your has been attuned to a geomagnetic fount[/ in front of the Peacekeepers' Coalition/ in front of the Scouts' Coalition/ at the Statue of the Goddess/ at the wharf to Yahse Hunting Grounds/ in front of your Rent-a-Room/ in front of the auction house/ on Sverdhried Hillock/ in the Coronal Esplanade/ at the gates of Castle Adoulin]! - EXPENDED_KINETIC_UNITS = 7802, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 7803, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 7804, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 7805, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 7806, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 7807, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 7808, -- A surplus of kinetic unit[/s] has been lost to the aether. - HOMEPOINT_SET = 8298, -- Home point set! - COMMON_SENSE_SURVIVAL = 13860, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + LOST_KEYITEM = 6394, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + BAYLD_OBTAINED = 7007, -- You have obtained bayld! + NOT_ENOUGH_BAYLD = 7009, -- You do not have enough bayld! + YOU_CAN_NOW_BECOME = 7011, -- You can now become a [geomancer/rune fencer]! + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + YOU_LEARNED_TRUST = 7025, -- You learned Trust: ! + MOG_LOCKER_OFFSET = 7582, -- Your Mog Locker lease is valid until , kupo. + WAYPOINT_ATTUNED = 7783, -- Your has been attuned to a geomagnetic fount[/ in front of the Peacekeepers' Coalition/ in front of the Scouts' Coalition/ at the Statue of the Goddess/ at the wharf to Yahse Hunting Grounds/ in front of your Rent-a-Room/ in front of the auction house/ on Sverdhried Hillock/ in the Coronal Esplanade/ at the gates of Castle Adoulin]! + EXPENDED_KINETIC_UNITS = 7802, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 7803, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 7804, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 7805, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 7806, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 7807, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 7808, -- A surplus of kinetic unit[/s] has been lost to the aether. + HOMEPOINT_SET = 8298, -- Home point set! + COMMON_SENSE_SURVIVAL = 13860, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Eastern_Altepa_Desert/IDs.lua b/scripts/zones/Eastern_Altepa_Desert/IDs.lua index 9514d3ac957..556870b6b00 100644 --- a/scripts/zones/Eastern_Altepa_Desert/IDs.lua +++ b/scripts/zones/Eastern_Altepa_Desert/IDs.lua @@ -10,32 +10,33 @@ zones[xi.zone.EASTERN_ALTEPA_DESERT] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. - CONQUEST = 7225, -- You've earned conquest points! - FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. - DIG_THROW_AWAY = 7571, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7573, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7639, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - ALREADY_OBTAINED_TELE = 7667, -- You already possess the gate crystal for this telepoint. - PLAYER_OBTAINS_ITEM = 7778, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7779, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7780, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7781, -- You already possess that temporary item. - NO_COMBINATION = 7786, -- You were unable to enter a combination. - REGIME_REGISTERED = 9964, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 11100, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. + CONQUEST = 7225, -- You've earned conquest points! + FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. + DIG_THROW_AWAY = 7571, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7573, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7639, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + ALREADY_OBTAINED_TELE = 7667, -- You already possess the gate crystal for this telepoint. + PLAYER_OBTAINS_ITEM = 7778, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7779, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7780, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7781, -- You already possess that temporary item. + NO_COMBINATION = 7786, -- You were unable to enter a combination. + REGIME_REGISTERED = 9964, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 11100, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Empyreal_Paradox/IDs.lua b/scripts/zones/Empyreal_Paradox/IDs.lua index 82460439b55..cb5f94cf947 100644 --- a/scripts/zones/Empyreal_Paradox/IDs.lua +++ b/scripts/zones/Empyreal_Paradox/IDs.lua @@ -10,20 +10,21 @@ zones[xi.zone.EMPYREAL_PARADOX] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CONQUEST_BASE = 7428, -- Tallying conquest results... - PRISHE_TEXT = 7693, -- You're about to learn how strong the will to live makes us! - SELHTEUS_TEXT = 7706, -- The...Emptiness... Is this...how it was meant...to be...? - PROMATHIA_TEXT = 7709, -- Give thyself to the apathy within... - QM_TEXT = 7807, -- The air before you appears warped and distorted... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CONQUEST_BASE = 7428, -- Tallying conquest results... + PRISHE_TEXT = 7693, -- You're about to learn how strong the will to live makes us! + SELHTEUS_TEXT = 7706, -- The...Emptiness... Is this...how it was meant...to be...? + PROMATHIA_TEXT = 7709, -- Give thyself to the apathy within... + QM_TEXT = 7807, -- The air before you appears warped and distorted... }, mob = { diff --git a/scripts/zones/Escha_RuAun/IDs.lua b/scripts/zones/Escha_RuAun/IDs.lua index 4622f89024e..a6c6e0ab7fa 100644 --- a/scripts/zones/Escha_RuAun/IDs.lua +++ b/scripts/zones/Escha_RuAun/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.ESCHA_RUAUN] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Escha_ZiTah/IDs.lua b/scripts/zones/Escha_ZiTah/IDs.lua index 001888248e3..8b59aabded6 100644 --- a/scripts/zones/Escha_ZiTah/IDs.lua +++ b/scripts/zones/Escha_ZiTah/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.ESCHA_ZITAH] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Everbloom_Hollow/IDs.lua b/scripts/zones/Everbloom_Hollow/IDs.lua index b07534332be..a6133346aca 100644 --- a/scripts/zones/Everbloom_Hollow/IDs.lua +++ b/scripts/zones/Everbloom_Hollow/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.EVERBLOOM_HOLLOW] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/FeiYin/IDs.lua b/scripts/zones/FeiYin/IDs.lua index 7418fd5e02c..03a2a58eac9 100644 --- a/scripts/zones/FeiYin/IDs.lua +++ b/scripts/zones/FeiYin/IDs.lua @@ -21,6 +21,7 @@ zones[xi.zone.FEIYIN] = CARRIED_OVER_POINTS = 7180, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7181, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7182, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7202, -- Your party is unable to participate because certain members' levels are restricted. FISHING_MESSAGE_OFFSET = 7236, -- You can't fish here. CHEST_UNLOCKED = 7367, -- You unlock the chest! SOFTLY_SHIMMERING_LIGHT = 7493, -- You see a softly shimmering light... diff --git a/scripts/zones/Feretory/IDs.lua b/scripts/zones/Feretory/IDs.lua index 68d98a4a458..9778b770f55 100644 --- a/scripts/zones/Feretory/IDs.lua +++ b/scripts/zones/Feretory/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.FERETORY] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Foret_de_Hennetiel/IDs.lua b/scripts/zones/Foret_de_Hennetiel/IDs.lua index f1c7c321f54..1d58c501dea 100644 --- a/scripts/zones/Foret_de_Hennetiel/IDs.lua +++ b/scripts/zones/Foret_de_Hennetiel/IDs.lua @@ -10,28 +10,29 @@ zones[xi.zone.FORET_DE_HENNETIEL] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BAYLD_OBTAINED = 7007, -- You have obtained bayld! - YOU_HAVE_LEARNED = 7015, -- You have learned ! - STARTED_TO_LEARN_BOAT = 7518, -- You have started to learn a bit about how to operate your boat. - FIGURED_OUT_BOAT = 7519, -- You have figured out how to properly use the boat! Report your progress to Choubollet. - WAYPOINT_ATTUNED = 7677, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3/ at Frontier Bivouac #4]! - EXPENDED_KINETIC_UNITS = 7688, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 7689, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 7690, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 7691, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 7692, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 7693, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 7694, -- A surplus of kinetic unit[/s] has been lost to the aether. - LEARNS_SPELL = 7931, -- learns ! - UNCANNY_SENSATION = 7933, -- You are assaulted by an uncanny sensation. - HOMEPOINT_SET = 8005, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + BAYLD_OBTAINED = 7007, -- You have obtained bayld! + YOU_HAVE_LEARNED = 7015, -- You have learned ! + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + STARTED_TO_LEARN_BOAT = 7518, -- You have started to learn a bit about how to operate your boat. + FIGURED_OUT_BOAT = 7519, -- You have figured out how to properly use the boat! Report your progress to Choubollet. + WAYPOINT_ATTUNED = 7677, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3/ at Frontier Bivouac #4]! + EXPENDED_KINETIC_UNITS = 7688, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 7689, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 7690, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 7691, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 7692, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 7693, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 7694, -- A surplus of kinetic unit[/s] has been lost to the aether. + LEARNS_SPELL = 7931, -- learns ! + UNCANNY_SENSATION = 7933, -- You are assaulted by an uncanny sensation. + HOMEPOINT_SET = 8005, -- Home point set! }, mob = { diff --git a/scripts/zones/Fort_Ghelsba/IDs.lua b/scripts/zones/Fort_Ghelsba/IDs.lua index f5b728e987b..1e8a023e68a 100644 --- a/scripts/zones/Fort_Ghelsba/IDs.lua +++ b/scripts/zones/Fort_Ghelsba/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.FORT_GHELSBA] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CHEST_UNLOCKED = 7363, -- You unlock the chest! - COMMON_SENSE_SURVIVAL = 7371, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + CHEST_UNLOCKED = 7363, -- You unlock the chest! + COMMON_SENSE_SURVIVAL = 7371, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Fort_Karugo-Narugo_[S]/IDs.lua b/scripts/zones/Fort_Karugo-Narugo_[S]/IDs.lua index e50b9fb2ebf..57b4ea36dfd 100644 --- a/scripts/zones/Fort_Karugo-Narugo_[S]/IDs.lua +++ b/scripts/zones/Fort_Karugo-Narugo_[S]/IDs.lua @@ -10,18 +10,19 @@ zones[xi.zone.FORT_KARUGO_NARUGO_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - SPONDULIX_SHOP_DIALOG = 7212, -- Spondulix comes all the way from Boodlix's Emporium to help Tarutaru and Mithra. I can help you, too! You have gil, no? - LOGGING_IS_POSSIBLE_HERE = 7679, -- Logging is possible here if you have . - ITEM_DELIVERY_DIALOG = 8118, -- Deliveries! We're open for business! - COMMON_SENSE_SURVIVAL = 9197, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + SPONDULIX_SHOP_DIALOG = 7212, -- Spondulix comes all the way from Boodlix's Emporium to help Tarutaru and Mithra. I can help you, too! You have gil, no? + LOGGING_IS_POSSIBLE_HERE = 7679, -- Logging is possible here if you have . + ITEM_DELIVERY_DIALOG = 8118, -- Deliveries! We're open for business! + COMMON_SENSE_SURVIVAL = 9197, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Full_Moon_Fountain/IDs.lua b/scripts/zones/Full_Moon_Fountain/IDs.lua index 42e45d498bd..ec3d2d46e0c 100644 --- a/scripts/zones/Full_Moon_Fountain/IDs.lua +++ b/scripts/zones/Full_Moon_Fountain/IDs.lua @@ -10,20 +10,21 @@ zones[xi.zone.FULL_MOON_FOUNTAIN] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - UNABLE_TO_PROTECT = 7374, -- You were unable to protect Ajido-Marujido. Now leaving the battlefield. - PARTY_MEMBERS_HAVE_FALLEN = 7662, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7669, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - PLAY_TIME_IS_OVER = 7760, -- Play time is over! Powers of dark mana, answer my call! - YOU_SHOULD_BE_THANKFUL = 7761, -- You should be thankful. I'll give you a shortaru trip back to the hell you came from! - DONT_GIVE_UP = 7762, -- Don't give up, adventurer! You are Windurst's guiding star, our beacon of hope! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + UNABLE_TO_PROTECT = 7374, -- You were unable to protect Ajido-Marujido. Now leaving the battlefield. + PARTY_MEMBERS_HAVE_FALLEN = 7662, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7669, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + PLAY_TIME_IS_OVER = 7760, -- Play time is over! Powers of dark mana, answer my call! + YOU_SHOULD_BE_THANKFUL = 7761, -- You should be thankful. I'll give you a shortaru trip back to the hell you came from! + DONT_GIVE_UP = 7762, -- Don't give up, adventurer! You are Windurst's guiding star, our beacon of hope! }, mob = { diff --git a/scripts/zones/GM_Home/IDs.lua b/scripts/zones/GM_Home/IDs.lua index 0a82b9f6c91..fa08578305a 100644 --- a/scripts/zones/GM_Home/IDs.lua +++ b/scripts/zones/GM_Home/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.GM_HOME] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Garlaige_Citadel/IDs.lua b/scripts/zones/Garlaige_Citadel/IDs.lua index 0866827a40b..274ffd796e5 100644 --- a/scripts/zones/Garlaige_Citadel/IDs.lua +++ b/scripts/zones/Garlaige_Citadel/IDs.lua @@ -10,46 +10,47 @@ zones[xi.zone.GARLAIGE_CITADEL] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6564, -- You are suddenly overcome with a sense of foreboding... - FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - DEVICE_NOT_WORKING = 7241, -- The device is not working. - SYS_OVERLOAD = 7250, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. - YOU_LOST_THE = 7255, -- You lost the . - SPARKLING_LIGHT = 7267, -- The ground is sparkling with a strange light. - A_GATE_OF_STURDY_STEEL = 7279, -- A gate of sturdy steel. - OPEN_WITH_THE_RIGHT_KEY = 7285, -- You might be able to open it with the right key. - BANISHING_GATES = 7294, -- The first banishing gate begins to open... - BANISHING_GATES_CLOSING = 7297, -- The first banishing gate starts to close. - YOU_FIND_NOTHING = 7301, -- You find nothing special. - HOLE_IN_THE_CEILING = 7302, -- There is a hole in the ceiling. - PRESENCE_FROM_CEILING = 7303, -- You sense a presence from in the ceiling. - HEAT_FROM_CEILING = 7304, -- You feel a terrible heat from the ceiling. - THE_PRESENCE_MOVES = 7308, -- The presence in the ceiling seems to have moved to the east. - CHEST_UNLOCKED = 7334, -- You unlock the chest! - ITEMS_ITEMS_LA_LA = 7461, -- You can hear a strange voice... Items, items, la la la la la - GOBLIN_SLIPPED_AWAY = 7467, -- The Goblin slipped away when you were not looking... - YOU_COULD_OPEN_THE_GATE = 7519, -- If only you had %, you could open the banishing gate... - THE_GATE_OPENS_FOR_YOU = 7520, -- By the power of your %, the gate opens for you. - COMBINE_INTO_A_CHUNK = 7522, -- You combine the % you have collected into a single chunk. - PLAYER_OBTAINS_ITEM = 7527, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7528, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7529, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7530, -- You already possess that temporary item. - NO_COMBINATION = 7535, -- You were unable to enter a combination. - REGIME_REGISTERED = 9613, -- New training regime registered! - LEARNS_SPELL = 11531, -- learns ! - UNCANNY_SENSATION = 11533, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 11564, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6564, -- You are suddenly overcome with a sense of foreboding... + FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + DEVICE_NOT_WORKING = 7241, -- The device is not working. + SYS_OVERLOAD = 7250, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. + YOU_LOST_THE = 7255, -- You lost the . + SPARKLING_LIGHT = 7267, -- The ground is sparkling with a strange light. + A_GATE_OF_STURDY_STEEL = 7279, -- A gate of sturdy steel. + OPEN_WITH_THE_RIGHT_KEY = 7285, -- You might be able to open it with the right key. + BANISHING_GATES = 7294, -- The first banishing gate begins to open... + BANISHING_GATES_CLOSING = 7297, -- The first banishing gate starts to close. + YOU_FIND_NOTHING = 7301, -- You find nothing special. + HOLE_IN_THE_CEILING = 7302, -- There is a hole in the ceiling. + PRESENCE_FROM_CEILING = 7303, -- You sense a presence from in the ceiling. + HEAT_FROM_CEILING = 7304, -- You feel a terrible heat from the ceiling. + THE_PRESENCE_MOVES = 7308, -- The presence in the ceiling seems to have moved to the east. + CHEST_UNLOCKED = 7334, -- You unlock the chest! + ITEMS_ITEMS_LA_LA = 7461, -- You can hear a strange voice... Items, items, la la la la la + GOBLIN_SLIPPED_AWAY = 7467, -- The Goblin slipped away when you were not looking... + YOU_COULD_OPEN_THE_GATE = 7519, -- If only you had %, you could open the banishing gate... + THE_GATE_OPENS_FOR_YOU = 7520, -- By the power of your %, the gate opens for you. + COMBINE_INTO_A_CHUNK = 7522, -- You combine the % you have collected into a single chunk. + PLAYER_OBTAINS_ITEM = 7527, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7528, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7529, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7530, -- You already possess that temporary item. + NO_COMBINATION = 7535, -- You were unable to enter a combination. + REGIME_REGISTERED = 9613, -- New training regime registered! + LEARNS_SPELL = 11531, -- learns ! + UNCANNY_SENSATION = 11533, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 11564, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Garlaige_Citadel_[S]/IDs.lua b/scripts/zones/Garlaige_Citadel_[S]/IDs.lua index a8b3b7e7e0f..39ab8166fff 100644 --- a/scripts/zones/Garlaige_Citadel_[S]/IDs.lua +++ b/scripts/zones/Garlaige_Citadel_[S]/IDs.lua @@ -10,15 +10,16 @@ zones[xi.zone.GARLAIGE_CITADEL_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LYCOPODIUM_ENTRANCED = 7064, -- The lycopodium is entranced by a sparkling light... - COMMON_SENSE_SURVIVAL = 8887, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LYCOPODIUM_ENTRANCED = 7064, -- The lycopodium is entranced by a sparkling light... + COMMON_SENSE_SURVIVAL = 8887, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Ghelsba_Outpost/IDs.lua b/scripts/zones/Ghelsba_Outpost/IDs.lua index ac8078f3df8..949f5cf8842 100644 --- a/scripts/zones/Ghelsba_Outpost/IDs.lua +++ b/scripts/zones/Ghelsba_Outpost/IDs.lua @@ -24,6 +24,7 @@ zones[xi.zone.GHELSBA_OUTPOST] = CARRIED_OVER_POINTS = 7531, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7532, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7533, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7553, -- Your party is unable to participate because certain members' levels are restricted. FISHING_MESSAGE_OFFSET = 7587, -- You can't fish here. HUT_DOOR = 7721, -- This looks like an Orcish dwelling. The door is firmly shut. LOGGING_IS_POSSIBLE_HERE = 7748, -- Logging is possible here if you have . diff --git a/scripts/zones/Ghoyus_Reverie/IDs.lua b/scripts/zones/Ghoyus_Reverie/IDs.lua index 4b72ad54d90..39a03862b9a 100644 --- a/scripts/zones/Ghoyus_Reverie/IDs.lua +++ b/scripts/zones/Ghoyus_Reverie/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.GHOYUS_REVERIE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Giddeus/IDs.lua b/scripts/zones/Giddeus/IDs.lua index a0881580893..dd3efde2298 100644 --- a/scripts/zones/Giddeus/IDs.lua +++ b/scripts/zones/Giddeus/IDs.lua @@ -10,24 +10,25 @@ zones[xi.zone.GIDDEUS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - OFFERED_UP_KEY_ITEM = 7341, -- Offered up key item: ! - SPRING_FILL_UP = 7362, -- You fill your flask with water. - SPRING_DEFAULT = 7363, -- Sparkling clear water bubbles up from the ground. If you have a container, you can fill it here. - CHEST_UNLOCKED = 7413, -- You unlock the chest! - HARVESTING_IS_POSSIBLE_HERE = 7421, -- Harvesting is possible here if you have . - HOMEPOINT_SET = 7449, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + OFFERED_UP_KEY_ITEM = 7341, -- Offered up key item: ! + SPRING_FILL_UP = 7362, -- You fill your flask with water. + SPRING_DEFAULT = 7363, -- Sparkling clear water bubbles up from the ground. If you have a container, you can fill it here. + CHEST_UNLOCKED = 7413, -- You unlock the chest! + HARVESTING_IS_POSSIBLE_HERE = 7421, -- Harvesting is possible here if you have . + HOMEPOINT_SET = 7449, -- Home point set! }, mob = { diff --git a/scripts/zones/Grand_Palace_of_HuXzoi/IDs.lua b/scripts/zones/Grand_Palace_of_HuXzoi/IDs.lua index a0a633092c3..70b47f36b76 100644 --- a/scripts/zones/Grand_Palace_of_HuXzoi/IDs.lua +++ b/scripts/zones/Grand_Palace_of_HuXzoi/IDs.lua @@ -10,15 +10,16 @@ zones[xi.zone.GRAND_PALACE_OF_HUXZOI] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7079, -- Tallying conquest results... - HOMEPOINT_SET = 7461, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7079, -- Tallying conquest results... + HOMEPOINT_SET = 7461, -- Home point set! }, mob = { diff --git a/scripts/zones/Grauberg_[S]/IDs.lua b/scripts/zones/Grauberg_[S]/IDs.lua index 02a299a843b..8e1c892274c 100644 --- a/scripts/zones/Grauberg_[S]/IDs.lua +++ b/scripts/zones/Grauberg_[S]/IDs.lua @@ -10,23 +10,24 @@ zones[xi.zone.GRAUBERG_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - A_SHIVER_RUNS_DOWN = 7427, -- A shiver runs down your spine... - ATTEND_TO_MORE_PRESSING = 7428, -- Perhaps you should first attend to more pressing matters... - HARVESTING_IS_POSSIBLE_HERE = 7695, -- Harvesting is possible here if you have . - SUITABLE_PLACE_TO_SOAK = 8267, -- This seems to be a suitable place to soak . - MYSTERIOUS_COLUMN_ROTATES = 8370, -- A mysterious column of floating stones rotates hypnotically before you. - YOU_HAVE_RETRACED_RIVER = 8395, -- You have retraced the river of memories back to the mission "Maiden of the Dusk". - AIR_WARPED_AND_DISTORTED = 8396, -- The air before you appears warped and distorted... - COMMON_SENSE_SURVIVAL = 9300, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + A_SHIVER_RUNS_DOWN = 7427, -- A shiver runs down your spine... + ATTEND_TO_MORE_PRESSING = 7428, -- Perhaps you should first attend to more pressing matters... + HARVESTING_IS_POSSIBLE_HERE = 7695, -- Harvesting is possible here if you have . + SUITABLE_PLACE_TO_SOAK = 8267, -- This seems to be a suitable place to soak . + MYSTERIOUS_COLUMN_ROTATES = 8370, -- A mysterious column of floating stones rotates hypnotically before you. + YOU_HAVE_RETRACED_RIVER = 8395, -- You have retraced the river of memories back to the mission "Maiden of the Dusk". + AIR_WARPED_AND_DISTORTED = 8396, -- The air before you appears warped and distorted... + COMMON_SENSE_SURVIVAL = 9300, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Gusgen_Mines/IDs.lua b/scripts/zones/Gusgen_Mines/IDs.lua index c64b3a5d67c..95cbaf5b998 100644 --- a/scripts/zones/Gusgen_Mines/IDs.lua +++ b/scripts/zones/Gusgen_Mines/IDs.lua @@ -10,40 +10,41 @@ zones[xi.zone.GUSGEN_MINES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - DEVICE_NOT_WORKING = 7330, -- The device is not working. - SYS_OVERLOAD = 7339, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. - YOU_LOST_THE = 7344, -- You lost the . - LOCK_OTHER_DEVICE = 7347, -- This entrance's lock is connected to some other device. - SEE_MONSTER_TRACKS = 7348, -- You see monster tracks on the ground. - FRESH_MONSTER_TRACKS = 7349, -- You see fresh monster tracks on the ground. - NOTHING_SEEMS_HAPPENING = 7350, -- Nothing seems to be happening. - YOU_PUT_ITEM_DOWN = 7351, -- You put down. - MINING_IS_POSSIBLE_HERE = 7367, -- Mining is possible here if you have . - CHEST_UNLOCKED = 7382, -- You unlock the chest! - LETTERS_IS_WRITTEN_HERE = 7390, -- Something resembling letters is written here. - FOUND_LOCATION_SEAL = 7391, -- You have found the location of the seal. You place on it. - IS_ON_THIS_SEAL = 7392, -- is on this seal. - PLAYER_OBTAINS_ITEM = 8305, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8306, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8307, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8308, -- You already possess that temporary item. - NO_COMBINATION = 8313, -- You were unable to enter a combination. - REGIME_REGISTERED = 10391, -- New training regime registered! - LEARNS_SPELL = 11439, -- learns ! - UNCANNY_SENSATION = 11441, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 11476, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + DEVICE_NOT_WORKING = 7330, -- The device is not working. + SYS_OVERLOAD = 7339, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. + YOU_LOST_THE = 7344, -- You lost the . + LOCK_OTHER_DEVICE = 7347, -- This entrance's lock is connected to some other device. + SEE_MONSTER_TRACKS = 7348, -- You see monster tracks on the ground. + FRESH_MONSTER_TRACKS = 7349, -- You see fresh monster tracks on the ground. + NOTHING_SEEMS_HAPPENING = 7350, -- Nothing seems to be happening. + YOU_PUT_ITEM_DOWN = 7351, -- You put down. + MINING_IS_POSSIBLE_HERE = 7367, -- Mining is possible here if you have . + CHEST_UNLOCKED = 7382, -- You unlock the chest! + LETTERS_IS_WRITTEN_HERE = 7390, -- Something resembling letters is written here. + FOUND_LOCATION_SEAL = 7391, -- You have found the location of the seal. You place on it. + IS_ON_THIS_SEAL = 7392, -- is on this seal. + PLAYER_OBTAINS_ITEM = 8305, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8306, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8307, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8308, -- You already possess that temporary item. + NO_COMBINATION = 8313, -- You were unable to enter a combination. + REGIME_REGISTERED = 10391, -- New training regime registered! + LEARNS_SPELL = 11439, -- learns ! + UNCANNY_SENSATION = 11441, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 11476, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Gustav_Tunnel/IDs.lua b/scripts/zones/Gustav_Tunnel/IDs.lua index 67fb6a19d69..baca29a076b 100644 --- a/scripts/zones/Gustav_Tunnel/IDs.lua +++ b/scripts/zones/Gustav_Tunnel/IDs.lua @@ -10,27 +10,28 @@ zones[xi.zone.GUSTAV_TUNNEL] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - BAD_FEELING_ABOUT_PLACE = 7316, -- You have a bad feeling about this place. - SENSE_OMINOUS_PRESENCE = 7318, -- You sense an ominous presence... - REGIME_REGISTERED = 9586, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 10638, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 10639, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 10640, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 10641, -- You already possess that temporary item. - NO_COMBINATION = 10646, -- You were unable to enter a combination. - COMMON_SENSE_SURVIVAL = 10670, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + BAD_FEELING_ABOUT_PLACE = 7316, -- You have a bad feeling about this place. + SENSE_OMINOUS_PRESENCE = 7318, -- You sense an ominous presence... + REGIME_REGISTERED = 9586, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 10638, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 10639, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 10640, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 10641, -- You already possess that temporary item. + NO_COMBINATION = 10646, -- You were unable to enter a combination. + COMMON_SENSE_SURVIVAL = 10670, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Hall_of_Transference/IDs.lua b/scripts/zones/Hall_of_Transference/IDs.lua index 21fa444d623..8a3bb23de55 100644 --- a/scripts/zones/Hall_of_Transference/IDs.lua +++ b/scripts/zones/Hall_of_Transference/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.HALL_OF_TRANSFERENCE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - NO_RESPONSE_OFFSET = 7252, -- There is no response. - DOOR_FIRMLY_SHUT = 7253, -- The door is firmly shut. - YOU_MUST_MOVE_CLOSER = 7254, -- You must move closer to inspect the device. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + NO_RESPONSE_OFFSET = 7252, -- There is no response. + DOOR_FIRMLY_SHUT = 7253, -- The door is firmly shut. + YOU_MUST_MOVE_CLOSER = 7254, -- You must move closer to inspect the device. }, mob = { diff --git a/scripts/zones/Hall_of_the_Gods/IDs.lua b/scripts/zones/Hall_of_the_Gods/IDs.lua index 3fd6273b26b..28531621aa0 100644 --- a/scripts/zones/Hall_of_the_Gods/IDs.lua +++ b/scripts/zones/Hall_of_the_Gods/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.HALL_OF_THE_GODS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7201, -- Tallying conquest results... - DEPRESSION_A_CLUE = 7360, -- The depression in the center of the grate must be a clue... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7201, -- Tallying conquest results... + DEPRESSION_A_CLUE = 7360, -- The depression in the center of the grate must be a clue... }, mob = { diff --git a/scripts/zones/Halvung/IDs.lua b/scripts/zones/Halvung/IDs.lua index dee5ad7c820..f538e31b79c 100644 --- a/scripts/zones/Halvung/IDs.lua +++ b/scripts/zones/Halvung/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.HALVUNG] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - KEY_BREAKS = 7365, -- The breaks! - PARTY_MEMBERS_HAVE_FALLEN = 7789, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7796, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - WIDE_TRENCH = 7906, -- There is a wide trench around the gate here. There are three keyholes of differing sizes inside the trench. - MINING_IS_POSSIBLE_HERE = 7929, -- Mining is possible here if you have . - BLUE_FLAMES = 7968, -- You can see blue flames flickering from a hole in the ground here... - SICKLY_SWEET = 8020, -- A sickly sweet fragrance pervades the air... - THIN_LAYER_OF_CINDER = 8027, -- The ground is carpeted in a thin layer of cinder. - DRAWS_NEAR = 8042, -- Something draws near! - DULL_PIECE = 8043, -- A dull piece of metal lies on the ground. It appears to be a bracelet of sorts, but the layers of grime covering its surface render it wholly unwearable. - LIFT_LEVER = 8046, -- You lift the lever with all your might! - COMMON_SENSE_SURVIVAL = 8107, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + KEY_BREAKS = 7365, -- The breaks! + PARTY_MEMBERS_HAVE_FALLEN = 7789, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7796, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + WIDE_TRENCH = 7906, -- There is a wide trench around the gate here. There are three keyholes of differing sizes inside the trench. + MINING_IS_POSSIBLE_HERE = 7929, -- Mining is possible here if you have . + BLUE_FLAMES = 7968, -- You can see blue flames flickering from a hole in the ground here... + SICKLY_SWEET = 8020, -- A sickly sweet fragrance pervades the air... + THIN_LAYER_OF_CINDER = 8027, -- The ground is carpeted in a thin layer of cinder. + DRAWS_NEAR = 8042, -- Something draws near! + DULL_PIECE = 8043, -- A dull piece of metal lies on the ground. It appears to be a bracelet of sorts, but the layers of grime covering its surface render it wholly unwearable. + LIFT_LEVER = 8046, -- You lift the lever with all your might! + COMMON_SENSE_SURVIVAL = 8107, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Hazhalm_Testing_Grounds/IDs.lua b/scripts/zones/Hazhalm_Testing_Grounds/IDs.lua index c060e29365e..51b3d7b40bc 100644 --- a/scripts/zones/Hazhalm_Testing_Grounds/IDs.lua +++ b/scripts/zones/Hazhalm_Testing_Grounds/IDs.lua @@ -10,15 +10,16 @@ zones[xi.zone.HAZHALM_TESTING_GROUNDS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7601, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7608, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7601, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7608, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Heavens_Tower/IDs.lua b/scripts/zones/Heavens_Tower/IDs.lua index 7689dfee736..232e064703e 100644 --- a/scripts/zones/Heavens_Tower/IDs.lua +++ b/scripts/zones/Heavens_Tower/IDs.lua @@ -10,24 +10,25 @@ zones[xi.zone.HEAVENS_TOWER] = { text = { - STAIRWAY_LOCKED = 554, -- The door to the Starway Stairway is locked tight. - STAIRWAY_ONLY_CITIZENS = 555, -- The door to the Starway Stairway is locked tight, and only citizens of Windurst can open it. - CONQUEST_BASE = 582, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 7125, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 7131, -- Obtained: . - GIL_OBTAINED = 7132, -- Obtained gil. - KEYITEM_OBTAINED = 7134, -- Obtained key item: . - KEYITEM_LOST = 7135, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 7136, -- You do not have enough gil. - CARRIED_OVER_POINTS = 7170, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7171, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7172, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - YOU_LEARNED_TRUST = 7194, -- You learned Trust: ! - CALL_MULTIPLE_ALTER_EGO = 7195, -- You are now able to call multiple alter egos. - FISHING_MESSAGE_OFFSET = 7374, -- You can't fish here. - CELEBRATORY_GOODS = 9107, -- An assortment of celebratory goods is available for purchase. - OBTAINED_NUM_KEYITEMS = 9185, -- Obtained key item: ! - NOT_ACQUAINTED = 9187, -- I'm sorry, but I don't believe we're acquainted. Please leave me be. + STAIRWAY_LOCKED = 554, -- The door to the Starway Stairway is locked tight. + STAIRWAY_ONLY_CITIZENS = 555, -- The door to the Starway Stairway is locked tight, and only citizens of Windurst can open it. + CONQUEST_BASE = 582, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 7125, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 7131, -- Obtained: . + GIL_OBTAINED = 7132, -- Obtained gil. + KEYITEM_OBTAINED = 7134, -- Obtained key item: . + KEYITEM_LOST = 7135, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 7136, -- You do not have enough gil. + CARRIED_OVER_POINTS = 7170, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7171, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7172, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7192, -- Your party is unable to participate because certain members' levels are restricted. + YOU_LEARNED_TRUST = 7194, -- You learned Trust: ! + CALL_MULTIPLE_ALTER_EGO = 7195, -- You are now able to call multiple alter egos. + FISHING_MESSAGE_OFFSET = 7374, -- You can't fish here. + CELEBRATORY_GOODS = 9107, -- An assortment of celebratory goods is available for purchase. + OBTAINED_NUM_KEYITEMS = 9185, -- Obtained key item: ! + NOT_ACQUAINTED = 9187, -- I'm sorry, but I don't believe we're acquainted. Please leave me be. }, mob = { diff --git a/scripts/zones/Horlais_Peak/IDs.lua b/scripts/zones/Horlais_Peak/IDs.lua index e399f1f1667..6b26b17c36a 100644 --- a/scripts/zones/Horlais_Peak/IDs.lua +++ b/scripts/zones/Horlais_Peak/IDs.lua @@ -10,34 +10,35 @@ zones[xi.zone.HORLAIS_PEAK] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - YOU_DECIDED_TO_SHOW_UP = 7750, -- So, you decided to show up. Now it's time to see what you're really made of, heh heh heh. - LOOKS_LIKE_YOU_WERENT_READY = 7751, -- Looks like you weren't ready for me, were you? Now go home, wash your face, and come back when you think you've got what it takes. - YOUVE_COME_A_LONG_WAY = 7752, -- Hm. That was a mighty fine display of skill there, . You've come a long way... - TEACH_YOU_TO_RESPECT_ELDERS = 7753, -- I'll teach you to respect your elders! - TAKE_THAT_YOU_WHIPPERSNAPPER = 7754, -- Take that, you whippersnapper! - NOW_THAT_IM_WARMED_UP = 7755, -- Now that I'm warmed up... - THAT_LL_HURT_IN_THE_MORNING = 7756, -- Ungh... That'll hurt in the morning... - EVIL_OSCAR_BEGINS_FILLING = 7943, -- Evil Oscar begins filling his lungs with the foul air around him... - PROMISE_ME_YOU_WONT_GO_DOWN = 7959, -- Promise you won't go down too easy, okay? - IM_JUST_GETTING_WARMED_UP = 7960, -- Haha! I'm just getting warmed up! - YOU_PACKED_MORE_OF_A_PUNCH = 7961, -- Hah! You pack more of a punch than I thoughtaru. But I won't go down as easy as old Maat! - WHATS_THIS_STRANGE_FEELING = 7962, -- What's this strange feeling...? It's not supposed to end...like... - HUH_IS_THAT_ALL = 7963, -- Huh? Is that all? I haven't even broken a sweataru... - YIKEY_WIKEYS = 7964, -- Yikey-wikeys! Get that thing away from meee! - WHATS_THE_MATTARU = 7965, -- ... What's the mattaru, ? Too much of a pansy-wansy to fight fair? + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + YOU_DECIDED_TO_SHOW_UP = 7750, -- So, you decided to show up. Now it's time to see what you're really made of, heh heh heh. + LOOKS_LIKE_YOU_WERENT_READY = 7751, -- Looks like you weren't ready for me, were you? Now go home, wash your face, and come back when you think you've got what it takes. + YOUVE_COME_A_LONG_WAY = 7752, -- Hm. That was a mighty fine display of skill there, . You've come a long way... + TEACH_YOU_TO_RESPECT_ELDERS = 7753, -- I'll teach you to respect your elders! + TAKE_THAT_YOU_WHIPPERSNAPPER = 7754, -- Take that, you whippersnapper! + NOW_THAT_IM_WARMED_UP = 7755, -- Now that I'm warmed up... + THAT_LL_HURT_IN_THE_MORNING = 7756, -- Ungh... That'll hurt in the morning... + EVIL_OSCAR_BEGINS_FILLING = 7943, -- Evil Oscar begins filling his lungs with the foul air around him... + PROMISE_ME_YOU_WONT_GO_DOWN = 7959, -- Promise you won't go down too easy, okay? + IM_JUST_GETTING_WARMED_UP = 7960, -- Haha! I'm just getting warmed up! + YOU_PACKED_MORE_OF_A_PUNCH = 7961, -- Hah! You pack more of a punch than I thoughtaru. But I won't go down as easy as old Maat! + WHATS_THIS_STRANGE_FEELING = 7962, -- What's this strange feeling...? It's not supposed to end...like... + HUH_IS_THAT_ALL = 7963, -- Huh? Is that all? I haven't even broken a sweataru... + YIKEY_WIKEYS = 7964, -- Yikey-wikeys! Get that thing away from meee! + WHATS_THE_MATTARU = 7965, -- ... What's the mattaru, ? Too much of a pansy-wansy to fight fair? }, mob = { diff --git a/scripts/zones/Ifrits_Cauldron/IDs.lua b/scripts/zones/Ifrits_Cauldron/IDs.lua index 4f490a6775e..30e1326450a 100644 --- a/scripts/zones/Ifrits_Cauldron/IDs.lua +++ b/scripts/zones/Ifrits_Cauldron/IDs.lua @@ -10,36 +10,37 @@ zones[xi.zone.IFRITS_CAULDRON] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - ALTAR_COMPLETED = 7246, -- You have already made an offering today. - ALTAR_INSPECT = 7247, -- This looks like the altar where offerings are to be placed. - ALTAR_OFFERING = 7248, -- You place your offering of on the altar. - ALTAR_STANDARD = 7249, -- It is an altar for offerings. - CHEST_UNLOCKED = 7258, -- You unlock the chest! - MINING_IS_POSSIBLE_HERE = 7266, -- Mining is possible here if you have . - BAD_FEELING_ABOUT_PLACE = 7273, -- You have a bad feeling about this place. - LAVA_FLOWS_SLOWLY = 7274, -- Lava flows slowly through the rocks. - EGGSHELLS_LIE_SCATTERED = 7275, -- Eggshells lie scattered around the place... - SENSE_OMINOUS_PRESENCE = 7278, -- You sense an ominous presence... - REGIME_REGISTERED = 10430, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 11482, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 11483, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 11484, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 11485, -- You already possess that temporary item. - NO_COMBINATION = 11490, -- You were unable to enter a combination. - HOMEPOINT_SET = 11516, -- Home point set! - COMMON_SENSE_SURVIVAL = 11596, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + ALTAR_COMPLETED = 7246, -- You have already made an offering today. + ALTAR_INSPECT = 7247, -- This looks like the altar where offerings are to be placed. + ALTAR_OFFERING = 7248, -- You place your offering of on the altar. + ALTAR_STANDARD = 7249, -- It is an altar for offerings. + CHEST_UNLOCKED = 7258, -- You unlock the chest! + MINING_IS_POSSIBLE_HERE = 7266, -- Mining is possible here if you have . + BAD_FEELING_ABOUT_PLACE = 7273, -- You have a bad feeling about this place. + LAVA_FLOWS_SLOWLY = 7274, -- Lava flows slowly through the rocks. + EGGSHELLS_LIE_SCATTERED = 7275, -- Eggshells lie scattered around the place... + SENSE_OMINOUS_PRESENCE = 7278, -- You sense an ominous presence... + REGIME_REGISTERED = 10430, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 11482, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 11483, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 11484, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 11485, -- You already possess that temporary item. + NO_COMBINATION = 11490, -- You were unable to enter a combination. + HOMEPOINT_SET = 11516, -- Home point set! + COMMON_SENSE_SURVIVAL = 11596, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Ilrusi_Atoll/IDs.lua b/scripts/zones/Ilrusi_Atoll/IDs.lua index 700d179595c..a6ac5ac1176 100644 --- a/scripts/zones/Ilrusi_Atoll/IDs.lua +++ b/scripts/zones/Ilrusi_Atoll/IDs.lua @@ -10,33 +10,34 @@ zones[xi.zone.ILRUSI_ATOLL] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - ASSAULT_41_START = 7462, -- Commencing ! Objective: Rescue the agent - ASSAULT_42_START = 7463, -- Commencing ! Objective: Destroy the assassins - ASSAULT_43_START = 7464, -- Commencing ! Objective: Defeat Sagelord Molaal Ja - ASSAULT_44_START = 7465, -- Commencing ! Objective: Steal the supplies - ASSAULT_45_START = 7466, -- Commencing ! Objective: Apprehend the spy - ASSAULT_46_START = 7467, -- Commencing ! Objective: Recover the treasure - ASSAULT_47_START = 7468, -- Commencing ! Objective: Annihilate the enemy - ASSAULT_48_START = 7469, -- Commencing ! Objective: Neutralize the marids - ASSAULT_49_START = 7470, -- Commencing ! Objective: Gather pathological data - ASSAULT_50_START = 7471, -- Commencing ! Objective: Defeat Orochi - TIME_TO_COMPLETE = 7512, -- You have [minute/minutes] (Earth time) to complete this mission. - MISSION_FAILED = 7513, -- The mission has failed. Leaving area. - RUNE_UNLOCKED_POS = 7514, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). - RUNE_UNLOCKED = 7515, -- ission objective completed. Unlocking Rune of Release. - ASSAULT_POINTS_OBTAINED = 7516, -- You gain [Assault point/Assault points]! - TIME_REMAINING_MINUTES = 7517, -- ime remaining: [minute/minutes] (Earth time). - TIME_REMAINING_SECONDS = 7518, -- ime remaining: [second/seconds] (Earth time). - PARTY_FALLEN = 7520, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. - CHEST = 7530, -- The chest contains... - GOLDEN = 7531, -- ...a golden figurehead! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + ASSAULT_41_START = 7462, -- Commencing ! Objective: Rescue the agent + ASSAULT_42_START = 7463, -- Commencing ! Objective: Destroy the assassins + ASSAULT_43_START = 7464, -- Commencing ! Objective: Defeat Sagelord Molaal Ja + ASSAULT_44_START = 7465, -- Commencing ! Objective: Steal the supplies + ASSAULT_45_START = 7466, -- Commencing ! Objective: Apprehend the spy + ASSAULT_46_START = 7467, -- Commencing ! Objective: Recover the treasure + ASSAULT_47_START = 7468, -- Commencing ! Objective: Annihilate the enemy + ASSAULT_48_START = 7469, -- Commencing ! Objective: Neutralize the marids + ASSAULT_49_START = 7470, -- Commencing ! Objective: Gather pathological data + ASSAULT_50_START = 7471, -- Commencing ! Objective: Defeat Orochi + TIME_TO_COMPLETE = 7512, -- You have [minute/minutes] (Earth time) to complete this mission. + MISSION_FAILED = 7513, -- The mission has failed. Leaving area. + RUNE_UNLOCKED_POS = 7514, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). + RUNE_UNLOCKED = 7515, -- ission objective completed. Unlocking Rune of Release. + ASSAULT_POINTS_OBTAINED = 7516, -- You gain [Assault point/Assault points]! + TIME_REMAINING_MINUTES = 7517, -- ime remaining: [minute/minutes] (Earth time). + TIME_REMAINING_SECONDS = 7518, -- ime remaining: [second/seconds] (Earth time). + PARTY_FALLEN = 7520, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. + CHEST = 7530, -- The chest contains... + GOLDEN = 7531, -- ...a golden figurehead! }, mob = { diff --git a/scripts/zones/Inner_Horutoto_Ruins/IDs.lua b/scripts/zones/Inner_Horutoto_Ruins/IDs.lua index 45e89338372..e95b1e50b67 100644 --- a/scripts/zones/Inner_Horutoto_Ruins/IDs.lua +++ b/scripts/zones/Inner_Horutoto_Ruins/IDs.lua @@ -10,30 +10,31 @@ zones[xi.zone.INNER_HORUTOTO_RUINS] = { text = { - PORTAL_SEALED_BY_3_MAGIC = 8, -- The Sealed Portal is sealed by three kinds of magic. - PORTAL_NOT_OPEN_THAT_SIDE = 9, -- The Sealed Portal cannot be opened from this side. - CONQUEST_BASE = 10, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6553, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6559, -- Obtained: . - GIL_OBTAINED = 6560, -- Obtained gil. - KEYITEM_OBTAINED = 6562, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6588, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7170, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7171, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7172, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7181, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - NOT_BROKEN_ORB = 7242, -- The Mana Orb in this receptacle is not broken. - EXAMINED_RECEPTACLE = 7243, -- You have already examined this receptacle. - DOOR_FIRMLY_CLOSED = 7270, -- The door is firmly closed. - CAT_BURGLARS_HIDEOUT = 7271, -- It looks like that Cat Burglar's hideout lies behind this door! You were able to confirm ! - CHEST_UNLOCKED = 7346, -- You unlock the chest! - PLAYER_OBTAINS_ITEM = 7409, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7410, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7411, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7412, -- You already possess that temporary item. - NO_COMBINATION = 7417, -- You were unable to enter a combination. - REGIME_REGISTERED = 9495, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 10543, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + PORTAL_SEALED_BY_3_MAGIC = 8, -- The Sealed Portal is sealed by three kinds of magic. + PORTAL_NOT_OPEN_THAT_SIDE = 9, -- The Sealed Portal cannot be opened from this side. + CONQUEST_BASE = 10, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6553, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6559, -- Obtained: . + GIL_OBTAINED = 6560, -- Obtained gil. + KEYITEM_OBTAINED = 6562, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6588, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7170, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7171, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7172, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7181, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7192, -- Your party is unable to participate because certain members' levels are restricted. + NOT_BROKEN_ORB = 7242, -- The Mana Orb in this receptacle is not broken. + EXAMINED_RECEPTACLE = 7243, -- You have already examined this receptacle. + DOOR_FIRMLY_CLOSED = 7270, -- The door is firmly closed. + CAT_BURGLARS_HIDEOUT = 7271, -- It looks like that Cat Burglar's hideout lies behind this door! You were able to confirm ! + CHEST_UNLOCKED = 7346, -- You unlock the chest! + PLAYER_OBTAINS_ITEM = 7409, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7410, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7411, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7412, -- You already possess that temporary item. + NO_COMBINATION = 7417, -- You were unable to enter a combination. + REGIME_REGISTERED = 9495, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 10543, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Jade_Sepulcher/IDs.lua b/scripts/zones/Jade_Sepulcher/IDs.lua index ecb8a217ff0..691b204f892 100644 --- a/scripts/zones/Jade_Sepulcher/IDs.lua +++ b/scripts/zones/Jade_Sepulcher/IDs.lua @@ -10,15 +10,16 @@ zones[xi.zone.JADE_SEPULCHER] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7666, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7673, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7666, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7673, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Jugner_Forest/IDs.lua b/scripts/zones/Jugner_Forest/IDs.lua index fa88b284c15..04704151654 100644 --- a/scripts/zones/Jugner_Forest/IDs.lua +++ b/scripts/zones/Jugner_Forest/IDs.lua @@ -10,44 +10,45 @@ zones[xi.zone.JUGNER_FOREST] = { text = { - NOTHING_HAPPENS = 141, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - KEYITEM_LOST = 6416, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7079, -- Tallying conquest results... - BEASTMEN_BANNER = 7160, -- There is a beastmen's banner. - FISHING_MESSAGE_OFFSET = 7712, -- You can't fish here. - DIG_THROW_AWAY = 7725, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7727, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7793, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - LOGGING_IS_POSSIBLE_HERE = 7905, -- Logging is possible here if you have . - VOIDWALKER_OBTAIN_KI = 7912, -- Obtained key item: ! - CONQUEST = 8056, -- You've earned conquest points! - PLAYER_OBTAINS_ITEM = 8658, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8659, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8660, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8661, -- You already possess that temporary item. - NO_COMBINATION = 8666, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 8697, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 10871, -- New training regime registered! - DRAWN_UNWANTED_ATTENTION = 11925, -- Your presence has drawn unwanted attention! - SENSE_UNUSUAL_PRESENCE = 11927, -- You sense an unusual presence in the area... - DELIVER_TO_AMAURE = 11929, -- You must deliver the to Amaura in Southern San d'Oria. - VOIDWALKER_NO_MOB = 12089, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 12090, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 12091, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 12092, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 12094, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 12095, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 12096, -- The shatters into tiny fragments. - COMMON_SENSE_SURVIVAL = 13100, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 141, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + KEYITEM_LOST = 6416, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7079, -- Tallying conquest results... + BEASTMEN_BANNER = 7160, -- There is a beastmen's banner. + FISHING_MESSAGE_OFFSET = 7712, -- You can't fish here. + DIG_THROW_AWAY = 7725, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7727, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7793, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + LOGGING_IS_POSSIBLE_HERE = 7905, -- Logging is possible here if you have . + VOIDWALKER_OBTAIN_KI = 7912, -- Obtained key item: ! + CONQUEST = 8056, -- You've earned conquest points! + PLAYER_OBTAINS_ITEM = 8658, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8659, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8660, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8661, -- You already possess that temporary item. + NO_COMBINATION = 8666, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 8697, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 10871, -- New training regime registered! + DRAWN_UNWANTED_ATTENTION = 11925, -- Your presence has drawn unwanted attention! + SENSE_UNUSUAL_PRESENCE = 11927, -- You sense an unusual presence in the area... + DELIVER_TO_AMAURE = 11929, -- You must deliver the to Amaura in Southern San d'Oria. + VOIDWALKER_NO_MOB = 12089, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 12090, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 12091, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 12092, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 12094, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 12095, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 12096, -- The shatters into tiny fragments. + COMMON_SENSE_SURVIVAL = 13100, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Jugner_Forest_[S]/IDs.lua b/scripts/zones/Jugner_Forest_[S]/IDs.lua index 2c6837b6694..2f6b113694c 100644 --- a/scripts/zones/Jugner_Forest_[S]/IDs.lua +++ b/scripts/zones/Jugner_Forest_[S]/IDs.lua @@ -10,38 +10,39 @@ zones[xi.zone.JUGNER_FOREST_S] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LOGGING_IS_POSSIBLE_HERE = 7077, -- Logging is possible here if you have . - YOU_FIND_NOTHING_ORDINARY = 7117, -- You find nothing out of the ordinary. - FISHING_MESSAGE_OFFSET = 7370, -- You can't fish here. - ALREADY_OBTAINED_TELE = 7706, -- You already possess the gate crystal for this telepoint. - YOU_FIND_SPARKLING_STONE = 7724, -- You find a sparkling stone. - ELEGANT_FOOTPRINTS = 8399, -- You see numerous sets of elegant footprints. - LILISETTE_IS_PREPARING = 8400, -- Lilisette is preparing a new trap in an attempt to catch the ever-elusive Cait Sith. Bring her to use as bait. - IDEAL_PLACE_TO_PLANT_ITEM = 8529, -- This seems to be an ideal place to plant . - YOU_PLANT_ITEM = 8530, -- You plant . - ITEM_IS_PLANTED_HERE = 8531, -- has been planted here... - NO_RESPONSE = 8535, -- There is no response... - VOIDWALKER_DESPAWN = 8558, -- The monster fades before your eyes, a look of disappointment on its face. - VOIDWALKER_NO_MOB = 8605, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8606, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8607, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8608, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8610, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8611, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8612, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8613, -- Obtained key item: ! - GATHERED_DAWNDROPS_LIGHT = 8633, -- The gathered dawndrops unleash a brilliant light, melding together to form ! - RETRACED_ALL_JUNCTIONS = 8634, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. - COMMON_SENSE_SURVIVAL = 9508, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LOGGING_IS_POSSIBLE_HERE = 7077, -- Logging is possible here if you have . + YOU_FIND_NOTHING_ORDINARY = 7117, -- You find nothing out of the ordinary. + FISHING_MESSAGE_OFFSET = 7370, -- You can't fish here. + ALREADY_OBTAINED_TELE = 7706, -- You already possess the gate crystal for this telepoint. + YOU_FIND_SPARKLING_STONE = 7724, -- You find a sparkling stone. + ELEGANT_FOOTPRINTS = 8399, -- You see numerous sets of elegant footprints. + LILISETTE_IS_PREPARING = 8400, -- Lilisette is preparing a new trap in an attempt to catch the ever-elusive Cait Sith. Bring her to use as bait. + IDEAL_PLACE_TO_PLANT_ITEM = 8529, -- This seems to be an ideal place to plant . + YOU_PLANT_ITEM = 8530, -- You plant . + ITEM_IS_PLANTED_HERE = 8531, -- has been planted here... + NO_RESPONSE = 8535, -- There is no response... + VOIDWALKER_DESPAWN = 8558, -- The monster fades before your eyes, a look of disappointment on its face. + VOIDWALKER_NO_MOB = 8605, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8606, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8607, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8608, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8610, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8611, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8612, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8613, -- Obtained key item: ! + GATHERED_DAWNDROPS_LIGHT = 8633, -- The gathered dawndrops unleash a brilliant light, melding together to form ! + RETRACED_ALL_JUNCTIONS = 8634, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. + COMMON_SENSE_SURVIVAL = 9508, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Kamihr_Drifts/IDs.lua b/scripts/zones/Kamihr_Drifts/IDs.lua index 10029967daa..670677609cb 100644 --- a/scripts/zones/Kamihr_Drifts/IDs.lua +++ b/scripts/zones/Kamihr_Drifts/IDs.lua @@ -10,28 +10,29 @@ zones[xi.zone.KAMIHR_DRIFTS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - LOST_KEYITEM = 6394, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BAYLD_OBTAINED = 7007, -- You have obtained bayld! - YOU_HAVE_LEARNED = 7015, -- You have learned ! - WAYPOINT_ATTUNED = 7694, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3/ at Frontier Bivouac #4]! - EXPENDED_KINETIC_UNITS = 7705, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 7706, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 7707, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 7708, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 7709, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 7710, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 7711, -- A surplus of kinetic unit[/s] has been lost to the aether. - HOMEPOINT_SET = 7963, -- Home point set! - PATH_SEEMS_TO_LEAD = 8042, -- This path seems to lead toward the summit of Mount Kamihr. - SNOW_DUSTED_CRAG_BLOCKS = 8495, -- A snow-dusted crag blocks your path. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + LOST_KEYITEM = 6394, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + BAYLD_OBTAINED = 7007, -- You have obtained bayld! + YOU_HAVE_LEARNED = 7015, -- You have learned ! + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WAYPOINT_ATTUNED = 7694, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3/ at Frontier Bivouac #4]! + EXPENDED_KINETIC_UNITS = 7705, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 7706, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 7707, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 7708, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 7709, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 7710, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 7711, -- A surplus of kinetic unit[/s] has been lost to the aether. + HOMEPOINT_SET = 7963, -- Home point set! + PATH_SEEMS_TO_LEAD = 8042, -- This path seems to lead toward the summit of Mount Kamihr. + SNOW_DUSTED_CRAG_BLOCKS = 8495, -- A snow-dusted crag blocks your path. }, mob = { diff --git a/scripts/zones/Kazham-Jeuno_Airship/IDs.lua b/scripts/zones/Kazham-Jeuno_Airship/IDs.lua index bb8898ce4c3..f63836f38e8 100644 --- a/scripts/zones/Kazham-Jeuno_Airship/IDs.lua +++ b/scripts/zones/Kazham-Jeuno_Airship/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.KAZHAM_JEUNO_AIRSHIP] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - WILL_REACH_JEUNO = 7057, -- The airship will reach Jeuno in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - WILL_REACH_KAZHAM = 7058, -- The airship will reach Kazham in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - IN_JEUNO_MOMENTARILY = 7059, -- We will be arriving in Jeuno momentarily. - IN_KAZHAM_MOMENTARILY = 7060, -- We will be arriving in Kazham momentarily. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WILL_REACH_JEUNO = 7057, -- The airship will reach Jeuno in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + WILL_REACH_KAZHAM = 7058, -- The airship will reach Kazham in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + IN_JEUNO_MOMENTARILY = 7059, -- We will be arriving in Jeuno momentarily. + IN_KAZHAM_MOMENTARILY = 7060, -- We will be arriving in Kazham momentarily. }, mob = { diff --git a/scripts/zones/Kazham/IDs.lua b/scripts/zones/Kazham/IDs.lua index 12557af4dc3..8fc6c47ebef 100644 --- a/scripts/zones/Kazham/IDs.lua +++ b/scripts/zones/Kazham/IDs.lua @@ -10,35 +10,36 @@ zones[xi.zone.KAZHAM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - HOMEPOINT_SET = 6487, -- Home point set! - CONQUEST_BASE = 6507, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 6666, -- You can't fish here. - REGIME_CANCELED = 6827, -- Current training regime canceled. - HUNT_ACCEPTED = 6845, -- Hunt accepted! - USE_SCYLDS = 6846, -- You use [scyld/scylds]. Scyld balance: . - HUNT_RECORDED = 6857, -- You record your hunt. - OBTAIN_SCYLDS = 6859, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. - HUNT_CANCELED = 6863, -- Hunt canceled. - ITEM_DELIVERY_DIALOG = 9966, -- We can deliver packages to Mog Houses anywhere in Vana'diel. - PAHYALOLOHOIV_SHOP_DIALOG = 10028, -- Nothing in this world is crrreated good or evil. However, evil can arrrise when something exists in a place where it did not originally belong. - TOJIMUMOSULAH_SHOP_DIALOG = 10030, -- Things meant to live will live. Things meant to die will die when their time has come. However, this does not mean you should cease your strrruggle for life. - GHEMISENTERILO_SHOP_DIALOG = 10052, -- Can you really get everything that you want on the mainland? - NUHCELODENKI_SHOP_DIALOG = 10054, -- When you die, you can't take anything with you, but what fun is life if you don't have anything to live it up with? - KHIFORYUHKOWA_SHOP_DIALOG = 10055, -- Sometimes a strrrange Hume comes from the south to buy stuff. I wonder what he's doing down there... - TAHNPOSBEI_SHOP_DIALOG = 10056, -- You don't want to get whipped by those Tonberries, do you? Well, have I got the equipment forrr you! - IFRIT_UNLOCKED = 10525, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. - NOMAD_MOOGLE_DIALOG = 10593, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. - MAMERIE_SHOP_DIALOG = 10617, -- Is there something you require? - EVISCERATION_LEARNED = 10654, -- You have learned the weapon skill Evisceration! - RETRIEVE_DIALOG_ID = 11004, -- You retrieve from the porter moogle's care. - COMMON_SENSE_SURVIVAL = 11862, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6451, -- Your party is unable to participate because certain members' levels are restricted. + HOMEPOINT_SET = 6487, -- Home point set! + CONQUEST_BASE = 6507, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 6666, -- You can't fish here. + REGIME_CANCELED = 6827, -- Current training regime canceled. + HUNT_ACCEPTED = 6845, -- Hunt accepted! + USE_SCYLDS = 6846, -- You use [scyld/scylds]. Scyld balance: . + HUNT_RECORDED = 6857, -- You record your hunt. + OBTAIN_SCYLDS = 6859, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. + HUNT_CANCELED = 6863, -- Hunt canceled. + ITEM_DELIVERY_DIALOG = 9966, -- We can deliver packages to Mog Houses anywhere in Vana'diel. + PAHYALOLOHOIV_SHOP_DIALOG = 10028, -- Nothing in this world is crrreated good or evil. However, evil can arrrise when something exists in a place where it did not originally belong. + TOJIMUMOSULAH_SHOP_DIALOG = 10030, -- Things meant to live will live. Things meant to die will die when their time has come. However, this does not mean you should cease your strrruggle for life. + GHEMISENTERILO_SHOP_DIALOG = 10052, -- Can you really get everything that you want on the mainland? + NUHCELODENKI_SHOP_DIALOG = 10054, -- When you die, you can't take anything with you, but what fun is life if you don't have anything to live it up with? + KHIFORYUHKOWA_SHOP_DIALOG = 10055, -- Sometimes a strrrange Hume comes from the south to buy stuff. I wonder what he's doing down there... + TAHNPOSBEI_SHOP_DIALOG = 10056, -- You don't want to get whipped by those Tonberries, do you? Well, have I got the equipment forrr you! + IFRIT_UNLOCKED = 10525, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. + NOMAD_MOOGLE_DIALOG = 10593, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. + MAMERIE_SHOP_DIALOG = 10617, -- Is there something you require? + EVISCERATION_LEARNED = 10654, -- You have learned the weapon skill Evisceration! + RETRIEVE_DIALOG_ID = 11004, -- You retrieve from the porter moogle's care. + COMMON_SENSE_SURVIVAL = 11862, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/King_Ranperres_Tomb/IDs.lua b/scripts/zones/King_Ranperres_Tomb/IDs.lua index eff14df9a51..27082a25783 100644 --- a/scripts/zones/King_Ranperres_Tomb/IDs.lua +++ b/scripts/zones/King_Ranperres_Tomb/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.KING_RANPERRES_TOMB] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - CHEST_UNLOCKED = 7287, -- You unlock the chest! - SENSE_SOMETHING_EVIL = 7314, -- You sense something evil. - HEAVY_DOOR = 7315, -- It is a solid stone door. - PLAYER_OBTAINS_ITEM = 8253, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8254, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8255, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8256, -- You already possess that temporary item. - NO_COMBINATION = 8261, -- You were unable to enter a combination. - REGIME_REGISTERED = 10339, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 11426, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + CHEST_UNLOCKED = 7287, -- You unlock the chest! + SENSE_SOMETHING_EVIL = 7314, -- You sense something evil. + HEAVY_DOOR = 7315, -- It is a solid stone door. + PLAYER_OBTAINS_ITEM = 8253, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8254, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8255, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8256, -- You already possess that temporary item. + NO_COMBINATION = 8261, -- You were unable to enter a combination. + REGIME_REGISTERED = 10339, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 11426, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Konschtat_Highlands/IDs.lua b/scripts/zones/Konschtat_Highlands/IDs.lua index e4b3392962f..bfbd51e234c 100644 --- a/scripts/zones/Konschtat_Highlands/IDs.lua +++ b/scripts/zones/Konschtat_Highlands/IDs.lua @@ -10,52 +10,53 @@ zones[xi.zone.KONSCHTAT_HIGHLANDS] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - ALREADY_OBTAINED_TELE = 7216, -- You already possess the gate crystal for this telepoint. - DIG_THROW_AWAY = 7233, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7235, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7301, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - SIGNPOST3 = 7391, -- North: Valkurm Dunes South: North Gustaberg East: Gusgen Mines, Pashhow Marshlands - SIGNPOST2 = 7392, -- North: Pashhow Marshlands West: Valkurm Dunes, North Gustaberg Southeast: Gusgen Mines - SIGNPOST_DIALOG_1 = 7393, -- North: Valkurm Dunes South: To Gustaberg - SIGNPOST_DIALOG_2 = 7394, -- You see something stuck behind the signpost. - SOMETHING_BURIED_HERE = 7395, -- Something has been buried here. - BLACKENED_SPOT_ON_GROUND = 7455, -- There is a blackened spot on the ground... - BLACKENED_SHOULD_PLACE = 7456, -- This is the blackened spot you were told about. You should place here. - PLACE_BLACKENED_SPOT = 7457, -- You place on the blackened spot. - BLACKENED_NOTHING_HAPPENS = 7458, -- You place on the blackened spot, but nothing happens. - BLACKENED_MUST_BE_CLOSER = 7459, -- You have to be closer to place anything on the blackened spot. - NOT_THE_TIME_FOR_THAT = 7468, -- This is not the time for that! - TELEPOINT_HAS_BEEN_SHATTERED = 7495, -- The telepoint has been shattered into a thousand pieces... - MEMORIES_SEALED_OFF = 7608, -- A portion of your memories has been sealed off. - PLAYER_OBTAINS_ITEM = 7613, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7614, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7615, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7616, -- You already possess that temporary item. - NO_COMBINATION = 7621, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 7652, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 9799, -- New training regime registered! - VOIDWALKER_NO_MOB = 10972, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 10973, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 10974, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 10975, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 10977, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 10978, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 10979, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 10980, -- Obtained key item: ! - LEARNS_SPELL = 11916, -- learns ! - UNCANNY_SENSATION = 11918, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 11925, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + ALREADY_OBTAINED_TELE = 7216, -- You already possess the gate crystal for this telepoint. + DIG_THROW_AWAY = 7233, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7235, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7301, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + SIGNPOST3 = 7391, -- North: Valkurm Dunes South: North Gustaberg East: Gusgen Mines, Pashhow Marshlands + SIGNPOST2 = 7392, -- North: Pashhow Marshlands West: Valkurm Dunes, North Gustaberg Southeast: Gusgen Mines + SIGNPOST_DIALOG_1 = 7393, -- North: Valkurm Dunes South: To Gustaberg + SIGNPOST_DIALOG_2 = 7394, -- You see something stuck behind the signpost. + SOMETHING_BURIED_HERE = 7395, -- Something has been buried here. + BLACKENED_SPOT_ON_GROUND = 7455, -- There is a blackened spot on the ground... + BLACKENED_SHOULD_PLACE = 7456, -- This is the blackened spot you were told about. You should place here. + PLACE_BLACKENED_SPOT = 7457, -- You place on the blackened spot. + BLACKENED_NOTHING_HAPPENS = 7458, -- You place on the blackened spot, but nothing happens. + BLACKENED_MUST_BE_CLOSER = 7459, -- You have to be closer to place anything on the blackened spot. + NOT_THE_TIME_FOR_THAT = 7468, -- This is not the time for that! + TELEPOINT_HAS_BEEN_SHATTERED = 7495, -- The telepoint has been shattered into a thousand pieces... + MEMORIES_SEALED_OFF = 7608, -- A portion of your memories has been sealed off. + PLAYER_OBTAINS_ITEM = 7613, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7614, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7615, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7616, -- You already possess that temporary item. + NO_COMBINATION = 7621, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 7652, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 9799, -- New training regime registered! + VOIDWALKER_NO_MOB = 10972, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 10973, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 10974, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 10975, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 10977, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 10978, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 10979, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 10980, -- Obtained key item: ! + LEARNS_SPELL = 11916, -- learns ! + UNCANNY_SENSATION = 11918, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 11925, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Korroloka_Tunnel/IDs.lua b/scripts/zones/Korroloka_Tunnel/IDs.lua index d69875356b8..a8af1e7f4b2 100644 --- a/scripts/zones/Korroloka_Tunnel/IDs.lua +++ b/scripts/zones/Korroloka_Tunnel/IDs.lua @@ -10,31 +10,32 @@ zones[xi.zone.KORROLOKA_TUNNEL] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - SENSE_OF_BOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - CONQUEST_BASE = 7157, -- Tallying conquest results... - MINING_IS_POSSIBLE_HERE = 7316, -- Mining is possible here if you have . - ENTERED_SPRING = 7332, -- The water in this spring is pleasant and tepid. This looks like a nice place to warm yourself up. - LEFT_SPRING_EARLY = 7333, -- You are not warm enough yet. You will need to spend more time than that in the spring to get your body heated up. - LEFT_SPRING_CLEAN = 7334, -- Your whole body is piping hot, and the smell of the Rafflesia pollen is gone! - MORION_WORM_1 = 7337, -- It appears to be a hole made by some kind of animal. Fragments of iron ore are scattered around the area... - REGIME_REGISTERED = 9465, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 10517, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 10518, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 10519, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 10520, -- You already possess that temporary item. - NO_COMBINATION = 10525, -- You were unable to enter a combination. - COMMON_SENSE_SURVIVAL = 10549, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + SENSE_OF_BOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + CONQUEST_BASE = 7157, -- Tallying conquest results... + MINING_IS_POSSIBLE_HERE = 7316, -- Mining is possible here if you have . + ENTERED_SPRING = 7332, -- The water in this spring is pleasant and tepid. This looks like a nice place to warm yourself up. + LEFT_SPRING_EARLY = 7333, -- You are not warm enough yet. You will need to spend more time than that in the spring to get your body heated up. + LEFT_SPRING_CLEAN = 7334, -- Your whole body is piping hot, and the smell of the Rafflesia pollen is gone! + MORION_WORM_1 = 7337, -- It appears to be a hole made by some kind of animal. Fragments of iron ore are scattered around the area... + REGIME_REGISTERED = 9465, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 10517, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 10518, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 10519, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 10520, -- You already possess that temporary item. + NO_COMBINATION = 10525, -- You were unable to enter a combination. + COMMON_SENSE_SURVIVAL = 10549, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Kuftal_Tunnel/IDs.lua b/scripts/zones/Kuftal_Tunnel/IDs.lua index 2614fa8cbec..30eff0a23f9 100644 --- a/scripts/zones/Kuftal_Tunnel/IDs.lua +++ b/scripts/zones/Kuftal_Tunnel/IDs.lua @@ -10,30 +10,31 @@ zones[xi.zone.KUFTAL_TUNNEL] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - CHEST_UNLOCKED = 7324, -- You unlock the chest! - DO_NOT_SEE_ANYTHING = 7339, -- You do not see anything out of the ordinary. - FELL = 7342, -- The piece of wood fell off the cliff! - EVIL = 7343, -- You sense an evil presence... - FISHBONES = 7357, -- Fish bones lie scattered about the area... - SENSE_OMINOUS_PRESENCE = 7359, -- You sense an ominous presence... - REGIME_REGISTERED = 10343, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 11395, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 11396, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 11397, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 11398, -- You already possess that temporary item. - NO_COMBINATION = 11403, -- You were unable to enter a combination. - COMMON_SENSE_SURVIVAL = 11427, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + CHEST_UNLOCKED = 7324, -- You unlock the chest! + DO_NOT_SEE_ANYTHING = 7339, -- You do not see anything out of the ordinary. + FELL = 7342, -- The piece of wood fell off the cliff! + EVIL = 7343, -- You sense an evil presence... + FISHBONES = 7357, -- Fish bones lie scattered about the area... + SENSE_OMINOUS_PRESENCE = 7359, -- You sense an ominous presence... + REGIME_REGISTERED = 10343, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 11395, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 11396, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 11397, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 11398, -- You already possess that temporary item. + NO_COMBINATION = 11403, -- You were unable to enter a combination. + COMMON_SENSE_SURVIVAL = 11427, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/LaLoff_Amphitheater/IDs.lua b/scripts/zones/LaLoff_Amphitheater/IDs.lua index c65d6f1b08b..7d4253356fc 100644 --- a/scripts/zones/LaLoff_Amphitheater/IDs.lua +++ b/scripts/zones/LaLoff_Amphitheater/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.LALOFF_AMPHITHEATER] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/La_Theine_Plateau/IDs.lua b/scripts/zones/La_Theine_Plateau/IDs.lua index 03de20116d2..58ef29eeaaf 100644 --- a/scripts/zones/La_Theine_Plateau/IDs.lua +++ b/scripts/zones/La_Theine_Plateau/IDs.lua @@ -10,56 +10,57 @@ zones[xi.zone.LA_THEINE_PLATEAU] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - ALREADY_OBTAINED_TELE = 7216, -- You already possess the gate crystal for this telepoint. - FISHING_MESSAGE_OFFSET = 7220, -- You can't fish here. - DIG_THROW_AWAY = 7233, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7235, -- You dig and you dig, but find nothing. - RESCUE_DRILL = 7392, -- Rescue drills in progress. Try to stay out of the way. - FAURBELLANT_1 = 7432, -- Greetings. traveler. Sorry, I've little time to chat. I must focus on my prayer. - FAURBELLANT_2 = 7433, -- Ah, the ! Thank you for making such a long journey to bring this! May the Gates of Paradise open to all. - FAURBELLANT_3 = 7434, -- Please deliver that to the high priest in the San d'Oria Cathedral. - FAURBELLANT_4 = 7435, -- My thanks again for your services. May the Gates of Paradise open to all. - UNLOCK_SUMMONER = 7587, -- You can now become a summoner. - UNLOCK_CARBUNCLE = 7588, -- You can now summon Carbuncle. - CANNOT_REMOVE_FRAG = 7602, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... - ALREADY_OBTAINED_FRAG = 7603, -- You have already obtained this monument's . Try searching for another. - ALREADY_HAVE_ALL_FRAGS = 7604, -- You have obtained all of the fragments. You must hurry to the ruins of the ancient shrine! - FOUND_ALL_FRAGS = 7605, -- You have obtained ! You now have all 8 fragments of light! - ZILART_MONUMENT = 7606, -- It is an ancient Zilart monument. - ITEMS_ITEMS_LA_LA = 7751, -- You can hear a strange voice... Items, items, la la la la la - GOBLIN_SLIPPED_AWAY = 7757, -- The Goblin slipped away when you were not looking... - TELEPOINT_HAS_BEEN_SHATTERED = 7767, -- The telepoint has been shattered into a thousand pieces... - BROKEN_EGG = 7838, -- There is a broken egg on the ground here. Perhaps there is a nest in the boughs of this tree. - CHOCOBO_TRACKS = 7899, -- There are chocobo tracks on the ground here. - PLAYER_OBTAINS_ITEM = 7918, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7919, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7920, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7921, -- You already possess that temporary item. - NO_COMBINATION = 7926, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 7957, -- The monster fades before your eyes, a look of disappointment on its face. - MEMORIES_SEALED_OFF = 8082, -- A portion of your memories has been sealed off. - REGIME_REGISTERED = 10137, -- New training regime registered! - VOIDWALKER_NO_MOB = 11310, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 11311, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 11312, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 11313, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 11315, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 11316, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 11317, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 11318, -- Obtained key item: ! - LEARNS_SPELL = 12336, -- learns ! - UNCANNY_SENSATION = 12338, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 12345, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + ALREADY_OBTAINED_TELE = 7216, -- You already possess the gate crystal for this telepoint. + FISHING_MESSAGE_OFFSET = 7220, -- You can't fish here. + DIG_THROW_AWAY = 7233, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7235, -- You dig and you dig, but find nothing. + RESCUE_DRILL = 7392, -- Rescue drills in progress. Try to stay out of the way. + FAURBELLANT_1 = 7432, -- Greetings. traveler. Sorry, I've little time to chat. I must focus on my prayer. + FAURBELLANT_2 = 7433, -- Ah, the ! Thank you for making such a long journey to bring this! May the Gates of Paradise open to all. + FAURBELLANT_3 = 7434, -- Please deliver that to the high priest in the San d'Oria Cathedral. + FAURBELLANT_4 = 7435, -- My thanks again for your services. May the Gates of Paradise open to all. + UNLOCK_SUMMONER = 7587, -- You can now become a summoner. + UNLOCK_CARBUNCLE = 7588, -- You can now summon Carbuncle. + CANNOT_REMOVE_FRAG = 7602, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... + ALREADY_OBTAINED_FRAG = 7603, -- You have already obtained this monument's . Try searching for another. + ALREADY_HAVE_ALL_FRAGS = 7604, -- You have obtained all of the fragments. You must hurry to the ruins of the ancient shrine! + FOUND_ALL_FRAGS = 7605, -- You have obtained ! You now have all 8 fragments of light! + ZILART_MONUMENT = 7606, -- It is an ancient Zilart monument. + ITEMS_ITEMS_LA_LA = 7751, -- You can hear a strange voice... Items, items, la la la la la + GOBLIN_SLIPPED_AWAY = 7757, -- The Goblin slipped away when you were not looking... + TELEPOINT_HAS_BEEN_SHATTERED = 7767, -- The telepoint has been shattered into a thousand pieces... + BROKEN_EGG = 7838, -- There is a broken egg on the ground here. Perhaps there is a nest in the boughs of this tree. + CHOCOBO_TRACKS = 7899, -- There are chocobo tracks on the ground here. + PLAYER_OBTAINS_ITEM = 7918, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7919, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7920, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7921, -- You already possess that temporary item. + NO_COMBINATION = 7926, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 7957, -- The monster fades before your eyes, a look of disappointment on its face. + MEMORIES_SEALED_OFF = 8082, -- A portion of your memories has been sealed off. + REGIME_REGISTERED = 10137, -- New training regime registered! + VOIDWALKER_NO_MOB = 11310, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 11311, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 11312, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 11313, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 11315, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 11316, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 11317, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 11318, -- Obtained key item: ! + LEARNS_SPELL = 12336, -- learns ! + UNCANNY_SENSATION = 12338, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 12345, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/La_Vaule_[S]/IDs.lua b/scripts/zones/La_Vaule_[S]/IDs.lua index 4da32f893d0..9281d2ff8a2 100644 --- a/scripts/zones/La_Vaule_[S]/IDs.lua +++ b/scripts/zones/La_Vaule_[S]/IDs.lua @@ -10,20 +10,21 @@ zones[xi.zone.LA_VAULE_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - GATE_IS_LOCKED = 7203, -- The gate is locked. - DOOR_IS_LOCKED = 7724, -- The door is locked. - PARTY_MEMBERS_HAVE_FALLEN = 8029, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 8036, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - GATHERED_DAWNDROPS_LIGHT = 8342, -- The gathered dawndrops unleash a brilliant light, melding together to form ! - RETRACED_ALL_JUNCTIONS = 8343, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + GATE_IS_LOCKED = 7203, -- The gate is locked. + DOOR_IS_LOCKED = 7724, -- The door is locked. + PARTY_MEMBERS_HAVE_FALLEN = 8029, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 8036, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + GATHERED_DAWNDROPS_LIGHT = 8342, -- The gathered dawndrops unleash a brilliant light, melding together to form ! + RETRACED_ALL_JUNCTIONS = 8343, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. }, mob = { diff --git a/scripts/zones/Labyrinth_of_Onzozo/IDs.lua b/scripts/zones/Labyrinth_of_Onzozo/IDs.lua index ca610809723..8a2eaf52841 100644 --- a/scripts/zones/Labyrinth_of_Onzozo/IDs.lua +++ b/scripts/zones/Labyrinth_of_Onzozo/IDs.lua @@ -10,27 +10,28 @@ zones[xi.zone.LABYRINTH_OF_ONZOZO] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - CHEST_UNLOCKED = 7324, -- You unlock the chest! - SENSE_OMINOUS_PRESENCE = 7340, -- You sense an ominous presence... - REGIME_REGISTERED = 9396, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 10448, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 10449, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 10450, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 10451, -- You already possess that temporary item. - NO_COMBINATION = 10456, -- You were unable to enter a combination. - COMMON_SENSE_SURVIVAL = 10480, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + CHEST_UNLOCKED = 7324, -- You unlock the chest! + SENSE_OMINOUS_PRESENCE = 7340, -- You sense an ominous presence... + REGIME_REGISTERED = 9396, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 10448, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 10449, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 10450, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 10451, -- You already possess that temporary item. + NO_COMBINATION = 10456, -- You were unable to enter a combination. + COMMON_SENSE_SURVIVAL = 10480, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Leafallia/IDs.lua b/scripts/zones/Leafallia/IDs.lua index 489327b8f6f..d3653d26fb3 100644 --- a/scripts/zones/Leafallia/IDs.lua +++ b/scripts/zones/Leafallia/IDs.lua @@ -10,18 +10,19 @@ zones[xi.zone.LEAFALLIA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - LOST_KEYITEM = 6394, -- Lost key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7193, -- Tallying conquest results... - RINGS_TOO_NUMEROUS = 7403, -- The rings on this stump are too numerous to count. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + LOST_KEYITEM = 6394, -- Lost key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7193, -- Tallying conquest results... + RINGS_TOO_NUMEROUS = 7403, -- The rings on this stump are too numerous to count. }, mob = { diff --git a/scripts/zones/Lebros_Cavern/IDs.lua b/scripts/zones/Lebros_Cavern/IDs.lua index 2c2df432a8c..52d1cb25f61 100644 --- a/scripts/zones/Lebros_Cavern/IDs.lua +++ b/scripts/zones/Lebros_Cavern/IDs.lua @@ -11,28 +11,29 @@ zones[xi.zone.LEBROS_CAVERN] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - ITEMS_OBTAINED = 6399, -- You obtain ! - MINE_COUNTDOWN = 6982, -- ... - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - TEMP_ITEM = 7215, -- Obtained temporary item: ! - PLAYER_OBTAINS_ITEM = 7216, -- obtains ! - ASSAULT_START_OFFSET = 7351, -- Max MP Down removed for . - TIME_TO_COMPLETE = 7412, -- You have [minute/minutes] (Earth time) to complete this mission. - MISSION_FAILED = 7413, -- The mission has failed. Leaving area. - RUNE_UNLOCKED_POS = 7414, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). - ASSAULT_POINTS_OBTAINED = 7416, -- You gain [Assault point/Assault points]! - TIME_REMAINING_MINUTES = 7417, -- ime remaining: [minute/minutes] (Earth time). - TIME_REMAINING_SECONDS = 7418, -- ime remaining: [second/seconds] (Earth time). - PARTY_FALLEN = 7420, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + ITEMS_OBTAINED = 6399, -- You obtain ! + MINE_COUNTDOWN = 6982, -- ... + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + TEMP_ITEM = 7215, -- Obtained temporary item: ! + PLAYER_OBTAINS_ITEM = 7216, -- obtains ! + ASSAULT_START_OFFSET = 7351, -- Max MP Down removed for . + TIME_TO_COMPLETE = 7412, -- You have [minute/minutes] (Earth time) to complete this mission. + MISSION_FAILED = 7413, -- The mission has failed. Leaving area. + RUNE_UNLOCKED_POS = 7414, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). + ASSAULT_POINTS_OBTAINED = 7416, -- You gain [Assault point/Assault points]! + TIME_REMAINING_MINUTES = 7417, -- ime remaining: [minute/minutes] (Earth time). + TIME_REMAINING_SECONDS = 7418, -- ime remaining: [second/seconds] (Earth time). + PARTY_FALLEN = 7420, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. }, mob = diff --git a/scripts/zones/Leujaoam_Sanctum/IDs.lua b/scripts/zones/Leujaoam_Sanctum/IDs.lua index bc47d5d8ce1..c1b071932f4 100644 --- a/scripts/zones/Leujaoam_Sanctum/IDs.lua +++ b/scripts/zones/Leujaoam_Sanctum/IDs.lua @@ -11,26 +11,27 @@ zones[xi.zone.LEUJAOAM_SANCTUM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PLAYER_OBTAINS_ITEM = 7316, -- obtains ! - ASSAULT_START_OFFSET = 7451, -- Max MP Down removed for . - TIME_TO_COMPLETE = 7512, -- You have [minute/minutes] (Earth time) to complete this mission. - MISSION_FAILED = 7513, -- The mission has failed. Leaving area. - RUNE_UNLOCKED_POS = 7514, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). - ASSAULT_POINTS_OBTAINED = 7516, -- You gain [Assault point/Assault points]! - TIME_REMAINING_MINUTES = 7517, -- ime remaining: [minute/minutes] (Earth time). - TIME_REMAINING_SECONDS = 7518, -- ime remaining: [second/seconds] (Earth time). - PARTY_FALLEN = 7520, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PLAYER_OBTAINS_ITEM = 7316, -- obtains ! + ASSAULT_START_OFFSET = 7451, -- Max MP Down removed for . + TIME_TO_COMPLETE = 7512, -- You have [minute/minutes] (Earth time) to complete this mission. + MISSION_FAILED = 7513, -- The mission has failed. Leaving area. + RUNE_UNLOCKED_POS = 7514, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). + ASSAULT_POINTS_OBTAINED = 7516, -- You gain [Assault point/Assault points]! + TIME_REMAINING_MINUTES = 7517, -- ime remaining: [minute/minutes] (Earth time). + TIME_REMAINING_SECONDS = 7518, -- ime remaining: [second/seconds] (Earth time). + PARTY_FALLEN = 7520, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. }, mob = diff --git a/scripts/zones/Lower_Delkfutts_Tower/IDs.lua b/scripts/zones/Lower_Delkfutts_Tower/IDs.lua index 9693873e1d6..f8b92df5890 100644 --- a/scripts/zones/Lower_Delkfutts_Tower/IDs.lua +++ b/scripts/zones/Lower_Delkfutts_Tower/IDs.lua @@ -21,6 +21,7 @@ zones[xi.zone.LOWER_DELKFUTTS_TOWER] = CARRIED_OVER_POINTS = 7190, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7191, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7192, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7212, -- Your party is unable to participate because certain members' levels are restricted. FISHING_MESSAGE_OFFSET = 7246, -- You can't fish here. SOMETHING_HUGE_BEARING_DOWN = 7494, -- Something huge is bearing down upon you! PLAYER_OBTAINS_ITEM = 8629, -- obtains ! diff --git a/scripts/zones/Lower_Jeuno/IDs.lua b/scripts/zones/Lower_Jeuno/IDs.lua index be457019e6b..957e56c124c 100644 --- a/scripts/zones/Lower_Jeuno/IDs.lua +++ b/scripts/zones/Lower_Jeuno/IDs.lua @@ -10,67 +10,68 @@ zones[xi.zone.LOWER_JEUNO] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - YOU_MUST_WAIT_ANOTHER_N_DAYS = 6426, -- You must wait another [day/days] to perform that action. - CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - HOMEPOINT_SET = 6525, -- Home point set! - CONQUEST_BASE = 6550, -- Tallying conquest results... - MOG_LOCKER_OFFSET = 6819, -- Your Mog Locker lease is valid until , kupo. - FISHING_MESSAGE_OFFSET = 6934, -- You can't fish here. - MYTHIC_LEARNED = 7140, -- You have learned the weapon skill [Nothing/King's Justice/Ascetic's Fury/Mystic Boon/Vidohunir/Death Blossom/Mandalic Stab/Atonement/Insurgency/Primal Rend/Mordant Rime/Trueflight/Tachi: Rana/Blade: Kamu/Drakesbane/Garland of Bliss/Expiacion/Leaden Salute/Stringing Pummel/Pyrrhic Kleos/Omniscience]! - JUNK_SHOP_DIALOG = 7141, -- Hey, how ya doin'? We got the best junk in town. - WAAG_DEEG_SHOP_DIALOG = 7142, -- Welcome to Waag-Deeg's Magic Shop. - ORTHONS_GARMENT_SHOP_DIALOG = 7143, -- Welcome to Othon's Garments. - YOSKOLO_SHOP_DIALOG = 7144, -- Welcome to the Merry Minstrel's Meadhouse. What'll it be? - GEMS_BY_KSHAMA_SHOP_DIALOG = 7145, -- Here at Gems by Kshama, we aim to please. - RHIMONNE_SHOP_DIALOG = 7148, -- Howdy! Thanks for visiting the Chocobo Shop! - GUIDE_STONE = 7150, -- Up: Upper Jeuno (facing San d'Oria) Down: Port Jeuno (facing Windurst) - ALDO_DIALOG = 7155, -- Hi. I'm Aldo, head of Tenshodo. We deal in things you can't buy anywhere else. Take your time and have a look around. - LAMP_MSG_OFFSET = 7259, -- All the lamps are lit. - ZAUKO_IS_RECRUITING = 7267, -- Zauko is recruiting an adventurer to light the lamps. - CHOCOBO_DIALOG = 7329, -- Hmph. - MERTAIRE_DEFAULT = 7435, -- Who are you? Leave me alone! - ITS_LOCKED = 7597, -- It's locked. - PAWKRIX_SHOP_DIALOG = 7645, -- Hey, we're fixin' up some stew. Gobbie food's good food! - AMALASANDA_SHOP_DIALOG = 7693, -- Welcome to the Tenshodo. You want something, we got it. We got all kinds of special merchandise you won't find anywhere else! - AKAMAFULA_SHOP_DIALOG = 7694, -- We ain't cheap, but you get what you pay for! Take your time, have a look around, see if there's somethin' you like. - INVENTORY_INCREASED = 7792, -- Your inventory capacity has increased. - ITEM_DELIVERY_DIALOG = 7793, -- Now offering quick and easy delivery of packages to residences everywhere! - MERTAIRE_RING = 8054, -- So, what did you do with that ring? Maybe it's valuable. I'd ask a collector if I were you. Of course, he might just say it's worthless... - CONQUEST = 8066, -- You've earned conquest points! - PARIKE_PORANKE_DIALOG = 8964, -- All these people running back and forth... There have to be a few that have munched down more mithkabobs than they can manage. (And if I don't hand in this report to the Orastery soon... Ulp!) - PARIKE_PORANKE_1 = 8965, -- Hey you! Belly bursting? Intestines inflating? Bladder bulging? I can tell by the notch on your belt that you've been overindulging yourself in culinary delights. - PARIKE_PORANKE_2 = 8968, -- I mean, this is a new era. If somebody wants to go around with their flabby-flubber hanging out of their cloaks, they should have every right to do so. If someone wants to walk around town with breath reeking of Kazham pines and roasted sleepshrooms, who am I to stop them? - PARIKE_PORANKE_3 = 8969, -- What? You want me to tend to your tummy trouble? No problem! And don't worry, this won't hurt at all! I'm only going to be flushing your bowels with thousands of tiny lightning bolts. It's all perfectly safe! - PARIKE_PORANKE_4 = 8970, -- Now stand still! You wouldn't want your pelvis to implode, would you? (Let's see... What were those magic words again...?) - PARIKE_PORANKE_5 = 8971, -- Ready? No? Well, too bad! - PARIKE_PORANKE_6 = 8979, -- 's digestive magic skill rises 0.1 points. - PARIKE_PORANKE_7 = 8980, -- 's digestive magic skill rises one level. - PARIKE_PORANKE_8 = 8981, -- Heh heh! I think I'm starting to get the hang of this spellcasting. - PARIKE_PORANKE_9 = 8982, -- Consider this a petite present from your pal Parike-Poranke! - PARIKE_PORANKE_10 = 8986, -- Wait a minute... Don't tell me you came to Parike-Poranke on an empty stomach! This is terrible! The minister will have my head! - PARIKE_PORANKE_12 = 8988, -- Phew! That was close... What were you thinking, crazy adventurer!? - PARIKE_PORANKE_13 = 8991, -- 's all in the name of science skill rises 0.1 points. - PARIKE_PORANKE_14 = 8992, -- 's all in the name of science skill rises one level. - PARIKE_PORANKE_15 = 8993, -- You know, I've learned a lot from my mist--er, I mean, less-than-successful attempts at weight-loss consulting. - PARIKE_PORANKE_16 = 8994, -- To show you my gratitude, let me try out this new spell I thought up yesterday while I was taking a nap! - NO_KEY = 9916, -- You do not have a usable key in your possession. - RETRIEVE_DIALOG_ID = 10196, -- You retrieve from the porter moogle's care. - WAYPOINT_EXAMINE = 10357, -- An enigmatic contrivance hovers in silence... - EXPENDED_KINETIC_UNITS = 10360, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 10361, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 10362, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 10363, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 10364, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 10365, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 10366, -- A surplus of kinetic unit[/s] has been lost to the aether. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + YOU_MUST_WAIT_ANOTHER_N_DAYS = 6426, -- You must wait another [day/days] to perform that action. + CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6451, -- Your party is unable to participate because certain members' levels are restricted. + HOMEPOINT_SET = 6525, -- Home point set! + CONQUEST_BASE = 6550, -- Tallying conquest results... + MOG_LOCKER_OFFSET = 6819, -- Your Mog Locker lease is valid until , kupo. + FISHING_MESSAGE_OFFSET = 6934, -- You can't fish here. + MYTHIC_LEARNED = 7140, -- You have learned the weapon skill [Nothing/King's Justice/Ascetic's Fury/Mystic Boon/Vidohunir/Death Blossom/Mandalic Stab/Atonement/Insurgency/Primal Rend/Mordant Rime/Trueflight/Tachi: Rana/Blade: Kamu/Drakesbane/Garland of Bliss/Expiacion/Leaden Salute/Stringing Pummel/Pyrrhic Kleos/Omniscience]! + JUNK_SHOP_DIALOG = 7141, -- Hey, how ya doin'? We got the best junk in town. + WAAG_DEEG_SHOP_DIALOG = 7142, -- Welcome to Waag-Deeg's Magic Shop. + ORTHONS_GARMENT_SHOP_DIALOG = 7143, -- Welcome to Othon's Garments. + YOSKOLO_SHOP_DIALOG = 7144, -- Welcome to the Merry Minstrel's Meadhouse. What'll it be? + GEMS_BY_KSHAMA_SHOP_DIALOG = 7145, -- Here at Gems by Kshama, we aim to please. + RHIMONNE_SHOP_DIALOG = 7148, -- Howdy! Thanks for visiting the Chocobo Shop! + GUIDE_STONE = 7150, -- Up: Upper Jeuno (facing San d'Oria) Down: Port Jeuno (facing Windurst) + ALDO_DIALOG = 7155, -- Hi. I'm Aldo, head of Tenshodo. We deal in things you can't buy anywhere else. Take your time and have a look around. + LAMP_MSG_OFFSET = 7259, -- All the lamps are lit. + ZAUKO_IS_RECRUITING = 7267, -- Zauko is recruiting an adventurer to light the lamps. + CHOCOBO_DIALOG = 7329, -- Hmph. + MERTAIRE_DEFAULT = 7435, -- Who are you? Leave me alone! + ITS_LOCKED = 7597, -- It's locked. + PAWKRIX_SHOP_DIALOG = 7645, -- Hey, we're fixin' up some stew. Gobbie food's good food! + AMALASANDA_SHOP_DIALOG = 7693, -- Welcome to the Tenshodo. You want something, we got it. We got all kinds of special merchandise you won't find anywhere else! + AKAMAFULA_SHOP_DIALOG = 7694, -- We ain't cheap, but you get what you pay for! Take your time, have a look around, see if there's somethin' you like. + INVENTORY_INCREASED = 7792, -- Your inventory capacity has increased. + ITEM_DELIVERY_DIALOG = 7793, -- Now offering quick and easy delivery of packages to residences everywhere! + MERTAIRE_RING = 8054, -- So, what did you do with that ring? Maybe it's valuable. I'd ask a collector if I were you. Of course, he might just say it's worthless... + CONQUEST = 8066, -- You've earned conquest points! + PARIKE_PORANKE_DIALOG = 8964, -- All these people running back and forth... There have to be a few that have munched down more mithkabobs than they can manage. (And if I don't hand in this report to the Orastery soon... Ulp!) + PARIKE_PORANKE_1 = 8965, -- Hey you! Belly bursting? Intestines inflating? Bladder bulging? I can tell by the notch on your belt that you've been overindulging yourself in culinary delights. + PARIKE_PORANKE_2 = 8968, -- I mean, this is a new era. If somebody wants to go around with their flabby-flubber hanging out of their cloaks, they should have every right to do so. If someone wants to walk around town with breath reeking of Kazham pines and roasted sleepshrooms, who am I to stop them? + PARIKE_PORANKE_3 = 8969, -- What? You want me to tend to your tummy trouble? No problem! And don't worry, this won't hurt at all! I'm only going to be flushing your bowels with thousands of tiny lightning bolts. It's all perfectly safe! + PARIKE_PORANKE_4 = 8970, -- Now stand still! You wouldn't want your pelvis to implode, would you? (Let's see... What were those magic words again...?) + PARIKE_PORANKE_5 = 8971, -- Ready? No? Well, too bad! + PARIKE_PORANKE_6 = 8979, -- 's digestive magic skill rises 0.1 points. + PARIKE_PORANKE_7 = 8980, -- 's digestive magic skill rises one level. + PARIKE_PORANKE_8 = 8981, -- Heh heh! I think I'm starting to get the hang of this spellcasting. + PARIKE_PORANKE_9 = 8982, -- Consider this a petite present from your pal Parike-Poranke! + PARIKE_PORANKE_10 = 8986, -- Wait a minute... Don't tell me you came to Parike-Poranke on an empty stomach! This is terrible! The minister will have my head! + PARIKE_PORANKE_12 = 8988, -- Phew! That was close... What were you thinking, crazy adventurer!? + PARIKE_PORANKE_13 = 8991, -- 's all in the name of science skill rises 0.1 points. + PARIKE_PORANKE_14 = 8992, -- 's all in the name of science skill rises one level. + PARIKE_PORANKE_15 = 8993, -- You know, I've learned a lot from my mist--er, I mean, less-than-successful attempts at weight-loss consulting. + PARIKE_PORANKE_16 = 8994, -- To show you my gratitude, let me try out this new spell I thought up yesterday while I was taking a nap! + NO_KEY = 9916, -- You do not have a usable key in your possession. + RETRIEVE_DIALOG_ID = 10196, -- You retrieve from the porter moogle's care. + WAYPOINT_EXAMINE = 10357, -- An enigmatic contrivance hovers in silence... + EXPENDED_KINETIC_UNITS = 10360, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 10361, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 10362, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 10363, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 10364, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 10365, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 10366, -- A surplus of kinetic unit[/s] has been lost to the aether. }, mob = { diff --git a/scripts/zones/Lufaise_Meadows/IDs.lua b/scripts/zones/Lufaise_Meadows/IDs.lua index 3bf08941ce8..f391c15ae1a 100644 --- a/scripts/zones/Lufaise_Meadows/IDs.lua +++ b/scripts/zones/Lufaise_Meadows/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.LUFAISE_MEADOWS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - CONQUEST = 7225, -- You've earned conquest points! - FISHING_MESSAGE_OFFSET = 7559, -- You can't fish here. - KI_STOLEN = 7688, -- The has been stolen! - LOGGING_IS_POSSIBLE_HERE = 7736, -- Logging is possible here if you have . - SURVEY_THE_SURROUNDINGS = 7743, -- You survey the surroundings but see nothing out of the ordinary. - MURDEROUS_PRESENCE = 7744, -- Wait, you sense a murderous presence...! - YOU_CAN_SEE_FOR_MALMS = 7745, -- You can see for malms in every direction. - SPINE_CHILLING_PRESENCE = 7747, -- You sense a spine-chilling presence! - COMMON_SENSE_SURVIVAL = 8742, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + CONQUEST = 7225, -- You've earned conquest points! + FISHING_MESSAGE_OFFSET = 7559, -- You can't fish here. + KI_STOLEN = 7688, -- The has been stolen! + LOGGING_IS_POSSIBLE_HERE = 7736, -- Logging is possible here if you have . + SURVEY_THE_SURROUNDINGS = 7743, -- You survey the surroundings but see nothing out of the ordinary. + MURDEROUS_PRESENCE = 7744, -- Wait, you sense a murderous presence...! + YOU_CAN_SEE_FOR_MALMS = 7745, -- You can see for malms in every direction. + SPINE_CHILLING_PRESENCE = 7747, -- You sense a spine-chilling presence! + COMMON_SENSE_SURVIVAL = 8742, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Mamook/IDs.lua b/scripts/zones/Mamook/IDs.lua index fcb62919d7c..98c344937b6 100644 --- a/scripts/zones/Mamook/IDs.lua +++ b/scripts/zones/Mamook/IDs.lua @@ -10,23 +10,24 @@ zones[xi.zone.MAMOOK] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - LOGGING_IS_POSSIBLE_HERE = 7539, -- Logging is possible here if you have . - PARTY_MEMBERS_HAVE_FALLEN = 7896, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7903, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - IMPENDING_BATTLE = 8050, -- You feel the rush of impending battle! - NUMEROUS_STRANDS = 8647, -- Numerous strands of hair are scattered all over... - SICKLY_SWEET = 8649, -- A sickly sweet fragrance pervades the air... - DRAWS_NEAR = 8671, -- Something draws near! - COMMON_SENSE_SURVIVAL = 9542, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + LOGGING_IS_POSSIBLE_HERE = 7539, -- Logging is possible here if you have . + PARTY_MEMBERS_HAVE_FALLEN = 7896, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7903, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + IMPENDING_BATTLE = 8050, -- You feel the rush of impending battle! + NUMEROUS_STRANDS = 8647, -- Numerous strands of hair are scattered all over... + SICKLY_SWEET = 8649, -- A sickly sweet fragrance pervades the air... + DRAWS_NEAR = 8671, -- Something draws near! + COMMON_SENSE_SURVIVAL = 9542, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Mamool_Ja_Training_Grounds/IDs.lua b/scripts/zones/Mamool_Ja_Training_Grounds/IDs.lua index ef872fd2dad..277bfd49d15 100644 --- a/scripts/zones/Mamool_Ja_Training_Grounds/IDs.lua +++ b/scripts/zones/Mamool_Ja_Training_Grounds/IDs.lua @@ -10,23 +10,24 @@ zones[xi.zone.MAMOOL_JA_TRAINING_GROUNDS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PLAYER_OBTAINS_ITEM = 7316, -- obtains ! - ASSAULT_START_OFFSET = 7451, -- Max MP Down removed for . - TIME_TO_COMPLETE = 7512, -- You have [minute/minutes] (Earth time) to complete this mission. - MISSION_FAILED = 7513, -- The mission has failed. Leaving area. - RUNE_UNLOCKED_POS = 7514, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). - ASSAULT_POINTS_OBTAINED = 7516, -- You gain [Assault point/Assault points]! - TIME_REMAINING_MINUTES = 7517, -- ime remaining: [minute/minutes] (Earth time). - TIME_REMAINING_SECONDS = 7518, -- ime remaining: [second/seconds] (Earth time). - PARTY_FALLEN = 7520, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. - BRUJEEL_TEXT = 7529, -- Am I glad to see you! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PLAYER_OBTAINS_ITEM = 7316, -- obtains ! + ASSAULT_START_OFFSET = 7451, -- Max MP Down removed for . + TIME_TO_COMPLETE = 7512, -- You have [minute/minutes] (Earth time) to complete this mission. + MISSION_FAILED = 7513, -- The mission has failed. Leaving area. + RUNE_UNLOCKED_POS = 7514, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). + ASSAULT_POINTS_OBTAINED = 7516, -- You gain [Assault point/Assault points]! + TIME_REMAINING_MINUTES = 7517, -- ime remaining: [minute/minutes] (Earth time). + TIME_REMAINING_SECONDS = 7518, -- ime remaining: [second/seconds] (Earth time). + PARTY_FALLEN = 7520, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. + BRUJEEL_TEXT = 7529, -- Am I glad to see you! }, mob = diff --git a/scripts/zones/Manaclipper/IDs.lua b/scripts/zones/Manaclipper/IDs.lua index 42260dd6772..4856a218579 100644 --- a/scripts/zones/Manaclipper/IDs.lua +++ b/scripts/zones/Manaclipper/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.MANACLIPPER] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7227, -- You can't fish here. - KHOTS_CHALAHKO_OFFSET = 7400, -- Ahhh... Isn't it grrreat out here on the open sea!? + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7227, -- You can't fish here. + KHOTS_CHALAHKO_OFFSET = 7400, -- Ahhh... Isn't it grrreat out here on the open sea!? }, mob = { diff --git a/scripts/zones/Maquette_Abdhaljs-Legion_A/IDs.lua b/scripts/zones/Maquette_Abdhaljs-Legion_A/IDs.lua index 18a927f0c66..44aeb3c4a56 100644 --- a/scripts/zones/Maquette_Abdhaljs-Legion_A/IDs.lua +++ b/scripts/zones/Maquette_Abdhaljs-Legion_A/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.MAQUETTE_ABDHALJS_LEGION_A] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Maquette_Abdhaljs-Legion_B/IDs.lua b/scripts/zones/Maquette_Abdhaljs-Legion_B/IDs.lua index 95bb5e5b7f7..10a3e724844 100644 --- a/scripts/zones/Maquette_Abdhaljs-Legion_B/IDs.lua +++ b/scripts/zones/Maquette_Abdhaljs-Legion_B/IDs.lua @@ -10,9 +10,10 @@ zones[xi.zone.MAQUETTE_ABDHALJS_LEGION_B] = { text = { - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Marjami_Ravine/IDs.lua b/scripts/zones/Marjami_Ravine/IDs.lua index da7003e394a..24d82406f6c 100644 --- a/scripts/zones/Marjami_Ravine/IDs.lua +++ b/scripts/zones/Marjami_Ravine/IDs.lua @@ -10,28 +10,29 @@ zones[xi.zone.MARJAMI_RAVINE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BAYLD_OBTAINED = 7007, -- You have obtained bayld! - YOU_HAVE_LEARNED = 7015, -- You have learned ! - WAYPOINT_ATTUNED = 7694, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3/ at Frontier Bivouac #4]! - EXPENDED_KINETIC_UNITS = 7705, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 7706, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 7707, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 7708, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 7709, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 7710, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 7711, -- A surplus of kinetic unit[/s] has been lost to the aether. - LEATHER_SCRAPS_STREWN = 7733, -- Leather scraps are strewn about the ground. - HOMEPOINT_SET = 7876, -- Home point set! - LEARNS_SPELL = 8177, -- learns ! - UNCANNY_SENSATION = 8179, -- You are assaulted by an uncanny sensation. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + BAYLD_OBTAINED = 7007, -- You have obtained bayld! + YOU_HAVE_LEARNED = 7015, -- You have learned ! + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WAYPOINT_ATTUNED = 7694, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3/ at Frontier Bivouac #4]! + EXPENDED_KINETIC_UNITS = 7705, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 7706, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 7707, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 7708, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 7709, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 7710, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 7711, -- A surplus of kinetic unit[/s] has been lost to the aether. + LEATHER_SCRAPS_STREWN = 7733, -- Leather scraps are strewn about the ground. + HOMEPOINT_SET = 7876, -- Home point set! + LEARNS_SPELL = 8177, -- learns ! + UNCANNY_SENSATION = 8179, -- You are assaulted by an uncanny sensation. }, mob = { diff --git a/scripts/zones/Maze_of_Shakhrami/IDs.lua b/scripts/zones/Maze_of_Shakhrami/IDs.lua index dce8f7acd7a..f629d40648c 100644 --- a/scripts/zones/Maze_of_Shakhrami/IDs.lua +++ b/scripts/zones/Maze_of_Shakhrami/IDs.lua @@ -10,35 +10,36 @@ zones[xi.zone.MAZE_OF_SHAKHRAMI] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - FOSSIL_EXTRACTED = 7057, -- A large fossil has been excavated from here. - NOTHING_FOSSIL = 7058, -- It looks like a rock with fossils embedded in it. Nothing out of the ordinary. - NO_NEED_INVESTIGATE = 7062, -- There is no need to investigate it any further. - JUST_A_ROCK = 7065, -- It is just a rock. There is no need to investigate it. - CONQUEST_BASE = 7085, -- Tallying conquest results... - DEVICE_NOT_WORKING = 7258, -- The device is not working. - SYS_OVERLOAD = 7267, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. - YOU_LOST_THE = 7272, -- You lost the . - CHEST_UNLOCKED = 7363, -- You unlock the chest! - MINING_IS_POSSIBLE_HERE = 7371, -- Mining is possible here if you have . - ITEMS_ITEMS_LA_LA = 7381, -- You can hear a strange voice... Items, items, la la la la la - GOBLIN_SLIPPED_AWAY = 7387, -- The Goblin slipped away when you were not looking... - PLAYER_OBTAINS_ITEM = 8271, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8272, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8273, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8274, -- You already possess that temporary item. - NO_COMBINATION = 8279, -- You were unable to enter a combination. - REGIME_REGISTERED = 10357, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 11429, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FOSSIL_EXTRACTED = 7057, -- A large fossil has been excavated from here. + NOTHING_FOSSIL = 7058, -- It looks like a rock with fossils embedded in it. Nothing out of the ordinary. + NO_NEED_INVESTIGATE = 7062, -- There is no need to investigate it any further. + JUST_A_ROCK = 7065, -- It is just a rock. There is no need to investigate it. + CONQUEST_BASE = 7085, -- Tallying conquest results... + DEVICE_NOT_WORKING = 7258, -- The device is not working. + SYS_OVERLOAD = 7267, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. + YOU_LOST_THE = 7272, -- You lost the . + CHEST_UNLOCKED = 7363, -- You unlock the chest! + MINING_IS_POSSIBLE_HERE = 7371, -- Mining is possible here if you have . + ITEMS_ITEMS_LA_LA = 7381, -- You can hear a strange voice... Items, items, la la la la la + GOBLIN_SLIPPED_AWAY = 7387, -- The Goblin slipped away when you were not looking... + PLAYER_OBTAINS_ITEM = 8271, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8272, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8273, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8274, -- You already possess that temporary item. + NO_COMBINATION = 8279, -- You were unable to enter a combination. + REGIME_REGISTERED = 10357, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 11429, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Meriphataud_Mountains/IDs.lua b/scripts/zones/Meriphataud_Mountains/IDs.lua index a334cc72dd5..cde033fa485 100644 --- a/scripts/zones/Meriphataud_Mountains/IDs.lua +++ b/scripts/zones/Meriphataud_Mountains/IDs.lua @@ -10,42 +10,43 @@ zones[xi.zone.MERIPHATAUD_MOUNTAINS] = { text = { - NOTHING_HAPPENS = 141, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - KEYITEM_LOST = 6416, -- Lost key item: . - FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7079, -- Tallying conquest results... - BEASTMEN_BANNER = 7160, -- There is a beastmen's banner. - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7319, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - NOTHING_FOUND = 7496, -- You find nothing. - CONQUEST = 7908, -- You've earned conquest points! - ITEMS_ITEMS_LA_LA = 8293, -- You can hear a strange voice... Items, items, la la la la la - GOBLIN_SLIPPED_AWAY = 8299, -- The Goblin slipped away when you were not looking... - PLAYER_OBTAINS_ITEM = 8356, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8357, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8358, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8359, -- You already possess that temporary item. - NO_COMBINATION = 8364, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 8395, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 10604, -- New training regime registered! - VOIDWALKER_NO_MOB = 11723, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 11724, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 11725, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 11726, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 11728, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 11729, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 11730, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 11731, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 12633, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 141, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + KEYITEM_LOST = 6416, -- Lost key item: . + FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7079, -- Tallying conquest results... + BEASTMEN_BANNER = 7160, -- There is a beastmen's banner. + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7319, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + NOTHING_FOUND = 7496, -- You find nothing. + CONQUEST = 7908, -- You've earned conquest points! + ITEMS_ITEMS_LA_LA = 8293, -- You can hear a strange voice... Items, items, la la la la la + GOBLIN_SLIPPED_AWAY = 8299, -- The Goblin slipped away when you were not looking... + PLAYER_OBTAINS_ITEM = 8356, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8357, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8358, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8359, -- You already possess that temporary item. + NO_COMBINATION = 8364, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 8395, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 10604, -- New training regime registered! + VOIDWALKER_NO_MOB = 11723, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 11724, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 11725, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 11726, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 11728, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 11729, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 11730, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 11731, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 12633, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Meriphataud_Mountains_[S]/IDs.lua b/scripts/zones/Meriphataud_Mountains_[S]/IDs.lua index 685a1dc1482..3553f730f7a 100644 --- a/scripts/zones/Meriphataud_Mountains_[S]/IDs.lua +++ b/scripts/zones/Meriphataud_Mountains_[S]/IDs.lua @@ -10,25 +10,26 @@ zones[xi.zone.MERIPHATAUD_MOUNTAINS_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - ALREADY_OBTAINED_TELE = 7599, -- You already possess the gate crystal for this telepoint. - VOIDWALKER_DESPAWN = 7868, -- The monster fades before your eyes, a look of disappointment on its face. - VOIDWALKER_NO_MOB = 7915, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 7916, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 7917, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 7918, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 7920, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 7921, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 7922, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 7923, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 8948, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + ALREADY_OBTAINED_TELE = 7599, -- You already possess the gate crystal for this telepoint. + VOIDWALKER_DESPAWN = 7868, -- The monster fades before your eyes, a look of disappointment on its face. + VOIDWALKER_NO_MOB = 7915, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 7916, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 7917, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 7918, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 7920, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 7921, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 7922, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 7923, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 8948, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Metalworks/IDs.lua b/scripts/zones/Metalworks/IDs.lua index 4ef1c67a3e3..d1c227a719c 100644 --- a/scripts/zones/Metalworks/IDs.lua +++ b/scripts/zones/Metalworks/IDs.lua @@ -10,49 +10,50 @@ zones[xi.zone.METALWORKS] = { text = { - YOU_ACCEPT_THE_MISSION = 9, -- You have accepted the mission. - ORIGINAL_MISSION_OFFSET = 14, -- You can consult the Mission section of the main menu to review your objectives. Speed and efficiency are your priorities. Dismissed. - ITEM_CANNOT_BE_OBTAINED = 6439, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6443, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6445, -- Obtained: . - GIL_OBTAINED = 6446, -- Obtained gil. - KEYITEM_OBTAINED = 6448, -- Obtained key item: . - KEYITEM_LOST = 6449, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6450, -- You do not have enough gil. - ITEMS_OBTAINED = 6454, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6459, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 6484, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6485, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6486, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - YOU_LEARNED_TRUST = 6508, -- You learned Trust: ! - CALL_MULTIPLE_ALTER_EGO = 6509, -- You are now able to call multiple alter egos. - CONQUEST_BASE = 6540, -- Tallying conquest results... - SMITHING_SUPPORT = 6868, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. - GUILD_TERMINATE_CONTRACT = 6882, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - GUILD_NEW_CONTRACT = 6890, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - NO_MORE_GP_ELIGIBLE = 6897, -- You are not eligible to receive guild points at this time. - GP_OBTAINED = 6902, -- Obtained: guild points. - NOT_HAVE_ENOUGH_GP = 6903, -- You do not have enough guild points. - RENOUNCE_CRAFTSMAN = 6919, -- You have successfully renounced your status as a [craftsman/artisan/adept] of the [Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - GOOD_LUCK = 7455, -- Good luck on your mission. Bastokers like to do things by the book, so stay out of trouble and follow their rules. - MISSION_DIALOG_CID_TO_AYAME = 7582, -- Give it to one of his Mythril Musketeers instead. Ayame and Naji should be on guard near the President's Office. Either one will do. - ITS_LOCKED = 7993, -- It's locked. - VICIOUS_EYE_SHOP_DIALOG = 8010, -- Hi. This is where blacksmiths buy what they need. - AMULYA_SHOP_DIALOG = 8011, -- Hello. Welcome to the Blacksmiths' Guild shop. - OLAF_SHOP_DIALOG = 8012, -- We sell items in the Gunpowder Room, too. What do you need? - NOGGA_SHOP_DIALOG = 8013, -- I've got some items you won't find elsewhere! - TOMASA_SHOP_DIALOG = 8014, -- This is the Craftsmen's Eatery. Make room for the next customer when you're done, all right? - FISHING_MESSAGE_OFFSET = 8015, -- You can't fish here. - CONQUEST = 8216, -- You've earned conquest points! - GLAROCIQUET_DIALOG = 8218, -- I am , a Temple Knight. I am one of the guards charged with overseeing San d'Oria's conquest campaign. - LEXUN_MARIXUN_DIALOG = 8220, -- I am , a War Warlock. I am one of the guards charged with overseeing Windurst's conquest campaign. - EXTENDED_MISSION_OFFSET = 8606, -- Go to Ore Street and talk to Medicine Eagle. He says he was there when the commotion started. - STEEL_CYCLONE_LEARNED = 9024, -- You have learned the weapon skill Steel Cyclone! - DETONATOR_LEARNED = 9049, -- You have learned the weapon skill Detonator! - TAKIYAH_CLOSED_DIALOG = 9990, -- Maybe someday I'll be able to sell goods from Qufim Island... Someday... - TAKIYAH_OPEN_DIALOG = 9991, -- Hey, it's your lucky day! I've got a fresh batch of goods straight from the island of Qufim! - CELEBRATORY_GOODS = 10838, -- An assortment of celebratory goods is available for purchase. - HOMEPOINT_SET = 11026, -- Home point set! + YOU_ACCEPT_THE_MISSION = 9, -- You have accepted the mission. + ORIGINAL_MISSION_OFFSET = 14, -- You can consult the Mission section of the main menu to review your objectives. Speed and efficiency are your priorities. Dismissed. + ITEM_CANNOT_BE_OBTAINED = 6439, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6443, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6445, -- Obtained: . + GIL_OBTAINED = 6446, -- Obtained gil. + KEYITEM_OBTAINED = 6448, -- Obtained key item: . + KEYITEM_LOST = 6449, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6450, -- You do not have enough gil. + ITEMS_OBTAINED = 6454, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6459, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 6484, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6485, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6486, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6506, -- Your party is unable to participate because certain members' levels are restricted. + YOU_LEARNED_TRUST = 6508, -- You learned Trust: ! + CALL_MULTIPLE_ALTER_EGO = 6509, -- You are now able to call multiple alter egos. + CONQUEST_BASE = 6540, -- Tallying conquest results... + SMITHING_SUPPORT = 6868, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. + GUILD_TERMINATE_CONTRACT = 6882, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + GUILD_NEW_CONTRACT = 6890, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + NO_MORE_GP_ELIGIBLE = 6897, -- You are not eligible to receive guild points at this time. + GP_OBTAINED = 6902, -- Obtained: guild points. + NOT_HAVE_ENOUGH_GP = 6903, -- You do not have enough guild points. + RENOUNCE_CRAFTSMAN = 6919, -- You have successfully renounced your status as a [craftsman/artisan/adept] of the [Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + GOOD_LUCK = 7455, -- Good luck on your mission. Bastokers like to do things by the book, so stay out of trouble and follow their rules. + MISSION_DIALOG_CID_TO_AYAME = 7582, -- Give it to one of his Mythril Musketeers instead. Ayame and Naji should be on guard near the President's Office. Either one will do. + ITS_LOCKED = 7993, -- It's locked. + VICIOUS_EYE_SHOP_DIALOG = 8010, -- Hi. This is where blacksmiths buy what they need. + AMULYA_SHOP_DIALOG = 8011, -- Hello. Welcome to the Blacksmiths' Guild shop. + OLAF_SHOP_DIALOG = 8012, -- We sell items in the Gunpowder Room, too. What do you need? + NOGGA_SHOP_DIALOG = 8013, -- I've got some items you won't find elsewhere! + TOMASA_SHOP_DIALOG = 8014, -- This is the Craftsmen's Eatery. Make room for the next customer when you're done, all right? + FISHING_MESSAGE_OFFSET = 8015, -- You can't fish here. + CONQUEST = 8216, -- You've earned conquest points! + GLAROCIQUET_DIALOG = 8218, -- I am , a Temple Knight. I am one of the guards charged with overseeing San d'Oria's conquest campaign. + LEXUN_MARIXUN_DIALOG = 8220, -- I am , a War Warlock. I am one of the guards charged with overseeing Windurst's conquest campaign. + EXTENDED_MISSION_OFFSET = 8606, -- Go to Ore Street and talk to Medicine Eagle. He says he was there when the commotion started. + STEEL_CYCLONE_LEARNED = 9024, -- You have learned the weapon skill Steel Cyclone! + DETONATOR_LEARNED = 9049, -- You have learned the weapon skill Detonator! + TAKIYAH_CLOSED_DIALOG = 9990, -- Maybe someday I'll be able to sell goods from Qufim Island... Someday... + TAKIYAH_OPEN_DIALOG = 9991, -- Hey, it's your lucky day! I've got a fresh batch of goods straight from the island of Qufim! + CELEBRATORY_GOODS = 10838, -- An assortment of celebratory goods is available for purchase. + HOMEPOINT_SET = 11026, -- Home point set! }, mob = { diff --git a/scripts/zones/Mhaura/IDs.lua b/scripts/zones/Mhaura/IDs.lua index 14e10fc1ec4..d7386b174c8 100644 --- a/scripts/zones/Mhaura/IDs.lua +++ b/scripts/zones/Mhaura/IDs.lua @@ -10,32 +10,33 @@ zones[xi.zone.MHAURA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - HOMEPOINT_SET = 6487, -- Home point set! - CONQUEST_BASE = 6545, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 6721, -- You can't fish here. - NOMAD_MOOGLE_DIALOG = 6821, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. - SUBJOB_UNLOCKED = 7062, -- You can now use support jobs! - FERRY_ARRIVING = 7137, -- Thank you for waiting. The ferry has arrived! Please go ahead and boarrrd! - FERRY_DEPARTING = 7139, -- Ferry departing! - GRAINE_SHOP_DIALOG = 7168, -- Hello there, I'm Graine the armorer. I've got just what you need! - RUNITOMONITO_SHOP_DIALOG = 7169, -- Hi! Welcome! I'm Runito-Monito, and weapons is my middle name! - PIKINIMIKINI_SHOP_DIALOG = 7170, -- Hi, I'm Pikini-Mikini, Mhaura's item seller. I've got the wares, so size doesn't matter! - TYAPADOLIH_SHOP_DIALOG = 7171, -- Welcome, strrranger! Tya Padolih's the name, and dealin' in magic is my game! - GOLDSMITHING_GUILD = 7172, -- Everything you need for your goldsmithing needs! - SMITHING_GUILD = 7173, -- Welcome to the Blacksmiths' Guild salesroom! - RAMUH_UNLOCKED = 7386, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. - MAURIRI_DELIVERY_DIALOG = 7764, -- Mauriri is my name, and sending parcels from Mhaura is my game. - PANORU_DELIVERY_DIALOG = 7765, -- Looking for a delivery company that isn't lamey-wame? The quality of my service puts Mauriri to shame! - DO_NOT_POSSESS = 7767, -- You do not possess . You were not permitted to board the ship... - RETRIEVE_DIALOG_ID = 7802, -- You retrieve from the porter moogle's care. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6451, -- Your party is unable to participate because certain members' levels are restricted. + HOMEPOINT_SET = 6487, -- Home point set! + CONQUEST_BASE = 6545, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 6721, -- You can't fish here. + NOMAD_MOOGLE_DIALOG = 6821, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. + SUBJOB_UNLOCKED = 7062, -- You can now use support jobs! + FERRY_ARRIVING = 7137, -- Thank you for waiting. The ferry has arrived! Please go ahead and boarrrd! + FERRY_DEPARTING = 7139, -- Ferry departing! + GRAINE_SHOP_DIALOG = 7168, -- Hello there, I'm Graine the armorer. I've got just what you need! + RUNITOMONITO_SHOP_DIALOG = 7169, -- Hi! Welcome! I'm Runito-Monito, and weapons is my middle name! + PIKINIMIKINI_SHOP_DIALOG = 7170, -- Hi, I'm Pikini-Mikini, Mhaura's item seller. I've got the wares, so size doesn't matter! + TYAPADOLIH_SHOP_DIALOG = 7171, -- Welcome, strrranger! Tya Padolih's the name, and dealin' in magic is my game! + GOLDSMITHING_GUILD = 7172, -- Everything you need for your goldsmithing needs! + SMITHING_GUILD = 7173, -- Welcome to the Blacksmiths' Guild salesroom! + RAMUH_UNLOCKED = 7386, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. + MAURIRI_DELIVERY_DIALOG = 7764, -- Mauriri is my name, and sending parcels from Mhaura is my game. + PANORU_DELIVERY_DIALOG = 7765, -- Looking for a delivery company that isn't lamey-wame? The quality of my service puts Mauriri to shame! + DO_NOT_POSSESS = 7767, -- You do not possess . You were not permitted to board the ship... + RETRIEVE_DIALOG_ID = 7802, -- You retrieve from the porter moogle's care. }, mob = { diff --git a/scripts/zones/Middle_Delkfutts_Tower/IDs.lua b/scripts/zones/Middle_Delkfutts_Tower/IDs.lua index a50695e556e..08fcc4aea84 100644 --- a/scripts/zones/Middle_Delkfutts_Tower/IDs.lua +++ b/scripts/zones/Middle_Delkfutts_Tower/IDs.lua @@ -10,25 +10,26 @@ zones[xi.zone.MIDDLE_DELKFUTTS_TOWER] = { text = { - CONQUEST_BASE = 4, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6547, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6553, -- Obtained: . - GIL_OBTAINED = 6554, -- Obtained gil. - KEYITEM_OBTAINED = 6556, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6567, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6568, -- You are suddenly overcome with a sense of foreboding... - FELLOW_MESSAGE_OFFSET = 6582, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7164, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7165, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7166, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7220, -- You can't fish here. - CHEST_UNLOCKED = 7328, -- You unlock the chest! - PLAYER_OBTAINS_ITEM = 7376, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7377, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7378, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7379, -- You already possess that temporary item. - NO_COMBINATION = 7384, -- You were unable to enter a combination. - REGIME_REGISTERED = 9462, -- New training regime registered! + CONQUEST_BASE = 4, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6547, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6553, -- Obtained: . + GIL_OBTAINED = 6554, -- Obtained gil. + KEYITEM_OBTAINED = 6556, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6567, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6568, -- You are suddenly overcome with a sense of foreboding... + FELLOW_MESSAGE_OFFSET = 6582, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7164, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7165, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7166, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7186, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7220, -- You can't fish here. + CHEST_UNLOCKED = 7328, -- You unlock the chest! + PLAYER_OBTAINS_ITEM = 7376, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7377, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7378, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7379, -- You already possess that temporary item. + NO_COMBINATION = 7384, -- You were unable to enter a combination. + REGIME_REGISTERED = 9462, -- New training regime registered! }, mob = { diff --git a/scripts/zones/Mine_Shaft_2716/IDs.lua b/scripts/zones/Mine_Shaft_2716/IDs.lua index 1764c7d15f1..b1a42b88f56 100644 --- a/scripts/zones/Mine_Shaft_2716/IDs.lua +++ b/scripts/zones/Mine_Shaft_2716/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.MINE_SHAFT_2716] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CONQUEST_BASE = 7429, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CONQUEST_BASE = 7429, -- Tallying conquest results... }, mob = { diff --git a/scripts/zones/Misareaux_Coast/IDs.lua b/scripts/zones/Misareaux_Coast/IDs.lua index 3ab75a9d369..cffcabba3a6 100644 --- a/scripts/zones/Misareaux_Coast/IDs.lua +++ b/scripts/zones/Misareaux_Coast/IDs.lua @@ -10,33 +10,34 @@ zones[xi.zone.MISAREAUX_COAST] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - YOU_LEARNED_TRUST = 7025, -- You learned Trust: ! - FISHING_MESSAGE_OFFSET = 7079, -- You can't fish here. - CONQUEST_BASE = 7179, -- Tallying conquest results... - DOOR_CLOSED = 7355, -- The door is locked tight. - SNOWMINT_POINT_LOCKED = 7358, -- This gate leads to Snowmint Point. However, it seems to be locked... - BEEP_BEEP = 7580, -- Beep...beep...beep...beep... - BEEP_CLICK_WHIR = 7581, -- Beeeep. Click, whirrr... - BUZZ_BEEP_BEEP = 7582, -- Buzz... Beep beep! - CREATURE_HAS_APPEARED = 7607, -- A creature has appeared out of nowhere! - NOTHING_ELSE_OF_INTEREST = 7608, -- There is nothing else of interest here. - LOGGING_IS_POSSIBLE_HERE = 7609, -- Logging is possible here if you have . - NOTHING_HERE_YET = 7668, -- There is nothing here yet. Check again in the morning. - ALREADY_BAITED = 7669, -- The trap already contains . - APPEARS_TO_BE_TRAP = 7670, -- There appears to be some kind of trap here. Bits of fish are lying around the area. - DID_NOT_CATCH_ANYTHING = 7671, -- You did not catch anything. - PUT_IN_TRAP = 7672, -- You put in the trap. - COMMON_SENSE_SURVIVAL = 8643, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. - HOMEPOINT_SET = 8866, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + YOU_LEARNED_TRUST = 7025, -- You learned Trust: ! + FISHING_MESSAGE_OFFSET = 7079, -- You can't fish here. + CONQUEST_BASE = 7179, -- Tallying conquest results... + DOOR_CLOSED = 7355, -- The door is locked tight. + SNOWMINT_POINT_LOCKED = 7358, -- This gate leads to Snowmint Point. However, it seems to be locked... + BEEP_BEEP = 7580, -- Beep...beep...beep...beep... + BEEP_CLICK_WHIR = 7581, -- Beeeep. Click, whirrr... + BUZZ_BEEP_BEEP = 7582, -- Buzz... Beep beep! + CREATURE_HAS_APPEARED = 7607, -- A creature has appeared out of nowhere! + NOTHING_ELSE_OF_INTEREST = 7608, -- There is nothing else of interest here. + LOGGING_IS_POSSIBLE_HERE = 7609, -- Logging is possible here if you have . + NOTHING_HERE_YET = 7668, -- There is nothing here yet. Check again in the morning. + ALREADY_BAITED = 7669, -- The trap already contains . + APPEARS_TO_BE_TRAP = 7670, -- There appears to be some kind of trap here. Bits of fish are lying around the area. + DID_NOT_CATCH_ANYTHING = 7671, -- You did not catch anything. + PUT_IN_TRAP = 7672, -- You put in the trap. + COMMON_SENSE_SURVIVAL = 8643, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + HOMEPOINT_SET = 8866, -- Home point set! }, mob = { diff --git a/scripts/zones/Mog_Garden/IDs.lua b/scripts/zones/Mog_Garden/IDs.lua index 696d873bf6b..a6f14a58804 100644 --- a/scripts/zones/Mog_Garden/IDs.lua +++ b/scripts/zones/Mog_Garden/IDs.lua @@ -35,20 +35,21 @@ zones[xi.zone.MOG_GARDEN] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - ITEM_OBTAINEDX = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - STARS_ON_KEYITEM = 7504, -- star[/s] on your [has/have] come aglow. A total of star[/s] twinkle[s/] softly inside your . - MOGLOCKER_MESSAGE_OFFSET = 7520, -- Your particular paid period of Mog Locker patronage has been extended until the following time, kupo! Earth Time: #/#/# at #:#:#. - RETRIEVE_DIALOG_ID = 8571, -- You retrieve from the porter moogle's care. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + ITEM_OBTAINEDX = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + STARS_ON_KEYITEM = 7504, -- star[/s] on your [has/have] come aglow. A total of star[/s] twinkle[s/] softly inside your . + MOGLOCKER_MESSAGE_OFFSET = 7520, -- Your particular paid period of Mog Locker patronage has been extended until the following time, kupo! Earth Time: #/#/# at #:#:#. + RETRIEVE_DIALOG_ID = 8571, -- You retrieve from the porter moogle's care. }, mob = { diff --git a/scripts/zones/Moh_Gates/IDs.lua b/scripts/zones/Moh_Gates/IDs.lua index 67789fcb8b5..80ca17cb40a 100644 --- a/scripts/zones/Moh_Gates/IDs.lua +++ b/scripts/zones/Moh_Gates/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.MOH_GATES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Monarch_Linn/IDs.lua b/scripts/zones/Monarch_Linn/IDs.lua index b81b6c8d869..072d492d271 100644 --- a/scripts/zones/Monarch_Linn/IDs.lua +++ b/scripts/zones/Monarch_Linn/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.MONARCH_LINN] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GLOWING_MIST = 7134, -- A glowing mist of ever-changing proportions floats before you... - PARTY_MEMBERS_HAVE_FALLEN = 7448, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7455, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CONQUEST_BASE = 7470, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + GLOWING_MIST = 7134, -- A glowing mist of ever-changing proportions floats before you... + PARTY_MEMBERS_HAVE_FALLEN = 7448, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7455, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CONQUEST_BASE = 7470, -- Tallying conquest results... }, mob = { diff --git a/scripts/zones/Monastic_Cavern/IDs.lua b/scripts/zones/Monastic_Cavern/IDs.lua index 05b4017160f..219ffd1dac0 100644 --- a/scripts/zones/Monastic_Cavern/IDs.lua +++ b/scripts/zones/Monastic_Cavern/IDs.lua @@ -10,23 +10,24 @@ zones[xi.zone.MONASTIC_CAVERN] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - CONQUEST_BASE = 7057, -- Tallying conquest results... - ALTAR = 7272, -- This appears to be an altar. - THE_MAGICITE_GLOWS_OMINOUSLY = 7275, -- The magicite glows ominously. - CHEST_UNLOCKED = 7294, -- You unlock the chest! - ORCISH_OVERLORD_ENGAGE = 7306, -- Intruders? Get outs here! We gots us some adventurers! - ORCISH_OVERLORD_DEATH = 7307, -- Gahahahaha... You fell for our trick. I'm not the big boss. He don't need to be troubled by runty little rarabs like you. - ORC_KING_ENGAGE = 7308, -- Ungh? Who are you? So, you've come to kill big boss Bakgodek? I'll crush your scrawny bones myself! - ORC_KING_DEATH = 7309, -- Unghh... Foolish children of Altana. Defeating me won't change anything. There will be others from the north... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + ALTAR = 7272, -- This appears to be an altar. + THE_MAGICITE_GLOWS_OMINOUSLY = 7275, -- The magicite glows ominously. + CHEST_UNLOCKED = 7294, -- You unlock the chest! + ORCISH_OVERLORD_ENGAGE = 7306, -- Intruders? Get outs here! We gots us some adventurers! + ORCISH_OVERLORD_DEATH = 7307, -- Gahahahaha... You fell for our trick. I'm not the big boss. He don't need to be troubled by runty little rarabs like you. + ORC_KING_ENGAGE = 7308, -- Ungh? Who are you? So, you've come to kill big boss Bakgodek? I'll crush your scrawny bones myself! + ORC_KING_DEATH = 7309, -- Unghh... Foolish children of Altana. Defeating me won't change anything. There will be others from the north... }, mob = { diff --git a/scripts/zones/Mordion_Gaol/IDs.lua b/scripts/zones/Mordion_Gaol/IDs.lua index d229f30d94e..d79766a088f 100644 --- a/scripts/zones/Mordion_Gaol/IDs.lua +++ b/scripts/zones/Mordion_Gaol/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.MORDION_GAOL] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - NO_ESCAPE = 7213, -- Any attempt at escape is futile! - PROHIBITED_ACTIVITIES = 7229, -- Your character has been jailed due to prohibited activities. Your account will soon be suspended due to this violation. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + NO_ESCAPE = 7213, -- Any attempt at escape is futile! + PROHIBITED_ACTIVITIES = 7229, -- Your character has been jailed due to prohibited activities. Your account will soon be suspended due to this violation. }, mob = { diff --git a/scripts/zones/Morimar_Basalt_Fields/IDs.lua b/scripts/zones/Morimar_Basalt_Fields/IDs.lua index 595ca89582e..134d65673d9 100644 --- a/scripts/zones/Morimar_Basalt_Fields/IDs.lua +++ b/scripts/zones/Morimar_Basalt_Fields/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.MORIMAR_BASALT_FIELDS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BAYLD_OBTAINED = 7007, -- You have obtained bayld! - YOU_HAVE_LEARNED = 7015, -- You have learned ! - WAYPOINT_ATTUNED = 7595, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3/ at Frontier Bivouac #4/ at Frontier Bivouac #5]! - EXPENDED_KINETIC_UNITS = 7604, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 7605, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 7606, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 7607, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 7608, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 7609, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 7610, -- A surplus of kinetic unit[/s] has been lost to the aether. - LEARNS_SPELL = 7858, -- learns ! - UNCANNY_SENSATION = 7860, -- You are assaulted by an uncanny sensation. - HOMEPOINT_SET = 8174, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + BAYLD_OBTAINED = 7007, -- You have obtained bayld! + YOU_HAVE_LEARNED = 7015, -- You have learned ! + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WAYPOINT_ATTUNED = 7595, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3/ at Frontier Bivouac #4/ at Frontier Bivouac #5]! + EXPENDED_KINETIC_UNITS = 7604, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 7605, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 7606, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 7607, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 7608, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 7609, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 7610, -- A surplus of kinetic unit[/s] has been lost to the aether. + LEARNS_SPELL = 7858, -- learns ! + UNCANNY_SENSATION = 7860, -- You are assaulted by an uncanny sensation. + HOMEPOINT_SET = 8174, -- Home point set! }, mob = { diff --git a/scripts/zones/Mount_Kamihr/IDs.lua b/scripts/zones/Mount_Kamihr/IDs.lua index 95bd15c6bf8..b6a531da112 100644 --- a/scripts/zones/Mount_Kamihr/IDs.lua +++ b/scripts/zones/Mount_Kamihr/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.MOUNT_KAMIHR] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - LOST_KEYITEM = 6394, -- Lost key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + LOST_KEYITEM = 6394, -- Lost key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Mount_Zhayolm/IDs.lua b/scripts/zones/Mount_Zhayolm/IDs.lua index 928b1adb9af..43d3f126424 100644 --- a/scripts/zones/Mount_Zhayolm/IDs.lua +++ b/scripts/zones/Mount_Zhayolm/IDs.lua @@ -10,35 +10,36 @@ zones[xi.zone.MOUNT_ZHAYOLM] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - STAGING_GATE_CLOSER = 7314, -- You must move closer. - STAGING_GATE_INTERACT = 7315, -- This gate guards an area under Imperial control. - STAGING_GATE_HALVUNG = 7318, -- Halvung Staging Point. - CANNOT_LEAVE = 7325, -- You cannot leave this area while in the possession of . - RESPONSE = 7334, -- There is no response... - HAND_OVER_TO_IMMORTAL = 7421, -- You hand over the % to the Immortal. - YOUR_IMPERIAL_STANDING = 7422, -- Your Imperial Standing has increased! - MINING_IS_POSSIBLE_HERE = 7423, -- Mining is possible here if you have . - CANNOT_ENTER = 7482, -- You cannot enter at this time. Please wait a while before trying again. - AREA_FULL = 7483, -- This area is fully occupied. You were unable to enter. - MEMBER_NO_REQS = 7487, -- Not all of your party members meet the requirements for this objective. Unable to enter area. - MEMBER_TOO_FAR = 7491, -- One or more party members are too far away from the entrance. Unable to enter area. - SHED_LEAVES = 7553, -- The ground is strewn with shed leaves... - SICKLY_SWEET = 7558, -- A sickly sweet fragrance pervades the air... - ACIDIC_ODOR = 7559, -- An acidic odor pervades the air... - PUTRID_ODOR = 7560, -- A putrid odor threatens to overwhelm you... - STIFLING_STENCH = 7564, -- A stifling stench pervades the air... - DRAWS_NEAR = 7580, -- Something draws near! - HOMEPOINT_SET = 8729, -- Home point set! + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + STAGING_GATE_CLOSER = 7314, -- You must move closer. + STAGING_GATE_INTERACT = 7315, -- This gate guards an area under Imperial control. + STAGING_GATE_HALVUNG = 7318, -- Halvung Staging Point. + CANNOT_LEAVE = 7325, -- You cannot leave this area while in the possession of . + RESPONSE = 7334, -- There is no response... + HAND_OVER_TO_IMMORTAL = 7421, -- You hand over the % to the Immortal. + YOUR_IMPERIAL_STANDING = 7422, -- Your Imperial Standing has increased! + MINING_IS_POSSIBLE_HERE = 7423, -- Mining is possible here if you have . + CANNOT_ENTER = 7482, -- You cannot enter at this time. Please wait a while before trying again. + AREA_FULL = 7483, -- This area is fully occupied. You were unable to enter. + MEMBER_NO_REQS = 7487, -- Not all of your party members meet the requirements for this objective. Unable to enter area. + MEMBER_TOO_FAR = 7491, -- One or more party members are too far away from the entrance. Unable to enter area. + SHED_LEAVES = 7553, -- The ground is strewn with shed leaves... + SICKLY_SWEET = 7558, -- A sickly sweet fragrance pervades the air... + ACIDIC_ODOR = 7559, -- An acidic odor pervades the air... + PUTRID_ODOR = 7560, -- A putrid odor threatens to overwhelm you... + STIFLING_STENCH = 7564, -- A stifling stench pervades the air... + DRAWS_NEAR = 7580, -- Something draws near! + HOMEPOINT_SET = 8729, -- Home point set! }, mob = { diff --git a/scripts/zones/Nashmau/IDs.lua b/scripts/zones/Nashmau/IDs.lua index 94409bc9b5f..ac65c4737b8 100644 --- a/scripts/zones/Nashmau/IDs.lua +++ b/scripts/zones/Nashmau/IDs.lua @@ -10,37 +10,38 @@ zones[xi.zone.NASHMAU] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_CANNOT_BE_OBTAINEDX = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEM_OBTAINEDX = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - HOMEPOINT_SET = 7315, -- Home point set! - NOMAD_MOOGLE_DIALOG = 7335, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. - REGIME_CANCELED = 7350, -- Current training regime canceled. - HUNT_ACCEPTED = 7368, -- Hunt accepted! - USE_SCYLDS = 7369, -- You use [scyld/scylds]. Scyld balance: . - HUNT_RECORDED = 7380, -- You record your hunt. - OBTAIN_SCYLDS = 7382, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. - HUNT_CANCELED = 7386, -- Hunt canceled. - JAJAROON_SHOP_DIALOG = 10484, -- Hellooo. Yooo have caaard? Can do gaaame? Jajaroon have diiice. - TSUTSUROON_SHOP_DIALOG = 10494, -- What yooo want? Have katana, katana, and nin-nin...yooo want? - MAMAROON_SHOP_DIALOG = 10497, -- Welcome to maaagic shop. Lots of magics for yooo. - POPOROON_SHOP_DIALOG = 10499, -- Come, come. Buy aaarmor, looots of armor! - WATAKHAMAZOM_SHOP_DIALOG = 10500, -- Looking for some bows and bolts to strrrike fear into the hearts of your enemies? You can find 'em here! - CHICHIROON_SHOP_DIALOG = 10502, -- Howdy-hooo! I gots soooper rare dice for yooo. - SANCTION = 10778, -- You have received the Empire's Sanction. - NENE_DELIVERY_DIALOG = 10838, -- Yooo want to send gooods? Yooo want to send clink clink? - NANA_DELIVERY_DIALOG = 10839, -- Yooo send gooods. Yooo send clink clink. - YOYOROON_SHOP_DIALOG = 11790, -- Boooss, boooss! Yoyoroon bring yooo goood custooomer! Yoyoroon goood wooorker, nooo? - PIPIROON_SHOP_DIALOG = 11791, -- Yes? I'm a busy man. Make it quick. - RETRIEVE_DIALOG_ID = 11891, -- You retrieve from the porter moogle's care. - COMMON_SENSE_SURVIVAL = 11930, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_CANNOT_BE_OBTAINEDX = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEM_OBTAINEDX = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + HOMEPOINT_SET = 7315, -- Home point set! + NOMAD_MOOGLE_DIALOG = 7335, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. + REGIME_CANCELED = 7350, -- Current training regime canceled. + HUNT_ACCEPTED = 7368, -- Hunt accepted! + USE_SCYLDS = 7369, -- You use [scyld/scylds]. Scyld balance: . + HUNT_RECORDED = 7380, -- You record your hunt. + OBTAIN_SCYLDS = 7382, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. + HUNT_CANCELED = 7386, -- Hunt canceled. + JAJAROON_SHOP_DIALOG = 10484, -- Hellooo. Yooo have caaard? Can do gaaame? Jajaroon have diiice. + TSUTSUROON_SHOP_DIALOG = 10494, -- What yooo want? Have katana, katana, and nin-nin...yooo want? + MAMAROON_SHOP_DIALOG = 10497, -- Welcome to maaagic shop. Lots of magics for yooo. + POPOROON_SHOP_DIALOG = 10499, -- Come, come. Buy aaarmor, looots of armor! + WATAKHAMAZOM_SHOP_DIALOG = 10500, -- Looking for some bows and bolts to strrrike fear into the hearts of your enemies? You can find 'em here! + CHICHIROON_SHOP_DIALOG = 10502, -- Howdy-hooo! I gots soooper rare dice for yooo. + SANCTION = 10778, -- You have received the Empire's Sanction. + NENE_DELIVERY_DIALOG = 10838, -- Yooo want to send gooods? Yooo want to send clink clink? + NANA_DELIVERY_DIALOG = 10839, -- Yooo send gooods. Yooo send clink clink. + YOYOROON_SHOP_DIALOG = 11790, -- Boooss, boooss! Yoyoroon bring yooo goood custooomer! Yoyoroon goood wooorker, nooo? + PIPIROON_SHOP_DIALOG = 11791, -- Yes? I'm a busy man. Make it quick. + RETRIEVE_DIALOG_ID = 11891, -- You retrieve from the porter moogle's care. + COMMON_SENSE_SURVIVAL = 11930, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Navukgo_Execution_Chamber/IDs.lua b/scripts/zones/Navukgo_Execution_Chamber/IDs.lua index bba975ddda9..e9dee57c2c8 100644 --- a/scripts/zones/Navukgo_Execution_Chamber/IDs.lua +++ b/scripts/zones/Navukgo_Execution_Chamber/IDs.lua @@ -10,24 +10,25 @@ zones[xi.zone.NAVUKGO_EXECUTION_CHAMBER] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - KARABABA_ENOUGH = 7637, -- That's quite enough... - KARABABA_ROUGH = 7638, -- Time for me to start playing rough! - KARABARA_FIRE = 7639, -- Fuel for the fire! It doesn't pay to invoke my ire! - KARABARA_ICE = 7640, -- Well, if you won't play nice, I'll put your sorry hide on ice! - KARABARA_WIND = 7641, -- This battle is growing stale. How about we have a refreshing gale! - KARABARA_EARTH = 7642, -- Sometimes it comes as quite a shock, how much damage you can deal with simple rock! - KARABARA_LIGHTNING = 7643, -- How I love to rip things asunder! Witness the power of lightning and thunder! - KARABARA_WATER = 7644, -- Water is more dangerous than most expect. Never fear, I'll teach you respect! - KARABABA_QUIT = 7652, -- What a completely useless shield. It's time for me to quit the field. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + KARABABA_ENOUGH = 7637, -- That's quite enough... + KARABABA_ROUGH = 7638, -- Time for me to start playing rough! + KARABARA_FIRE = 7639, -- Fuel for the fire! It doesn't pay to invoke my ire! + KARABARA_ICE = 7640, -- Well, if you won't play nice, I'll put your sorry hide on ice! + KARABARA_WIND = 7641, -- This battle is growing stale. How about we have a refreshing gale! + KARABARA_EARTH = 7642, -- Sometimes it comes as quite a shock, how much damage you can deal with simple rock! + KARABARA_LIGHTNING = 7643, -- How I love to rip things asunder! Witness the power of lightning and thunder! + KARABARA_WATER = 7644, -- Water is more dangerous than most expect. Never fear, I'll teach you respect! + KARABABA_QUIT = 7652, -- What a completely useless shield. It's time for me to quit the field. }, mob = { diff --git a/scripts/zones/Newton_Movalpolos/IDs.lua b/scripts/zones/Newton_Movalpolos/IDs.lua index 672d6d25909..18ec267b77e 100644 --- a/scripts/zones/Newton_Movalpolos/IDs.lua +++ b/scripts/zones/Newton_Movalpolos/IDs.lua @@ -10,23 +10,24 @@ zones[xi.zone.NEWTON_MOVALPOLOS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - COME_CLOSER = 7238, -- H0000! C0mE cL0SEr! C0mE cL0SEr! CAn'T TrAdE fr0m S0 fAr AwAy! - MINING_IS_POSSIBLE_HERE = 7246, -- Mining is possible here if you have . - CHEST_UNLOCKED = 7261, -- You unlock the chest! - COLLECTOR_SPAWN = 7270, -- You gently place the on the ground. Suddenly, you hear the clanging sound of armor approaching. It looks like someone is interested in the ... - SHOWMAN_DECLINE = 7272, -- ... Me no want that. Thing me want not here! It not being here!!! - SHOWMAN_TRIGGER = 7273, -- Hey, you there! Muscles nice. You want fight strong one? It cost you. Give me nice item. - SHOWMAN_ACCEPT = 7274, -- Fhungaaa!!! The freshyness, the flavoryness! This very nice item! Good luck, then. Try not die. One...two...four...FIIIIIIGHT!!! - HOMEPOINT_SET = 7277, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + COME_CLOSER = 7238, -- H0000! C0mE cL0SEr! C0mE cL0SEr! CAn'T TrAdE fr0m S0 fAr AwAy! + MINING_IS_POSSIBLE_HERE = 7246, -- Mining is possible here if you have . + CHEST_UNLOCKED = 7261, -- You unlock the chest! + COLLECTOR_SPAWN = 7270, -- You gently place the on the ground. Suddenly, you hear the clanging sound of armor approaching. It looks like someone is interested in the ... + SHOWMAN_DECLINE = 7272, -- ... Me no want that. Thing me want not here! It not being here!!! + SHOWMAN_TRIGGER = 7273, -- Hey, you there! Muscles nice. You want fight strong one? It cost you. Give me nice item. + SHOWMAN_ACCEPT = 7274, -- Fhungaaa!!! The freshyness, the flavoryness! This very nice item! Good luck, then. Try not die. One...two...four...FIIIIIIGHT!!! + HOMEPOINT_SET = 7277, -- Home point set! }, mob = { diff --git a/scripts/zones/Norg/IDs.lua b/scripts/zones/Norg/IDs.lua index 881ca494d9c..4fbaaf73c88 100644 --- a/scripts/zones/Norg/IDs.lua +++ b/scripts/zones/Norg/IDs.lua @@ -10,41 +10,42 @@ zones[xi.zone.NORG] = { text = { - HOMEPOINT_SET = 2, -- Home point set! - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - YOU_OBTAIN = 6421, -- You obtain ! - CARRIED_OVER_POINTS = 6451, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6452, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6453, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 6507, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 6666, -- You can't fish here. - REGIME_CANCELED = 6827, -- Current training regime canceled. - HUNT_ACCEPTED = 6845, -- Hunt accepted! - USE_SCYLDS = 6846, -- You use [scyld/scylds]. Scyld balance: . - HUNT_RECORDED = 6857, -- You record your hunt. - OBTAIN_SCYLDS = 6859, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. - HUNT_CANCELED = 6863, -- Hunt canceled. - YOU_CAN_NOW_BECOME_A_SAMURAI = 10206, -- You accept the from Gilgamesh. You can now become a samurai. - CARRYING_TOO_MUCH_ALREADY = 10207, -- I wish to give you your reward, but you seem to be carrying too much already. Come back when you have more room in your pack. - JIROKICHI_SHOP_DIALOG = 10353, -- Heh-heh-heh. Feast your eyes on these beauties. You won't find stuff like this anywhere! - VULIAIE_SHOP_DIALOG = 10354, -- Please, stay and have a look. You may find something you can only buy here. - ACHIKA_SHOP_DIALOG = 10355, -- Can I interest you in some armor forged in the surrounding regions? - CHIYO_SHOP_DIALOG = 10356, -- Magic scrolls! Magic scrolls! We've got parchment hot off the sheep! - SPASIJA_DELIVERY_DIALOG = 10357, -- Hiya! I can deliver packages to anybody, anywhere, anytime. What do you say? - PALEILLE_DELIVERY_DIALOG = 10358, -- We can deliver parcels to any residence in Vana'diel. - DOOR_IS_LOCKED = 10363, -- The door is locked tight. - AVATAR_UNLOCKED = 10477, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. - NOMAD_MOOGLE_DIALOG = 10545, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. - FOUIVA_DIALOG = 10569, -- Oi 'av naw business wi' de likes av you. - SOLBYMAHOLBY_SHOP_DIALOG = 10583, -- Hiya! My name's Solby-Maholby! I'm new here, so they put me on tooty-fruity shop duty. I'll give you a super-duper deal on unwanted items! - TACHI_KASHA_LEARNED = 10806, -- You have learned the weapon skill Tachi: Kasha! - BLADE_KU_LEARNED = 10831, -- You have learned the weapon skill Blade: Ku! - RETRIEVE_DIALOG_ID = 11284, -- You retrieve from the porter moogle's care. - COMMON_SENSE_SURVIVAL = 12294, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. - DIDYA_GET_BUMPED = 12322, -- Didya get bumped about by the waves on yer way here, ? No matter. The boss be waitin' inside fer ya. + HOMEPOINT_SET = 2, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + YOU_OBTAIN = 6421, -- You obtain ! + CARRIED_OVER_POINTS = 6451, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6452, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6453, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6473, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 6507, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 6666, -- You can't fish here. + REGIME_CANCELED = 6827, -- Current training regime canceled. + HUNT_ACCEPTED = 6845, -- Hunt accepted! + USE_SCYLDS = 6846, -- You use [scyld/scylds]. Scyld balance: . + HUNT_RECORDED = 6857, -- You record your hunt. + OBTAIN_SCYLDS = 6859, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. + HUNT_CANCELED = 6863, -- Hunt canceled. + YOU_CAN_NOW_BECOME_A_SAMURAI = 10206, -- You accept the from Gilgamesh. You can now become a samurai. + CARRYING_TOO_MUCH_ALREADY = 10207, -- I wish to give you your reward, but you seem to be carrying too much already. Come back when you have more room in your pack. + JIROKICHI_SHOP_DIALOG = 10353, -- Heh-heh-heh. Feast your eyes on these beauties. You won't find stuff like this anywhere! + VULIAIE_SHOP_DIALOG = 10354, -- Please, stay and have a look. You may find something you can only buy here. + ACHIKA_SHOP_DIALOG = 10355, -- Can I interest you in some armor forged in the surrounding regions? + CHIYO_SHOP_DIALOG = 10356, -- Magic scrolls! Magic scrolls! We've got parchment hot off the sheep! + SPASIJA_DELIVERY_DIALOG = 10357, -- Hiya! I can deliver packages to anybody, anywhere, anytime. What do you say? + PALEILLE_DELIVERY_DIALOG = 10358, -- We can deliver parcels to any residence in Vana'diel. + DOOR_IS_LOCKED = 10363, -- The door is locked tight. + AVATAR_UNLOCKED = 10477, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. + NOMAD_MOOGLE_DIALOG = 10545, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. + FOUIVA_DIALOG = 10569, -- Oi 'av naw business wi' de likes av you. + SOLBYMAHOLBY_SHOP_DIALOG = 10583, -- Hiya! My name's Solby-Maholby! I'm new here, so they put me on tooty-fruity shop duty. I'll give you a super-duper deal on unwanted items! + TACHI_KASHA_LEARNED = 10806, -- You have learned the weapon skill Tachi: Kasha! + BLADE_KU_LEARNED = 10831, -- You have learned the weapon skill Blade: Ku! + RETRIEVE_DIALOG_ID = 11284, -- You retrieve from the porter moogle's care. + COMMON_SENSE_SURVIVAL = 12294, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + DIDYA_GET_BUMPED = 12322, -- Didya get bumped about by the waves on yer way here, ? No matter. The boss be waitin' inside fer ya. }, mob = { diff --git a/scripts/zones/North_Gustaberg/IDs.lua b/scripts/zones/North_Gustaberg/IDs.lua index 53272644da8..e685d04d48f 100644 --- a/scripts/zones/North_Gustaberg/IDs.lua +++ b/scripts/zones/North_Gustaberg/IDs.lua @@ -25,6 +25,7 @@ zones[xi.zone.NORTH_GUSTABERG] = CARRIED_OVER_POINTS = 7182, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7183, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7184, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7204, -- Your party is unable to participate because certain members' levels are restricted. FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. diff --git a/scripts/zones/North_Gustaberg_[S]/IDs.lua b/scripts/zones/North_Gustaberg_[S]/IDs.lua index 947ea4c1c54..1bd66a76a9d 100644 --- a/scripts/zones/North_Gustaberg_[S]/IDs.lua +++ b/scripts/zones/North_Gustaberg_[S]/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.NORTH_GUSTABERG_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - LYCOPODIUM_ENTRANCED = 7064, -- The lycopodium is entranced by a sparkling light... - FISHING_MESSAGE_OFFSET = 7363, -- You can't fish here. - MINING_IS_POSSIBLE_HERE = 7552, -- Mining is possible here if you have . - VOIDWALKER_DESPAWN = 8137, -- The monster fades before your eyes, a look of disappointment on its face. - VOIDWALKER_NO_MOB = 8184, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8185, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8186, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8187, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8189, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8190, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8191, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8192, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 9084, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + LYCOPODIUM_ENTRANCED = 7064, -- The lycopodium is entranced by a sparkling light... + FISHING_MESSAGE_OFFSET = 7363, -- You can't fish here. + MINING_IS_POSSIBLE_HERE = 7552, -- Mining is possible here if you have . + VOIDWALKER_DESPAWN = 8137, -- The monster fades before your eyes, a look of disappointment on its face. + VOIDWALKER_NO_MOB = 8184, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8185, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8186, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8187, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8189, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8190, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8191, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8192, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 9084, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Northern_San_dOria/IDs.lua b/scripts/zones/Northern_San_dOria/IDs.lua index 99bae1fb561..3daf4fa0bda 100644 --- a/scripts/zones/Northern_San_dOria/IDs.lua +++ b/scripts/zones/Northern_San_dOria/IDs.lua @@ -10,118 +10,119 @@ zones[xi.zone.NORTHERN_SAN_DORIA] = { text = { - YOU_ACCEPT_THE_MISSION = 5, -- You accept the mission. - ORIGINAL_MISSION_OFFSET = 16, -- Bring me one of those axes, and your mission will be a success. No running away now; we've a proud country to defend! - HOMEPOINT_SET = 188, -- Home point set! - ITEM_CANNOT_BE_OBTAINED = 6592, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6598, -- Obtained: . - GIL_OBTAINED = 6599, -- Obtained gil. - KEYITEM_OBTAINED = 6601, -- Obtained key item: . - KEYITEM_LOST = 6602, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6603, -- You do not have enough gil. - REPORT_TO_CAIT_SITH = 6628, -- You have obtained all of Lilisette's memory fragments. Make haste and report to Cait Sith. - CARRIED_OVER_POINTS = 6637, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6638, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6639, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - YOU_LEARNED_TRUST = 6661, -- You learned Trust: ! - CALL_MULTIPLE_ALTER_EGO = 6662, -- You are now able to call multiple alter egos. - MOG_LOCKER_OFFSET = 6842, -- Your Mog Locker lease is valid until , kupo. - IMAGE_SUPPORT = 6966, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. - GUILD_TERMINATE_CONTRACT = 6980, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - GUILD_NEW_CONTRACT = 6988, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - NO_MORE_GP_ELIGIBLE = 6995, -- You are not eligible to receive guild points at this time. - GP_OBTAINED = 7000, -- Obtained: guild points. - NOT_HAVE_ENOUGH_GP = 7001, -- You do not have enough guild points. - RENOUNCE_CRAFTSMAN = 7017, -- You have successfully renounced your status as a [craftsman/artisan/adept] of the [Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - CONQUEST_BASE = 7271, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7430, -- You can't fish here. - REGIME_CANCELED = 7981, -- Current training regime canceled. - HUNT_ACCEPTED = 7999, -- Hunt accepted! - USE_SCYLDS = 8000, -- You use [scyld/scylds]. Scyld balance: . - HUNT_RECORDED = 8011, -- You record your hunt. - OBTAIN_SCYLDS = 8013, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. - HUNT_CANCELED = 8017, -- Hunt canceled. - WHAT_DO_YOU_WANT = 11145, -- What do you want? - FFR_GUILBERDRIER = 11158, -- A magic shop, you say? A bit of magic would come in handy... I know! I'll have my daughter study it for me! - AILBECHE_FATHER_WHERE = 11184, -- Oh, Father! Where are you? - ABIOLEGET_DIALOG = 11234, -- All of Altana's children are welcome here. - PELLIMIE_DIALOG = 11235, -- Is this your first time here? Join us in prayer! - FITTESEGAT_DIALOG = 11236, -- Paradise is a place without fear, without death! - MAURINE_DIALOG = 11237, -- Papsque Shamonde sometimes addresses the city from the balcony, you know. I long for his blessing, if but once! - PRERIVON_DIALOG = 11238, -- With each sermon, I take another step closer to Paradise. - MALFINE_DIALOG = 11239, -- Truly fortunate are we that words of sacrament are read every day! - COULLENE_DIALOG = 11240, -- Goddess above, deliver us to Paradise! - OLBERGIEUT_DIALOG = 11282, -- Friar Faurbellant is on retreat at the Crag of Holla. Please give to him. - ABEAULE_DIALOG_HOME = 11338, -- Amaura makes her home on Watchdog Alley. If you can't find her, ask someone along the way. I'll be waiting here! - ABEAULE_DIALOG_THANKS = 11340, -- You've been a great help, again. I don't know how to thank you! - GUILERME_DIALOG = 11354, -- Behold Chateau d'Oraguille, the greatest fortress in the realm! - PHAVIANE_DIALOG = 11358, -- This is Victory Arch. Beyond lies Southern San d'Oria. - SOCHIENE_DIALOG = 11359, -- You stand before Victory Arch. Southern San d'Oria is on the other side. - PEPIGORT_DIALOG = 11360, -- This gate leads to Port San d'Oria. - RODAILLECE_DIALOG = 11361, -- This is Ranperre Gate. Fiends lurk in the lands beyond, so take caution! - GALAHAD_DIALOG = 11374, -- Welcome to the Consulate of Jeuno. I am Galahad, Consul to San d'Oria. - ISHWAR_DIALOG = 11375, -- May I assist you? - ARIENH_DIALOG = 11376, -- If you have business with Consul Galahad, you'll find him inside. - EMILIA_DIALOG = 11377, -- Welcome to the Consulate of Jeuno. - HERE_WITH_BUSINESS = 11381, -- You're here with business from the administration, correct? I believe you should talk to Consul Helaku. - HELAKU_DIALOG = 11406, -- Leave this building, and you'll see a great fortress to the right. That's Chateau d'Oraguille. And be polite; San d'Orians can be quite touchy. - KASARORO_DIALOG = 11445, -- Step right outside, and you'll see a big castle on the left. That's Chateau d'Oraguille. They're a little touchy in there, so mind your manners! - PICKPOCKET_AUREGE = 11474, -- A pickpocket, you say? Come to think of it, I did see a scoundrel skulking about... - PICKPOCKET_GUILBERDRIER = 11476, -- A pickpocket? No, can't say I've seen anyone like that. I'll keep an eye out, though. - PICKPOCKET_PEPIGORT = 11480, -- A pickpocket? Hey, I wonder if you mean that lady running helter-skelter over there just now... - PICKPOCKET_GILIPESE = 11481, -- A pickpocket? I did just see an undignified sort of woman just now. She was running toward Ranperre Gate. - MAURINNE_DIALOG = 11482, -- This part of town is so lively, I like watching everybody just go about their business. - PICKPOCKET_MAURINNE = 11483, -- A pickpocket? - PICKPOCKET_RODAILLECE = 11485, -- A pickpocket? Maybe it was that foul-mouthed woman just now. She called me a spoony bard! Unthinkable! - AIVEDOIR_DIALOG = 11516, -- That's funny. I could have sworn she asked me to meet her here... - CAPIRIA_DIALOG = 11517, -- He's late! I do hope he hasn't forgotten. - BERTENONT_DIALOG = 11518, -- Stars are more beautiful up close. Don't you agree? - GILIPESE_DIALOG = 11539, -- Nothing to report! - DOGGOMEHR_SHOP_DIALOG = 11552, -- Welcome to the Blacksmiths' Guild shop. - LUCRETIA_SHOP_DIALOG = 11553, -- Blacksmiths' Guild shop, at your service! - CAUZERISTE_SHOP_DIALOG = 11620, -- Welcome! San d'Oria Carpenters' Guild shop, at your service. - THE_EMISSARY_PLACEHOLDER = 11627, -- I'm glad you brought a letter of introduction, but you haven't finished your duty to Consul Melek yet. You'll need to come back once that's out of the way. - ANTONIAN_OPEN_DIALOG = 11635, -- Interested in goods from Aragoneu? - BONCORT_SHOP_DIALOG = 11636, -- Welcome to the Phoenix Perch! - PIRVIDIAUCE_SHOP_DIALOG = 11637, -- Care to see what I have? - PALGUEVION_OPEN_DIALOG = 11638, -- I've got a shipment straight from Valdeaunia! - VICHUEL_OPEN_DIALOG = 11639, -- Fauregandi produce for sale! - ARLENNE_SHOP_DIALOG = 11640, -- Welcome to the Royal Armory! - TAVOURINE_SHOP_DIALOG = 11641, -- Looking for a weapon? We've got many in stock! - JUSTI_SHOP_DIALOG = 11643, -- Hello! - ANTONIAN_CLOSED_DIALOG = 11645, -- The Kingdom's influence is waning in Aragoneu. I cannot import goods from that region, though I long to. - PALGUEVION_CLOSED_DIALOG = 11646, -- Would that Valdeaunia came again under San d'Orian dominion, I could then import its goods! - VICHUEL_CLOSED_DIALOG = 11647, -- I'd make a killing selling Fauregandi produce here, but that region's not under San d'Orian control! - ATTARENA_CLOSED_DIALOG = 11648, -- Once all of Li'Telor is back under San d'Orian influence, I'll fill my stock with unique goods from there! - EUGBALLION_CLOSED_DIALOG = 11649, -- I'd be making a fortune selling goods from Qufim Island...if it were only under San d'Orian control! - EUGBALLION_OPEN_DIALOG = 11650, -- Have a look at these goods imported direct from Qufim Island! - CHAUPIRE_SHOP_DIALOG = 11651, -- San d'Orian woodcraft is the finest in the land! - CONQUEST = 11717, -- You've earned conquest points! - FFR_BONCORT = 12064, -- Hmm... With magic, I could get hold of materials a mite easier. I'll have to check this mart out. - FFR_CAPIRIA = 12065, -- A flyer? For me? Some reading material would be a welcome change of pace, indeed! - FFR_VILLION = 12066, -- Opening a shop of magic, without consulting me first? I must pay this Regine a visit! - FFR_COULLENE = 12067, -- Magic could be of use on my journey to Paradise. Thank you so much! - FLYER_ACCEPTED = 12068, -- Your flyer is accepted! - FLYER_ALREADY = 12069, -- This person already has a flyer. - MOGHOUSE_EXIT = 12368, -- You have learned your way through the back alleys of San d'Oria! Now you can exit to any area from your residence. - AILBECHE_WHEN_FISHING = 12388, -- Oh, when will my father take me fishing... - OH_I_WANT_MY_ITEM = 12627, -- Oh, I want my . - GAUDYLOX_SHOP_DIALOG = 12628, -- You never see Goblinshhh from underworld? Me no bad. Me sell chipshhh. You buy. Use with shhhtone heart. You get lucky! - MILLECHUCA_CLOSED_DIALOG = 12629, -- I've been trying to import goods from Vollbow, but it's so hard to get items from areas that aren't under San d'Orian control. - ATTARENA_OPEN_DIALOG = 12714, -- Good day! Take a look at my selection from Li'Telor! - MILLECHUCA_OPEN_DIALOG = 12715, -- Specialty goods from Vollbow! Specialty goods from Vollbow! - SHIVA_UNLOCKED = 12813, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. - ARACHAGNON_SHOP_DIALOG = 12917, -- Would you be interested in purchasing some adventurer-issue armor? Be careful when selecting, as we accept no refunds. - TRICK_OR_TREAT = 13060, -- Trick or treat... - THANK_YOU_TREAT = 13061, -- Thank you... And now for your treat... - HERE_TAKE_THIS = 13062, -- Here, take this... - IF_YOU_WEAR_THIS = 13063, -- If you put this on and walk around, something...unexpected might happen... - THANK_YOU = 13064, -- Thank you... - FFR_LOOKS_CURIOUSLY_BASE = 13388, -- Coullene looks over curiously for a moment. - FRAGMENT_FAR_TOO_SMALL = 18096, -- You obtain . However, it is far too small to house an adequate amount of energy. Alone, it serves no purpose. - FRAGMENTS_MELD = 18097, -- The tiny fragments of Lilisette's memory meld together to form ! - RETRIEVE_DIALOG_ID = 18132, -- You retrieve from the porter moogle's care. - COMMON_SENSE_SURVIVAL = 18478, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + YOU_ACCEPT_THE_MISSION = 5, -- You accept the mission. + ORIGINAL_MISSION_OFFSET = 16, -- Bring me one of those axes, and your mission will be a success. No running away now; we've a proud country to defend! + HOMEPOINT_SET = 188, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6592, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6598, -- Obtained: . + GIL_OBTAINED = 6599, -- Obtained gil. + KEYITEM_OBTAINED = 6601, -- Obtained key item: . + KEYITEM_LOST = 6602, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6603, -- You do not have enough gil. + REPORT_TO_CAIT_SITH = 6628, -- You have obtained all of Lilisette's memory fragments. Make haste and report to Cait Sith. + CARRIED_OVER_POINTS = 6637, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6638, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6639, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6659, -- Your party is unable to participate because certain members' levels are restricted. + YOU_LEARNED_TRUST = 6661, -- You learned Trust: ! + CALL_MULTIPLE_ALTER_EGO = 6662, -- You are now able to call multiple alter egos. + MOG_LOCKER_OFFSET = 6842, -- Your Mog Locker lease is valid until , kupo. + IMAGE_SUPPORT = 6966, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. + GUILD_TERMINATE_CONTRACT = 6980, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + GUILD_NEW_CONTRACT = 6988, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + NO_MORE_GP_ELIGIBLE = 6995, -- You are not eligible to receive guild points at this time. + GP_OBTAINED = 7000, -- Obtained: guild points. + NOT_HAVE_ENOUGH_GP = 7001, -- You do not have enough guild points. + RENOUNCE_CRAFTSMAN = 7017, -- You have successfully renounced your status as a [craftsman/artisan/adept] of the [Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + CONQUEST_BASE = 7271, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7430, -- You can't fish here. + REGIME_CANCELED = 7981, -- Current training regime canceled. + HUNT_ACCEPTED = 7999, -- Hunt accepted! + USE_SCYLDS = 8000, -- You use [scyld/scylds]. Scyld balance: . + HUNT_RECORDED = 8011, -- You record your hunt. + OBTAIN_SCYLDS = 8013, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. + HUNT_CANCELED = 8017, -- Hunt canceled. + WHAT_DO_YOU_WANT = 11145, -- What do you want? + FFR_GUILBERDRIER = 11158, -- A magic shop, you say? A bit of magic would come in handy... I know! I'll have my daughter study it for me! + AILBECHE_FATHER_WHERE = 11184, -- Oh, Father! Where are you? + ABIOLEGET_DIALOG = 11234, -- All of Altana's children are welcome here. + PELLIMIE_DIALOG = 11235, -- Is this your first time here? Join us in prayer! + FITTESEGAT_DIALOG = 11236, -- Paradise is a place without fear, without death! + MAURINE_DIALOG = 11237, -- Papsque Shamonde sometimes addresses the city from the balcony, you know. I long for his blessing, if but once! + PRERIVON_DIALOG = 11238, -- With each sermon, I take another step closer to Paradise. + MALFINE_DIALOG = 11239, -- Truly fortunate are we that words of sacrament are read every day! + COULLENE_DIALOG = 11240, -- Goddess above, deliver us to Paradise! + OLBERGIEUT_DIALOG = 11282, -- Friar Faurbellant is on retreat at the Crag of Holla. Please give to him. + ABEAULE_DIALOG_HOME = 11338, -- Amaura makes her home on Watchdog Alley. If you can't find her, ask someone along the way. I'll be waiting here! + ABEAULE_DIALOG_THANKS = 11340, -- You've been a great help, again. I don't know how to thank you! + GUILERME_DIALOG = 11354, -- Behold Chateau d'Oraguille, the greatest fortress in the realm! + PHAVIANE_DIALOG = 11358, -- This is Victory Arch. Beyond lies Southern San d'Oria. + SOCHIENE_DIALOG = 11359, -- You stand before Victory Arch. Southern San d'Oria is on the other side. + PEPIGORT_DIALOG = 11360, -- This gate leads to Port San d'Oria. + RODAILLECE_DIALOG = 11361, -- This is Ranperre Gate. Fiends lurk in the lands beyond, so take caution! + GALAHAD_DIALOG = 11374, -- Welcome to the Consulate of Jeuno. I am Galahad, Consul to San d'Oria. + ISHWAR_DIALOG = 11375, -- May I assist you? + ARIENH_DIALOG = 11376, -- If you have business with Consul Galahad, you'll find him inside. + EMILIA_DIALOG = 11377, -- Welcome to the Consulate of Jeuno. + HERE_WITH_BUSINESS = 11381, -- You're here with business from the administration, correct? I believe you should talk to Consul Helaku. + HELAKU_DIALOG = 11406, -- Leave this building, and you'll see a great fortress to the right. That's Chateau d'Oraguille. And be polite; San d'Orians can be quite touchy. + KASARORO_DIALOG = 11445, -- Step right outside, and you'll see a big castle on the left. That's Chateau d'Oraguille. They're a little touchy in there, so mind your manners! + PICKPOCKET_AUREGE = 11474, -- A pickpocket, you say? Come to think of it, I did see a scoundrel skulking about... + PICKPOCKET_GUILBERDRIER = 11476, -- A pickpocket? No, can't say I've seen anyone like that. I'll keep an eye out, though. + PICKPOCKET_PEPIGORT = 11480, -- A pickpocket? Hey, I wonder if you mean that lady running helter-skelter over there just now... + PICKPOCKET_GILIPESE = 11481, -- A pickpocket? I did just see an undignified sort of woman just now. She was running toward Ranperre Gate. + MAURINNE_DIALOG = 11482, -- This part of town is so lively, I like watching everybody just go about their business. + PICKPOCKET_MAURINNE = 11483, -- A pickpocket? + PICKPOCKET_RODAILLECE = 11485, -- A pickpocket? Maybe it was that foul-mouthed woman just now. She called me a spoony bard! Unthinkable! + AIVEDOIR_DIALOG = 11516, -- That's funny. I could have sworn she asked me to meet her here... + CAPIRIA_DIALOG = 11517, -- He's late! I do hope he hasn't forgotten. + BERTENONT_DIALOG = 11518, -- Stars are more beautiful up close. Don't you agree? + GILIPESE_DIALOG = 11539, -- Nothing to report! + DOGGOMEHR_SHOP_DIALOG = 11552, -- Welcome to the Blacksmiths' Guild shop. + LUCRETIA_SHOP_DIALOG = 11553, -- Blacksmiths' Guild shop, at your service! + CAUZERISTE_SHOP_DIALOG = 11620, -- Welcome! San d'Oria Carpenters' Guild shop, at your service. + THE_EMISSARY_PLACEHOLDER = 11627, -- I'm glad you brought a letter of introduction, but you haven't finished your duty to Consul Melek yet. You'll need to come back once that's out of the way. + ANTONIAN_OPEN_DIALOG = 11635, -- Interested in goods from Aragoneu? + BONCORT_SHOP_DIALOG = 11636, -- Welcome to the Phoenix Perch! + PIRVIDIAUCE_SHOP_DIALOG = 11637, -- Care to see what I have? + PALGUEVION_OPEN_DIALOG = 11638, -- I've got a shipment straight from Valdeaunia! + VICHUEL_OPEN_DIALOG = 11639, -- Fauregandi produce for sale! + ARLENNE_SHOP_DIALOG = 11640, -- Welcome to the Royal Armory! + TAVOURINE_SHOP_DIALOG = 11641, -- Looking for a weapon? We've got many in stock! + JUSTI_SHOP_DIALOG = 11643, -- Hello! + ANTONIAN_CLOSED_DIALOG = 11645, -- The Kingdom's influence is waning in Aragoneu. I cannot import goods from that region, though I long to. + PALGUEVION_CLOSED_DIALOG = 11646, -- Would that Valdeaunia came again under San d'Orian dominion, I could then import its goods! + VICHUEL_CLOSED_DIALOG = 11647, -- I'd make a killing selling Fauregandi produce here, but that region's not under San d'Orian control! + ATTARENA_CLOSED_DIALOG = 11648, -- Once all of Li'Telor is back under San d'Orian influence, I'll fill my stock with unique goods from there! + EUGBALLION_CLOSED_DIALOG = 11649, -- I'd be making a fortune selling goods from Qufim Island...if it were only under San d'Orian control! + EUGBALLION_OPEN_DIALOG = 11650, -- Have a look at these goods imported direct from Qufim Island! + CHAUPIRE_SHOP_DIALOG = 11651, -- San d'Orian woodcraft is the finest in the land! + CONQUEST = 11717, -- You've earned conquest points! + FFR_BONCORT = 12064, -- Hmm... With magic, I could get hold of materials a mite easier. I'll have to check this mart out. + FFR_CAPIRIA = 12065, -- A flyer? For me? Some reading material would be a welcome change of pace, indeed! + FFR_VILLION = 12066, -- Opening a shop of magic, without consulting me first? I must pay this Regine a visit! + FFR_COULLENE = 12067, -- Magic could be of use on my journey to Paradise. Thank you so much! + FLYER_ACCEPTED = 12068, -- Your flyer is accepted! + FLYER_ALREADY = 12069, -- This person already has a flyer. + MOGHOUSE_EXIT = 12368, -- You have learned your way through the back alleys of San d'Oria! Now you can exit to any area from your residence. + AILBECHE_WHEN_FISHING = 12388, -- Oh, when will my father take me fishing... + OH_I_WANT_MY_ITEM = 12627, -- Oh, I want my . + GAUDYLOX_SHOP_DIALOG = 12628, -- You never see Goblinshhh from underworld? Me no bad. Me sell chipshhh. You buy. Use with shhhtone heart. You get lucky! + MILLECHUCA_CLOSED_DIALOG = 12629, -- I've been trying to import goods from Vollbow, but it's so hard to get items from areas that aren't under San d'Orian control. + ATTARENA_OPEN_DIALOG = 12714, -- Good day! Take a look at my selection from Li'Telor! + MILLECHUCA_OPEN_DIALOG = 12715, -- Specialty goods from Vollbow! Specialty goods from Vollbow! + SHIVA_UNLOCKED = 12813, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. + ARACHAGNON_SHOP_DIALOG = 12917, -- Would you be interested in purchasing some adventurer-issue armor? Be careful when selecting, as we accept no refunds. + TRICK_OR_TREAT = 13060, -- Trick or treat... + THANK_YOU_TREAT = 13061, -- Thank you... And now for your treat... + HERE_TAKE_THIS = 13062, -- Here, take this... + IF_YOU_WEAR_THIS = 13063, -- If you put this on and walk around, something...unexpected might happen... + THANK_YOU = 13064, -- Thank you... + FFR_LOOKS_CURIOUSLY_BASE = 13388, -- Coullene looks over curiously for a moment. + FRAGMENT_FAR_TOO_SMALL = 18096, -- You obtain . However, it is far too small to house an adequate amount of energy. Alone, it serves no purpose. + FRAGMENTS_MELD = 18097, -- The tiny fragments of Lilisette's memory meld together to form ! + RETRIEVE_DIALOG_ID = 18132, -- You retrieve from the porter moogle's care. + COMMON_SENSE_SURVIVAL = 18478, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Nyzul_Isle/IDs.lua b/scripts/zones/Nyzul_Isle/IDs.lua index 697493c1288..9fb562aa1dd 100644 --- a/scripts/zones/Nyzul_Isle/IDs.lua +++ b/scripts/zones/Nyzul_Isle/IDs.lua @@ -10,63 +10,64 @@ zones[xi.zone.NYZUL_ISLE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - TIME_TO_COMPLETE = 7308, -- You have [minute/minutes] (Earth time) to complete this mission. - MISSION_FAILED = 7309, -- The mission has failed. Leaving area. - TIME_REMAINING_MINUTES = 7313, -- ime remaining: [minute/minutes] (Earth time). - TIME_REMAINING_SECONDS = 7314, -- ime remaining: [second/seconds] (Earth time). - FADES_INTO_NOTHINGNESS = 7315, -- The fades into nothingness... - PARTY_FALLEN = 7316, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. - FORMATION_GELINCIK = 7508, -- Formation Gelincik! Eliminate the intruders! - SURRENDER = 7509, -- You would be wise to surrender. A fate worse than death awaits those who anger an Immortal... - I_WILL_SINK_YOUR_CORPSES = 7510, -- I will sink your corpses to the bottom of the Cyan Deep! - AWAKEN = 7511, -- Awaken, powers of the Lamiae! - MANIFEST = 7512, -- Manifest, powers of the Merrow! - CURSED_ESSENCES = 7513, -- Cursed essences of creatures devoured... Infuse my blood with your beastly might! - UGH = 7514, -- Ugh...I should not be surprised... Even Rishfee praised your strength... - CANNOT_WIN = 7515, -- Hehe...hehehe... You are...too strong for me... I cannot win...in this way... - CANNOT_LET_YOU_PASS = 7516, -- ... I cannot...let you...pass... - WHEEZE = 7517, -- ... - WHEEZE_PHSHOOO = 7518, -- ...! - PHSHOOO = 7519, -- ... - NOT_POSSIBLE = 7520, -- ... Not...possible... - ALRRRIGHTY = 7521, -- Alrrrighty! Let's get this show on the rrroad! I hope ya got deep pockets! - CHA_CHING = 7522, -- Cha-ching! Thirty gold coins! - TWELVE_GOLD_COINS = 7523, -- Hehe! This one'll cost ya twelve gold coins a punch! The grrreat gouts of blood are frrree of charge! - NINETY_NINE_SILVER_COINS = 7524, -- Ninety-nine silver coins a pop! A bargain, I tell ya! - THIS_BATTLE = 7525, -- This battle is rrreally draggin' on... Just think of the dry cleanin' bill! - OW = 7526, -- Ow...! Ya do rrrealize the medical costs are comin' outta your salary, don't ya? - ABQUHBAH = 7527, -- A-Abquhbah! D-don't even think about...rrraisin' the wages... Management...is a mean world...ugh... - OH_ARE_WE_DONE = 7528, -- Oh, are we done? I wasn't done rrrackin' up the fees... You've got more in ya, rrright? - NOW_WERE_TALKIN = 7529, -- Now we're talkin'! I can hear the clinkin' of coin mountains collapsin' over my desk... Let's get this over with! - PRAY = 7530, -- Pray to whatever gods you serve. - BEHOLD = 7531, -- Behold the power of my eldritch gaze! - CARVE = 7532, -- I will carve the soul fresh from your bones. - RESIST_MELEE = 7533, -- My flesh remembers the wounds of ten thousand blades. Come, cut me again... - RESIST_MAGIC = 7534, -- My skin remembers the fires of ten thousand spells. Come, burn me again... - RESIST_RANGE = 7535, -- My belly remembers the punctures of ten thousand arrows. Come, shoot me again... - NOW_UNDERSTAND = 7536, -- Hehehe... Do you now understand what it is to fight a true Immortal? Realize your futility and embrace despair... - MIRACLE = 7537, -- Ugh... Has your god granted you the miracle you seek...? - SHALL_BE_JUDGED = 7539, -- I am...Alexander... The meek...shall be rewarded... The defiant...shall be judged... - OFFER_THY_WORSHIP = 7540, -- Offer thy worship... I shall burn away...thy transgressions... - OPEN_THINE_EYES = 7541, -- Open thine eyes... My radiance...shall guide thee... - CEASE_THY_STRUGGLES = 7542, -- Cease thy struggles... I am immutable...indestructible...impervious...immortal... - RELEASE_THY_SELF = 7543, -- Release thy self... My divine flames...shall melt thy flesh...sear thy bones...unshackle thy soul... - BASK_IN_MY_GLORY = 7544, -- Bask in my glory... Mine existence...stretches into infinity... - REPENT_THY_IRREVERENCE = 7545, -- Repent thy irreverence... The gate to salvation...lies before thee... Revelation...is within thy reach... - ACCEPT_THY_DESTRUCTION = 7546, -- Accept thy destruction... Wish for eternity...yearn for immortality... Sense thy transience...know thy insignificance... - OMEGA_SPAM = 7547, -- OOOOOOO - SHALL_KNOW_OBLIVION = 7548, -- I am...Alexander... The fearful...shall be embraced... The bold...shall know oblivion... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + TIME_TO_COMPLETE = 7308, -- You have [minute/minutes] (Earth time) to complete this mission. + MISSION_FAILED = 7309, -- The mission has failed. Leaving area. + TIME_REMAINING_MINUTES = 7313, -- ime remaining: [minute/minutes] (Earth time). + TIME_REMAINING_SECONDS = 7314, -- ime remaining: [second/seconds] (Earth time). + FADES_INTO_NOTHINGNESS = 7315, -- The fades into nothingness... + PARTY_FALLEN = 7316, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. + FORMATION_GELINCIK = 7508, -- Formation Gelincik! Eliminate the intruders! + SURRENDER = 7509, -- You would be wise to surrender. A fate worse than death awaits those who anger an Immortal... + I_WILL_SINK_YOUR_CORPSES = 7510, -- I will sink your corpses to the bottom of the Cyan Deep! + AWAKEN = 7511, -- Awaken, powers of the Lamiae! + MANIFEST = 7512, -- Manifest, powers of the Merrow! + CURSED_ESSENCES = 7513, -- Cursed essences of creatures devoured... Infuse my blood with your beastly might! + UGH = 7514, -- Ugh...I should not be surprised... Even Rishfee praised your strength... + CANNOT_WIN = 7515, -- Hehe...hehehe... You are...too strong for me... I cannot win...in this way... + CANNOT_LET_YOU_PASS = 7516, -- ... I cannot...let you...pass... + WHEEZE = 7517, -- ... + WHEEZE_PHSHOOO = 7518, -- ...! + PHSHOOO = 7519, -- ... + NOT_POSSIBLE = 7520, -- ... Not...possible... + ALRRRIGHTY = 7521, -- Alrrrighty! Let's get this show on the rrroad! I hope ya got deep pockets! + CHA_CHING = 7522, -- Cha-ching! Thirty gold coins! + TWELVE_GOLD_COINS = 7523, -- Hehe! This one'll cost ya twelve gold coins a punch! The grrreat gouts of blood are frrree of charge! + NINETY_NINE_SILVER_COINS = 7524, -- Ninety-nine silver coins a pop! A bargain, I tell ya! + THIS_BATTLE = 7525, -- This battle is rrreally draggin' on... Just think of the dry cleanin' bill! + OW = 7526, -- Ow...! Ya do rrrealize the medical costs are comin' outta your salary, don't ya? + ABQUHBAH = 7527, -- A-Abquhbah! D-don't even think about...rrraisin' the wages... Management...is a mean world...ugh... + OH_ARE_WE_DONE = 7528, -- Oh, are we done? I wasn't done rrrackin' up the fees... You've got more in ya, rrright? + NOW_WERE_TALKIN = 7529, -- Now we're talkin'! I can hear the clinkin' of coin mountains collapsin' over my desk... Let's get this over with! + PRAY = 7530, -- Pray to whatever gods you serve. + BEHOLD = 7531, -- Behold the power of my eldritch gaze! + CARVE = 7532, -- I will carve the soul fresh from your bones. + RESIST_MELEE = 7533, -- My flesh remembers the wounds of ten thousand blades. Come, cut me again... + RESIST_MAGIC = 7534, -- My skin remembers the fires of ten thousand spells. Come, burn me again... + RESIST_RANGE = 7535, -- My belly remembers the punctures of ten thousand arrows. Come, shoot me again... + NOW_UNDERSTAND = 7536, -- Hehehe... Do you now understand what it is to fight a true Immortal? Realize your futility and embrace despair... + MIRACLE = 7537, -- Ugh... Has your god granted you the miracle you seek...? + SHALL_BE_JUDGED = 7539, -- I am...Alexander... The meek...shall be rewarded... The defiant...shall be judged... + OFFER_THY_WORSHIP = 7540, -- Offer thy worship... I shall burn away...thy transgressions... + OPEN_THINE_EYES = 7541, -- Open thine eyes... My radiance...shall guide thee... + CEASE_THY_STRUGGLES = 7542, -- Cease thy struggles... I am immutable...indestructible...impervious...immortal... + RELEASE_THY_SELF = 7543, -- Release thy self... My divine flames...shall melt thy flesh...sear thy bones...unshackle thy soul... + BASK_IN_MY_GLORY = 7544, -- Bask in my glory... Mine existence...stretches into infinity... + REPENT_THY_IRREVERENCE = 7545, -- Repent thy irreverence... The gate to salvation...lies before thee... Revelation...is within thy reach... + ACCEPT_THY_DESTRUCTION = 7546, -- Accept thy destruction... Wish for eternity...yearn for immortality... Sense thy transience...know thy insignificance... + OMEGA_SPAM = 7547, -- OOOOOOO + SHALL_KNOW_OBLIVION = 7548, -- I am...Alexander... The fearful...shall be embraced... The bold...shall know oblivion... }, mob = diff --git a/scripts/zones/Oldton_Movalpolos/IDs.lua b/scripts/zones/Oldton_Movalpolos/IDs.lua index 333e557de87..773f40788a0 100644 --- a/scripts/zones/Oldton_Movalpolos/IDs.lua +++ b/scripts/zones/Oldton_Movalpolos/IDs.lua @@ -10,20 +10,21 @@ zones[xi.zone.OLDTON_MOVALPOLOS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7576, -- You can't fish here. - MINING_IS_POSSIBLE_HERE = 7707, -- Mining is possible here if you have . - RAKOROK_DIALOGUE = 7731, -- Nsy pipul. Gattohre! I bisynw! - CHEST_UNLOCKED = 7755, -- You unlock the chest! - COMMON_SENSE_SURVIVAL = 8113, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7576, -- You can't fish here. + MINING_IS_POSSIBLE_HERE = 7707, -- Mining is possible here if you have . + RAKOROK_DIALOGUE = 7731, -- Nsy pipul. Gattohre! I bisynw! + CHEST_UNLOCKED = 7755, -- You unlock the chest! + COMMON_SENSE_SURVIVAL = 8113, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Open_sea_route_to_Al_Zahbi/IDs.lua b/scripts/zones/Open_sea_route_to_Al_Zahbi/IDs.lua index 2fd5ce1b232..9971cec177d 100644 --- a/scripts/zones/Open_sea_route_to_Al_Zahbi/IDs.lua +++ b/scripts/zones/Open_sea_route_to_Al_Zahbi/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.OPEN_SEA_ROUTE_TO_AL_ZAHBI] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - ON_WAY_TO_AL_ZAHBI = 7316, -- We are on our way to Al Zahbi. We should arrive in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - DOCKING_IN_AL_ZAHBI = 7317, -- We are now docking in Al Zahbi. - CEHN_TEYOHNGO_SHOP_DIALOG = 7320, -- If you're looking for fishing gear, you've come to the right place! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + ON_WAY_TO_AL_ZAHBI = 7316, -- We are on our way to Al Zahbi. We should arrive in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + DOCKING_IN_AL_ZAHBI = 7317, -- We are now docking in Al Zahbi. + CEHN_TEYOHNGO_SHOP_DIALOG = 7320, -- If you're looking for fishing gear, you've come to the right place! }, mob = { diff --git a/scripts/zones/Open_sea_route_to_Mhaura/IDs.lua b/scripts/zones/Open_sea_route_to_Mhaura/IDs.lua index bf47d001ebc..fa4f31b5464 100644 --- a/scripts/zones/Open_sea_route_to_Mhaura/IDs.lua +++ b/scripts/zones/Open_sea_route_to_Mhaura/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.OPEN_SEA_ROUTE_TO_MHAURA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - ON_WAY_TO_MHAURA = 7316, -- We are on our way to Mhaura. We should arrive in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - DOCKING_IN_MHAURA = 7317, -- We are now docking in Mhaura. - PASHI_MACCALEH_SHOP_DIALOG = 7320, -- Step right up for the best fishing gear in these parts! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + ON_WAY_TO_MHAURA = 7316, -- We are on our way to Mhaura. We should arrive in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + DOCKING_IN_MHAURA = 7317, -- We are now docking in Mhaura. + PASHI_MACCALEH_SHOP_DIALOG = 7320, -- Step right up for the best fishing gear in these parts! }, mob = { diff --git a/scripts/zones/Ordelles_Caves/IDs.lua b/scripts/zones/Ordelles_Caves/IDs.lua index a9264d533d8..2e870df00ad 100644 --- a/scripts/zones/Ordelles_Caves/IDs.lua +++ b/scripts/zones/Ordelles_Caves/IDs.lua @@ -22,6 +22,7 @@ zones[xi.zone.ORDELLES_CAVES] = LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. DEVICE_NOT_WORKING = 7330, -- The device is not working. SYS_OVERLOAD = 7339, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. diff --git a/scripts/zones/Outer_Horutoto_Ruins/IDs.lua b/scripts/zones/Outer_Horutoto_Ruins/IDs.lua index c7ec22591d9..d3557333f51 100644 --- a/scripts/zones/Outer_Horutoto_Ruins/IDs.lua +++ b/scripts/zones/Outer_Horutoto_Ruins/IDs.lua @@ -10,31 +10,32 @@ zones[xi.zone.OUTER_HORUTOTO_RUINS] = { text = { - ORB_ALREADY_PLACED = 0, -- A dark Mana Orb is already placed here. - GUARDIAN_BLOCKING_WAY = 14, -- A GUARDIAN IS BLOCKING YOUR WAY! - CONQUEST_BASE = 15, -- Tallying conquest results... - DEVICE_NOT_WORKING = 188, -- The device is not working. - SYS_OVERLOAD = 197, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. - YOU_LOST_THE = 202, -- You lost the . - ITEM_CANNOT_BE_OBTAINED = 6589, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6595, -- Obtained: . - GIL_OBTAINED = 6596, -- Obtained gil. - KEYITEM_OBTAINED = 6598, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6624, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7206, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7207, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7208, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7217, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - DOOR_FIRMLY_SHUT = 7262, -- The door is firmly shut. - ALL_G_ORBS_ENERGIZED = 7265, -- The six Mana Orbs have been successfully energized with magic! - CHEST_UNLOCKED = 7288, -- You unlock the chest! - CANNOT_ENTER_BATTLEFIELD = 7349, -- You cannot enter this battlefield with the key item: in your possession. - PLAYER_OBTAINS_ITEM = 8265, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8266, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8267, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8268, -- You already possess that temporary item. - NO_COMBINATION = 8273, -- You were unable to enter a combination. - REGIME_REGISTERED = 10351, -- New training regime registered! + ORB_ALREADY_PLACED = 0, -- A dark Mana Orb is already placed here. + GUARDIAN_BLOCKING_WAY = 14, -- A GUARDIAN IS BLOCKING YOUR WAY! + CONQUEST_BASE = 15, -- Tallying conquest results... + DEVICE_NOT_WORKING = 188, -- The device is not working. + SYS_OVERLOAD = 197, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. + YOU_LOST_THE = 202, -- You lost the . + ITEM_CANNOT_BE_OBTAINED = 6589, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6595, -- Obtained: . + GIL_OBTAINED = 6596, -- Obtained gil. + KEYITEM_OBTAINED = 6598, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6624, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7206, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7207, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7208, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7217, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7228, -- Your party is unable to participate because certain members' levels are restricted. + DOOR_FIRMLY_SHUT = 7262, -- The door is firmly shut. + ALL_G_ORBS_ENERGIZED = 7265, -- The six Mana Orbs have been successfully energized with magic! + CHEST_UNLOCKED = 7288, -- You unlock the chest! + CANNOT_ENTER_BATTLEFIELD = 7349, -- You cannot enter this battlefield with the key item: in your possession. + PLAYER_OBTAINS_ITEM = 8265, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8266, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8267, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8268, -- You already possess that temporary item. + NO_COMBINATION = 8273, -- You were unable to enter a combination. + REGIME_REGISTERED = 10351, -- New training regime registered! }, mob = { diff --git a/scripts/zones/Outer_RaKaznar/IDs.lua b/scripts/zones/Outer_RaKaznar/IDs.lua index 7edc05b0a3c..f09aee81fca 100644 --- a/scripts/zones/Outer_RaKaznar/IDs.lua +++ b/scripts/zones/Outer_RaKaznar/IDs.lua @@ -10,22 +10,23 @@ zones[xi.zone.OUTER_RAKAZNAR] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BAYLD_OBTAINED = 7007, -- You have obtained bayld! - FAINT_ENERGY_WAFTS = 7013, -- A faint energy wafts up from the ground. - YOU_HAVE_LEARNED = 7015, -- You have learned ! - THIS_BAFFLING_GADGET = 7738, -- This baffling gadget seems to serve as transport to the [lower/higher] floors. - HAVE_FOUND_SCALES = 7904, -- You have found scale[/s]. - SOOTHING_SIGH_FALLS = 7905, -- A soothing sigh falls upon your ears. Could you have found the final scale? - DOOR_TIGHTLY_SEALED = 7906, -- The door is tightly sealed. - EERIE_GLOW_PENETRATES = 7907, -- An eerie glow penetrates the darkness. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + BAYLD_OBTAINED = 7007, -- You have obtained bayld! + FAINT_ENERGY_WAFTS = 7013, -- A faint energy wafts up from the ground. + YOU_HAVE_LEARNED = 7015, -- You have learned ! + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + THIS_BAFFLING_GADGET = 7738, -- This baffling gadget seems to serve as transport to the [lower/higher] floors. + HAVE_FOUND_SCALES = 7904, -- You have found scale[/s]. + SOOTHING_SIGH_FALLS = 7905, -- A soothing sigh falls upon your ears. Could you have found the final scale? + DOOR_TIGHTLY_SEALED = 7906, -- The door is tightly sealed. + EERIE_GLOW_PENETRATES = 7907, -- An eerie glow penetrates the darkness. }, mob = { diff --git a/scripts/zones/Outer_RaKaznar_[U1]/IDs.lua b/scripts/zones/Outer_RaKaznar_[U1]/IDs.lua index 8d343cb72c4..343ff953a89 100644 --- a/scripts/zones/Outer_RaKaznar_[U1]/IDs.lua +++ b/scripts/zones/Outer_RaKaznar_[U1]/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.OUTER_RAKAZNAR_U1] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Outer_RaKaznar_[U2]/IDs.lua b/scripts/zones/Outer_RaKaznar_[U2]/IDs.lua index 478126bea8c..867fa4d4983 100644 --- a/scripts/zones/Outer_RaKaznar_[U2]/IDs.lua +++ b/scripts/zones/Outer_RaKaznar_[U2]/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.OUTER_RAKAZNAR_U2] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Palborough_Mines/IDs.lua b/scripts/zones/Palborough_Mines/IDs.lua index f30fa0b92fc..126835753ba 100644 --- a/scripts/zones/Palborough_Mines/IDs.lua +++ b/scripts/zones/Palborough_Mines/IDs.lua @@ -21,6 +21,7 @@ zones[xi.zone.PALBOROUGH_MINES] = LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. THE_MACHINE_SEEMS_TO_BE_WORKING = 7376, -- The machine seems to be working, but you cannot discern its purpose. diff --git a/scripts/zones/Pashhow_Marshlands/IDs.lua b/scripts/zones/Pashhow_Marshlands/IDs.lua index dcd66078727..03803d6f625 100644 --- a/scripts/zones/Pashhow_Marshlands/IDs.lua +++ b/scripts/zones/Pashhow_Marshlands/IDs.lua @@ -10,40 +10,41 @@ zones[xi.zone.PASHHOW_MARSHLANDS] = { text = { - NOTHING_HAPPENS = 141, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - KEYITEM_LOST = 6416, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7079, -- Tallying conquest results... - BEASTMEN_BANNER = 7160, -- There is a beastmen's banner. - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7319, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - CONQUEST = 7927, -- You've earned conquest points! - PLAYER_OBTAINS_ITEM = 8476, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8477, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8478, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8479, -- You already possess that temporary item. - NO_COMBINATION = 8484, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 8515, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 10725, -- New training regime registered! - VOIDWALKER_NO_MOB = 11844, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 11845, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 11846, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 11847, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 11849, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 11850, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 11851, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 11852, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 12836, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 141, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + KEYITEM_LOST = 6416, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7079, -- Tallying conquest results... + BEASTMEN_BANNER = 7160, -- There is a beastmen's banner. + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7319, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + CONQUEST = 7927, -- You've earned conquest points! + PLAYER_OBTAINS_ITEM = 8476, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8477, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8478, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8479, -- You already possess that temporary item. + NO_COMBINATION = 8484, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 8515, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 10725, -- New training regime registered! + VOIDWALKER_NO_MOB = 11844, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 11845, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 11846, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 11847, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 11849, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 11850, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 11851, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 11852, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 12836, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Pashhow_Marshlands_[S]/IDs.lua b/scripts/zones/Pashhow_Marshlands_[S]/IDs.lua index 880c9f641be..97799df5087 100644 --- a/scripts/zones/Pashhow_Marshlands_[S]/IDs.lua +++ b/scripts/zones/Pashhow_Marshlands_[S]/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.PASHHOW_MARSHLANDS_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7154, -- You can't fish here. - ALREADY_OBTAINED_TELE = 7699, -- You already possess the gate crystal for this telepoint. - VOIDWALKER_DESPAWN = 7995, -- The monster fades before your eyes, a look of disappointment on its face. - VOIDWALKER_NO_MOB = 8042, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8043, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8044, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8045, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8047, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8048, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8049, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8050, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 9079, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7154, -- You can't fish here. + ALREADY_OBTAINED_TELE = 7699, -- You already possess the gate crystal for this telepoint. + VOIDWALKER_DESPAWN = 7995, -- The monster fades before your eyes, a look of disappointment on its face. + VOIDWALKER_NO_MOB = 8042, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8043, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8044, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8045, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8047, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8048, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8049, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8050, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 9079, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Periqia/IDs.lua b/scripts/zones/Periqia/IDs.lua index 2764f44a355..a23e8c924f4 100644 --- a/scripts/zones/Periqia/IDs.lua +++ b/scripts/zones/Periqia/IDs.lua @@ -10,46 +10,47 @@ zones[xi.zone.PERIQIA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PLAYER_OBTAINS_ITEM = 7316, -- obtains ! - ASSAULT_START_OFFSET = 7451, -- Max MP Down removed for . - TIME_TO_COMPLETE = 7512, -- You have [minute/minutes] (Earth time) to complete this mission. - MISSION_FAILED = 7513, -- The mission has failed. Leaving area. - RUNE_UNLOCKED_POS = 7514, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). - RUNE_UNLOCKED = 7515, -- ission objective completed. Unlocking Rune of Release. - ASSAULT_POINTS_OBTAINED = 7516, -- You gain [Assault point/Assault points]! - TIME_REMAINING_MINUTES = 7517, -- ime remaining: [minute/minutes] (Earth time). - TIME_REMAINING_SECONDS = 7518, -- ime remaining: [second/seconds] (Earth time). - FADES_INTO_NOTHINGNESS = 7519, -- The fades into nothingness... - PARTY_FALLEN = 7520, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. - EXCALIACE_START = 7529, -- Such a lot of trouble for one little corsair... Shall we be on our way? - EXCALIACE_END1 = 7530, -- Yeah, I got it. Stay here and keep quiet. - EXCALIACE_END2 = 7531, -- Hey... It was a short trip, but nothing is ever dull around you, huh? - EXCALIACE_ESCAPE = 7532, -- Heh. The Immortals really must be having troubles finding troops if they sent this bunch of slowpokes to watch over me... - EXCALIACE_PAIN1 = 7533, -- Oomph! - EXCALIACE_PAIN2 = 7534, -- Ouch! - EXCALIACE_PAIN3 = 7535, -- Youch! - EXCALIACE_PAIN4 = 7536, -- Damn, that's gonna leave a mark! - EXCALIACE_PAIN5 = 7537, -- Urggh! - EXCALIACE_CRAB1 = 7538, -- Over to you. - EXCALIACE_CRAB2 = 7539, -- What's this guy up to? - EXCALIACE_CRAB3 = 7540, -- Uh-oh. - EXCALIACE_DEBAUCHER1 = 7541, -- Wh-what the...!? - EXCALIACE_DEBAUCHER2 = 7542, -- H-help!!! - EXCALIACE_RUN = 7543, -- Now's my chance! - EXCALIACE_TOO_CLOSE = 7544, -- Okay, okay, you got me! I promise I won't run again if you step back a bit...please. Someone's been eating too much garlic... - EXCALIACE_TIRED = 7545, -- ...... - EXCALIACE_CAUGHT = 7546, -- Damn... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PLAYER_OBTAINS_ITEM = 7316, -- obtains ! + ASSAULT_START_OFFSET = 7451, -- Max MP Down removed for . + TIME_TO_COMPLETE = 7512, -- You have [minute/minutes] (Earth time) to complete this mission. + MISSION_FAILED = 7513, -- The mission has failed. Leaving area. + RUNE_UNLOCKED_POS = 7514, -- ission objective completed. Unlocking Rune of Release ([A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z]-#). + RUNE_UNLOCKED = 7515, -- ission objective completed. Unlocking Rune of Release. + ASSAULT_POINTS_OBTAINED = 7516, -- You gain [Assault point/Assault points]! + TIME_REMAINING_MINUTES = 7517, -- ime remaining: [minute/minutes] (Earth time). + TIME_REMAINING_SECONDS = 7518, -- ime remaining: [second/seconds] (Earth time). + FADES_INTO_NOTHINGNESS = 7519, -- The fades into nothingness... + PARTY_FALLEN = 7520, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. + EXCALIACE_START = 7529, -- Such a lot of trouble for one little corsair... Shall we be on our way? + EXCALIACE_END1 = 7530, -- Yeah, I got it. Stay here and keep quiet. + EXCALIACE_END2 = 7531, -- Hey... It was a short trip, but nothing is ever dull around you, huh? + EXCALIACE_ESCAPE = 7532, -- Heh. The Immortals really must be having troubles finding troops if they sent this bunch of slowpokes to watch over me... + EXCALIACE_PAIN1 = 7533, -- Oomph! + EXCALIACE_PAIN2 = 7534, -- Ouch! + EXCALIACE_PAIN3 = 7535, -- Youch! + EXCALIACE_PAIN4 = 7536, -- Damn, that's gonna leave a mark! + EXCALIACE_PAIN5 = 7537, -- Urggh! + EXCALIACE_CRAB1 = 7538, -- Over to you. + EXCALIACE_CRAB2 = 7539, -- What's this guy up to? + EXCALIACE_CRAB3 = 7540, -- Uh-oh. + EXCALIACE_DEBAUCHER1 = 7541, -- Wh-what the...!? + EXCALIACE_DEBAUCHER2 = 7542, -- H-help!!! + EXCALIACE_RUN = 7543, -- Now's my chance! + EXCALIACE_TOO_CLOSE = 7544, -- Okay, okay, you got me! I promise I won't run again if you step back a bit...please. Someone's been eating too much garlic... + EXCALIACE_TIRED = 7545, -- ...... + EXCALIACE_CAUGHT = 7546, -- Damn... }, mob = diff --git a/scripts/zones/Phanauet_Channel/IDs.lua b/scripts/zones/Phanauet_Channel/IDs.lua index 212c0d34c06..1488cbab7be 100644 --- a/scripts/zones/Phanauet_Channel/IDs.lua +++ b/scripts/zones/Phanauet_Channel/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.PHANAUET_CHANNEL] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7226, -- You can't fish here. - RICHE_DAVOI_WATERFALL = 7414, -- ...Davoi...waterfall... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7226, -- You can't fish here. + RICHE_DAVOI_WATERFALL = 7414, -- ...Davoi...waterfall... }, mob = { diff --git a/scripts/zones/Phomiuna_Aqueducts/IDs.lua b/scripts/zones/Phomiuna_Aqueducts/IDs.lua index 66369244ebf..3ab8820bd70 100644 --- a/scripts/zones/Phomiuna_Aqueducts/IDs.lua +++ b/scripts/zones/Phomiuna_Aqueducts/IDs.lua @@ -10,23 +10,24 @@ zones[xi.zone.PHOMIUNA_AQUEDUCTS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_HERE = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - CANNOT_REACH_LADDER = 7218, -- You cannot reach the ladder from here. - DOOR_SEALED_SHUT = 7219, -- The door above you is sealed shut. - DOOR_FIRMLY_SHUT = 7220, -- The door is firmly shut. - DOOR_LOCKED = 7221, -- The door is locked. You might be able to open it with . - ITEM_BREAKS = 7223, -- The breaks! - LAMP_OFFSET = 7227, -- A symbol for fire is engraved on the base of the lamp... - FISHING_MESSAGE_OFFSET = 7240, -- You can't fish here. - COMMON_SENSE_SURVIVAL = 7416, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_HERE = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + CANNOT_REACH_LADDER = 7218, -- You cannot reach the ladder from here. + DOOR_SEALED_SHUT = 7219, -- The door above you is sealed shut. + DOOR_FIRMLY_SHUT = 7220, -- The door is firmly shut. + DOOR_LOCKED = 7221, -- The door is locked. You might be able to open it with . + ITEM_BREAKS = 7223, -- The breaks! + LAMP_OFFSET = 7227, -- A symbol for fire is engraved on the base of the lamp... + FISHING_MESSAGE_OFFSET = 7240, -- You can't fish here. + COMMON_SENSE_SURVIVAL = 7416, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Port_Bastok/IDs.lua b/scripts/zones/Port_Bastok/IDs.lua index e06f6438b28..00d17f336f4 100644 --- a/scripts/zones/Port_Bastok/IDs.lua +++ b/scripts/zones/Port_Bastok/IDs.lua @@ -10,67 +10,68 @@ zones[xi.zone.PORT_BASTOK] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - YOU_LEARNED_TRUST = 6453, -- You learned Trust: ! - CALL_MULTIPLE_ALTER_EGO = 6454, -- You are now able to call multiple alter egos. - HOMEPOINT_SET = 6514, -- Home point set! - CONQUEST_BASE = 6534, -- Tallying conquest results... - TENSHODO_SHOP_OPEN_DIALOG = 6735, -- Ah, one of our members. Welcome to the Tenshodo shop. - MOG_LOCKER_OFFSET = 6833, -- Your Mog Locker lease is valid until , kupo. - FISHING_MESSAGE_OFFSET = 7095, -- You can't fish here. - POWHATAN_DIALOG_1 = 7283, -- I'm sick and tired of entertaining guests. - YOU_ACCEPT_THE_MISSION = 7354, -- You have accepted the mission. - ORIGINAL_MISSION_OFFSET = 7359, -- You can consult the Mission section of the main menu to review your objectives. Speed and efficiency are your priorities. Dismissed. - RONAN_DIALOG_1 = 7469, -- Do something! Isn't there anything you can do to make him come out of his shell? - EVELYN_CLOSED_DIALOG = 7588, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Gustaberg, but it's not easy getting stuff from areas that aren't under Bastokan control. - ROSSWALD_CLOSED_DIALOG = 7589, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Zulkheim, but it's not easy getting stuff from areas that aren't under Bastokan control. - BELKA_CLOSED_DIALOG = 7590, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Derfland, but it's not easy getting stuff from areas that aren't under Bastokan control. - VATTIAN_CLOSED_DIALOG = 7591, -- I'm trying to start a business selling goods from Kuzotz, but it's not easy getting stuff from areas that aren't under Bastokan control. - VALERIANO_SHOP_DIALOG = 7593, -- Welcome to the Troupe Valeriano. Valeriano, at your service! Have a laugh, then spend some cash! Treats and sweets from exotic lands! - SAWYER_SHOP_DIALOG = 7638, -- Hi, there. For here or to go? - MELLOA_SHOP_DIALOG = 7639, -- Welcome to the Steaming Sheep. Would you like something to drink? - ARRIVING_PASSENGER_DIALOG = 7640, -- Hello. This concourse is for arriving passengers. - DEPARTING_PASSENGER_DIALOG = 7641, -- Hello. This concourse is for departing passengers. - EVELYN_OPEN_DIALOG = 7642, -- Hello! Might I interest you in some specialty goods from Gustaberg? - GALVIN_SHOP_DIALOG = 7643, -- Welcome to Galvin's Travel Gear! We do our best to get the best for only the best! - NUMA_SHOP_DIALOG = 7644, -- Hello, hello! Won't you buy something? I'll give you a rebate! - BELKA_OPEN_DIALOG = 7645, -- Welcome. I've got goods from Derfland. Interested? - ROSSWALD_OPEN_DIALOG = 7646, -- Hello, hello! Everything I have is imported directly from Zulkheim! - ILITA_SHOP_DIALOG = 7647, -- Hello there. How about buying to stay in touch with your friends? - SUGANDHI_SHOP_DIALOG = 7648, -- Traveler! I am sure my wares will prove useful on your journey. Why don't you buy some? - DENVIHR_SHOP_DIALOG = 7649, -- Ah, interested in my wares, are you? You can only buy these in Bastok, my friend. - PAUJEAN_DIALOG_1 = 7660, -- Where can you find them? If you're the kind of adventurer I think you are, you should have a pretty good idea. Just don't do anything I wouldn't...heh heh. - MOGHOUSE_EXIT = 7958, -- You have learned your way through the back alleys of Bastok! Now you can exit to any area from your residence. - CONQUEST = 8014, -- You've earned conquest points! - VATTIAN_OPEN_DIALOG = 8374, -- Welcome to my humble establishment. I have a wide variety of specialty goods from Kuzotz. - ZOBYQUHYO_OPEN_DIALOG = 8375, -- Hey therrre! I've got lots of wonderrrful goodies, fresh from the Elshimo Lowlands. - ZOBYQUHYO_CLOSED_DIALOG = 8376, -- I'm trrrying to start a business selling goods from the Elshimo Lowlands, but it's not easy getting stuff from areas that aren't under Bastokan contrrrol. - DHENTEVRYUKOH_OPEN_DIALOG = 8377, -- Welcome! Welcome! Take a wonderrr at these specialty goods from the Elshimo Uplands! - DHENTEVRYUKOH_CLOSED_DIALOG = 8378, -- I'm trrrying to start a business selling goods from the Elshimo Uplands, but it's not easy transporting goods from areas that aren't under Bastokan contrrrol. - UNLOCK_NINJA = 8441, -- You can now become a ninja. - EXTENDED_MISSION_OFFSET = 8479, -- Go to Ore Street and talk to Medicine Eagle. He says he was there when the commotion started. - TITAN_UNLOCKED = 8546, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. - BLABBIVIX_SHOP_DIALOG = 8650, -- I come from the underworld. These chipshhh, you knooow, are popular among us Goblinshhh. Use with heart of shhhtatue. - NOKKHI_BAD_COUNT = 8802, -- What kinda smart-alecky baloney is this!? I told you to bring me the same kinda ammunition in complete sets. And don't forget the flowers, neither. - NOKKHI_GOOD_TRADE = 8804, -- And here you go! Come back soon, and bring your friends! - NOKKHI_BAD_ITEM = 8805, -- I'm real sorry, but there's nothing I can do with those. - ASURAN_FISTS_LEARNED = 8821, -- You have learned the weapon skill Asuran Fists! - BAGNOBROK_CLOSED_DIALOG = 9133, -- Kbastok sis kweak! Smoblins yonly twant gstrong sfriends! Non sgoods mfrom Smovalpolos ytoday! - BAGNOBROK_OPEN_DIALOG = 9134, -- Kbastok! Crepublic sis gstrong! Smoblins lsell sgoods oto gstrong sfriends! - CLOUD_BAD_COUNT = 9229, -- Well, don't just stand there like an idiot! I can't do any bundlin' until you fork over a set of 99 tools and ! And I ain't doin' no more than seven sets at one time, so don't even try it! - CLOUD_GOOD_TRADE = 9233, -- Here, take 'em and scram. And don't say I ain't never did nothin' for you! - CLOUD_BAD_ITEM = 9234, -- What the hell is this junk!? Why don't you try bringin' what I asked for before I shove one of my sandals up your...nose! - OBTAINED_NUM_KEYITEMS = 13061, -- Obtained key item: ! - NOT_ACQUAINTED = 13063, -- I'm sorry, but I don't believe we're acquainted. Please leave me be. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6451, -- Your party is unable to participate because certain members' levels are restricted. + YOU_LEARNED_TRUST = 6453, -- You learned Trust: ! + CALL_MULTIPLE_ALTER_EGO = 6454, -- You are now able to call multiple alter egos. + HOMEPOINT_SET = 6514, -- Home point set! + CONQUEST_BASE = 6534, -- Tallying conquest results... + TENSHODO_SHOP_OPEN_DIALOG = 6735, -- Ah, one of our members. Welcome to the Tenshodo shop. + MOG_LOCKER_OFFSET = 6833, -- Your Mog Locker lease is valid until , kupo. + FISHING_MESSAGE_OFFSET = 7095, -- You can't fish here. + POWHATAN_DIALOG_1 = 7283, -- I'm sick and tired of entertaining guests. + YOU_ACCEPT_THE_MISSION = 7354, -- You have accepted the mission. + ORIGINAL_MISSION_OFFSET = 7359, -- You can consult the Mission section of the main menu to review your objectives. Speed and efficiency are your priorities. Dismissed. + RONAN_DIALOG_1 = 7469, -- Do something! Isn't there anything you can do to make him come out of his shell? + EVELYN_CLOSED_DIALOG = 7588, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Gustaberg, but it's not easy getting stuff from areas that aren't under Bastokan control. + ROSSWALD_CLOSED_DIALOG = 7589, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Zulkheim, but it's not easy getting stuff from areas that aren't under Bastokan control. + BELKA_CLOSED_DIALOG = 7590, -- Sorry, I don't have anything to sell you. I'm trying to start a business selling goods from Derfland, but it's not easy getting stuff from areas that aren't under Bastokan control. + VATTIAN_CLOSED_DIALOG = 7591, -- I'm trying to start a business selling goods from Kuzotz, but it's not easy getting stuff from areas that aren't under Bastokan control. + VALERIANO_SHOP_DIALOG = 7593, -- Welcome to the Troupe Valeriano. Valeriano, at your service! Have a laugh, then spend some cash! Treats and sweets from exotic lands! + SAWYER_SHOP_DIALOG = 7638, -- Hi, there. For here or to go? + MELLOA_SHOP_DIALOG = 7639, -- Welcome to the Steaming Sheep. Would you like something to drink? + ARRIVING_PASSENGER_DIALOG = 7640, -- Hello. This concourse is for arriving passengers. + DEPARTING_PASSENGER_DIALOG = 7641, -- Hello. This concourse is for departing passengers. + EVELYN_OPEN_DIALOG = 7642, -- Hello! Might I interest you in some specialty goods from Gustaberg? + GALVIN_SHOP_DIALOG = 7643, -- Welcome to Galvin's Travel Gear! We do our best to get the best for only the best! + NUMA_SHOP_DIALOG = 7644, -- Hello, hello! Won't you buy something? I'll give you a rebate! + BELKA_OPEN_DIALOG = 7645, -- Welcome. I've got goods from Derfland. Interested? + ROSSWALD_OPEN_DIALOG = 7646, -- Hello, hello! Everything I have is imported directly from Zulkheim! + ILITA_SHOP_DIALOG = 7647, -- Hello there. How about buying to stay in touch with your friends? + SUGANDHI_SHOP_DIALOG = 7648, -- Traveler! I am sure my wares will prove useful on your journey. Why don't you buy some? + DENVIHR_SHOP_DIALOG = 7649, -- Ah, interested in my wares, are you? You can only buy these in Bastok, my friend. + PAUJEAN_DIALOG_1 = 7660, -- Where can you find them? If you're the kind of adventurer I think you are, you should have a pretty good idea. Just don't do anything I wouldn't...heh heh. + MOGHOUSE_EXIT = 7958, -- You have learned your way through the back alleys of Bastok! Now you can exit to any area from your residence. + CONQUEST = 8014, -- You've earned conquest points! + VATTIAN_OPEN_DIALOG = 8374, -- Welcome to my humble establishment. I have a wide variety of specialty goods from Kuzotz. + ZOBYQUHYO_OPEN_DIALOG = 8375, -- Hey therrre! I've got lots of wonderrrful goodies, fresh from the Elshimo Lowlands. + ZOBYQUHYO_CLOSED_DIALOG = 8376, -- I'm trrrying to start a business selling goods from the Elshimo Lowlands, but it's not easy getting stuff from areas that aren't under Bastokan contrrrol. + DHENTEVRYUKOH_OPEN_DIALOG = 8377, -- Welcome! Welcome! Take a wonderrr at these specialty goods from the Elshimo Uplands! + DHENTEVRYUKOH_CLOSED_DIALOG = 8378, -- I'm trrrying to start a business selling goods from the Elshimo Uplands, but it's not easy transporting goods from areas that aren't under Bastokan contrrrol. + UNLOCK_NINJA = 8441, -- You can now become a ninja. + EXTENDED_MISSION_OFFSET = 8479, -- Go to Ore Street and talk to Medicine Eagle. He says he was there when the commotion started. + TITAN_UNLOCKED = 8546, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. + BLABBIVIX_SHOP_DIALOG = 8650, -- I come from the underworld. These chipshhh, you knooow, are popular among us Goblinshhh. Use with heart of shhhtatue. + NOKKHI_BAD_COUNT = 8802, -- What kinda smart-alecky baloney is this!? I told you to bring me the same kinda ammunition in complete sets. And don't forget the flowers, neither. + NOKKHI_GOOD_TRADE = 8804, -- And here you go! Come back soon, and bring your friends! + NOKKHI_BAD_ITEM = 8805, -- I'm real sorry, but there's nothing I can do with those. + ASURAN_FISTS_LEARNED = 8821, -- You have learned the weapon skill Asuran Fists! + BAGNOBROK_CLOSED_DIALOG = 9133, -- Kbastok sis kweak! Smoblins yonly twant gstrong sfriends! Non sgoods mfrom Smovalpolos ytoday! + BAGNOBROK_OPEN_DIALOG = 9134, -- Kbastok! Crepublic sis gstrong! Smoblins lsell sgoods oto gstrong sfriends! + CLOUD_BAD_COUNT = 9229, -- Well, don't just stand there like an idiot! I can't do any bundlin' until you fork over a set of 99 tools and ! And I ain't doin' no more than seven sets at one time, so don't even try it! + CLOUD_GOOD_TRADE = 9233, -- Here, take 'em and scram. And don't say I ain't never did nothin' for you! + CLOUD_BAD_ITEM = 9234, -- What the hell is this junk!? Why don't you try bringin' what I asked for before I shove one of my sandals up your...nose! + OBTAINED_NUM_KEYITEMS = 13061, -- Obtained key item: ! + NOT_ACQUAINTED = 13063, -- I'm sorry, but I don't believe we're acquainted. Please leave me be. }, mob = { diff --git a/scripts/zones/Port_Jeuno/IDs.lua b/scripts/zones/Port_Jeuno/IDs.lua index 71774883860..a57cf883bbf 100644 --- a/scripts/zones/Port_Jeuno/IDs.lua +++ b/scripts/zones/Port_Jeuno/IDs.lua @@ -10,46 +10,47 @@ zones[xi.zone.PORT_JEUNO] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - MYSTIC_RETRIEVER = 6387, -- You cannot obtain the . Speak with the mystic retriever after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 6485, -- Tallying conquest results... - HOMEPOINT_SET = 6646, -- Home point set! - MOG_LOCKER_OFFSET = 6764, -- Your Mog Locker lease is valid until , kupo. - WEATHER_DIALOG = 6862, -- Your fate rides on the changing winds of Vana'diel. I can give you insight on the local weather. - FISHING_MESSAGE_OFFSET = 6910, -- You can't fish here. - GUIDE_STONE = 7026, -- Up: Lower Jeuno (facing Bastok) Down: Qufim Island - DUTY_FREE_SHOP_DIALOG = 7027, -- Hello. All goods are duty-free. - CHALLOUX_SHOP_DIALOG = 7028, -- Good day! - CUMETOUFLAIX_DIALOG = 7066, -- This underground tunnel leads to the island of Qufim. Everyone is advised to stay out. But of course you adventurers never listen. - COUNTER_NPC_2 = 7072, -- With the airships connecting Jeuno with the three nations, the flow of goods has become much more consistent. Nowadays, everything comes through Jeuno! - COUNTER_NPC = 7074, -- I think the airships are a subtle form of pressure on the other three nations. That way, Jeuno can maintain the current balance of power. - DEPARTURE_NPC = 7083, -- Have a safe flight! - ARRIVAL_NPC = 7084, -- Enjoy your stay in Jeuno! - DAPOL_DIALOG = 7097, -- Welcome to Port Jeuno, the busiest airship hub anywhere! You can't miss the awe-inspiring view of airships in flight! - SECURITY_DIALOG = 7100, -- Port Jeuno must remain secure. After all, if anything happened to the archduke, it would change the world! - MOGHOUSE_EXIT = 7181, -- You have learned your way through the back alleys of Jeuno! Now you can exit to any area from your residence. - CHOCOBO_DIALOG = 7203, -- ... - OLD_BOX = 7301, -- You find a grimy old box. - GAVIN_DIALOG = 7371, -- You will need to travel to the Outlands by air. You may apply for one at the designated counter. - ITEM_DELIVERY_DIALOG = 7391, -- Delivering goods to residences everywhere! - CONQUEST = 7401, -- You've earned conquest points! - SAGHEERA_MAX_ABCS = 8042, -- I apologize, but I cannot take any more from you. - SAGHEERA_LACK_ABCS = 8043, -- You have collected the proper materials, but unfortunately you lack the required amount of for payment. - GET_LOST = 8166, -- You want somethin' from me? Well, too bad. I don't want nothin' from you. Get lost. - DRYEYES_1 = 8175, -- Then why you waste my time? Get lost. - DRYEYES_2 = 8176, -- Done deal. Deal is done. You a real sucker----I mean, good customer. Come back soon. And don't forget the goods. - DRYEYES_3 = 8177, -- Hey, you already got . What you tryin' to pull here? Save some for my other customers, eh? - OBTAINED_NUM_KEYITEMS = 8467, -- Obtained key item: ! - CHEST_IS_EMPTY = 8665, -- The chest is empty. - KINDLIX_SHOP_DIALOG = 8684, -- Our fam'ly peddle sky flowers. You want have nice scenery? Send fireworks sky high! It's great feeling. Bwee hee hee. - PYROPOX_SHOP_DIALOG = 8688, -- Bwee hee. I get fireworks from all 'round globe. Kindlix never sell more than me. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + MYSTIC_RETRIEVER = 6387, -- You cannot obtain the . Speak with the mystic retriever after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6451, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 6485, -- Tallying conquest results... + HOMEPOINT_SET = 6646, -- Home point set! + MOG_LOCKER_OFFSET = 6764, -- Your Mog Locker lease is valid until , kupo. + WEATHER_DIALOG = 6862, -- Your fate rides on the changing winds of Vana'diel. I can give you insight on the local weather. + FISHING_MESSAGE_OFFSET = 6910, -- You can't fish here. + GUIDE_STONE = 7026, -- Up: Lower Jeuno (facing Bastok) Down: Qufim Island + DUTY_FREE_SHOP_DIALOG = 7027, -- Hello. All goods are duty-free. + CHALLOUX_SHOP_DIALOG = 7028, -- Good day! + CUMETOUFLAIX_DIALOG = 7066, -- This underground tunnel leads to the island of Qufim. Everyone is advised to stay out. But of course you adventurers never listen. + COUNTER_NPC_2 = 7072, -- With the airships connecting Jeuno with the three nations, the flow of goods has become much more consistent. Nowadays, everything comes through Jeuno! + COUNTER_NPC = 7074, -- I think the airships are a subtle form of pressure on the other three nations. That way, Jeuno can maintain the current balance of power. + DEPARTURE_NPC = 7083, -- Have a safe flight! + ARRIVAL_NPC = 7084, -- Enjoy your stay in Jeuno! + DAPOL_DIALOG = 7097, -- Welcome to Port Jeuno, the busiest airship hub anywhere! You can't miss the awe-inspiring view of airships in flight! + SECURITY_DIALOG = 7100, -- Port Jeuno must remain secure. After all, if anything happened to the archduke, it would change the world! + MOGHOUSE_EXIT = 7181, -- You have learned your way through the back alleys of Jeuno! Now you can exit to any area from your residence. + CHOCOBO_DIALOG = 7203, -- ... + OLD_BOX = 7301, -- You find a grimy old box. + GAVIN_DIALOG = 7371, -- You will need to travel to the Outlands by air. You may apply for one at the designated counter. + ITEM_DELIVERY_DIALOG = 7391, -- Delivering goods to residences everywhere! + CONQUEST = 7401, -- You've earned conquest points! + SAGHEERA_MAX_ABCS = 8042, -- I apologize, but I cannot take any more from you. + SAGHEERA_LACK_ABCS = 8043, -- You have collected the proper materials, but unfortunately you lack the required amount of for payment. + GET_LOST = 8166, -- You want somethin' from me? Well, too bad. I don't want nothin' from you. Get lost. + DRYEYES_1 = 8175, -- Then why you waste my time? Get lost. + DRYEYES_2 = 8176, -- Done deal. Deal is done. You a real sucker----I mean, good customer. Come back soon. And don't forget the goods. + DRYEYES_3 = 8177, -- Hey, you already got . What you tryin' to pull here? Save some for my other customers, eh? + OBTAINED_NUM_KEYITEMS = 8467, -- Obtained key item: ! + CHEST_IS_EMPTY = 8665, -- The chest is empty. + KINDLIX_SHOP_DIALOG = 8684, -- Our fam'ly peddle sky flowers. You want have nice scenery? Send fireworks sky high! It's great feeling. Bwee hee hee. + PYROPOX_SHOP_DIALOG = 8688, -- Bwee hee. I get fireworks from all 'round globe. Kindlix never sell more than me. }, mob = { diff --git a/scripts/zones/Port_San_dOria/IDs.lua b/scripts/zones/Port_San_dOria/IDs.lua index 81fbad1935e..43b279fd7f8 100644 --- a/scripts/zones/Port_San_dOria/IDs.lua +++ b/scripts/zones/Port_San_dOria/IDs.lua @@ -22,6 +22,7 @@ zones[xi.zone.PORT_SAN_DORIA] = CARRIED_OVER_POINTS = 6473, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 6474, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 6475, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6495, -- Your party is unable to participate because certain members' levels are restricted. MOG_LOCKER_OFFSET = 6609, -- Your Mog Locker lease is valid until , kupo. CONQUEST_BASE = 7079, -- Tallying conquest results... FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. diff --git a/scripts/zones/Port_Windurst/IDs.lua b/scripts/zones/Port_Windurst/IDs.lua index 143bb4213b7..7b6cc2c532f 100644 --- a/scripts/zones/Port_Windurst/IDs.lua +++ b/scripts/zones/Port_Windurst/IDs.lua @@ -46,6 +46,7 @@ zones[xi.zone.PORT_WINDURST] = CARRIED_OVER_POINTS = 11012, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 11013, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 11014, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 11034, -- Your party is unable to participate because certain members' levels are restricted. HOMEPOINT_SET = 11070, -- Home point set! YOU_ACCEPT_THE_MISSION = 11163, -- You have accepted the mission. KHEL_PAHLHAMA_SHOP_DIALOG = 11209, -- These magic shells are full of mysteries... diff --git a/scripts/zones/Promyvion-Dem/IDs.lua b/scripts/zones/Promyvion-Dem/IDs.lua index 176a21deb03..80edb9f5f4d 100644 --- a/scripts/zones/Promyvion-Dem/IDs.lua +++ b/scripts/zones/Promyvion-Dem/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.PROMYVION_DEM] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BARRIER_WOVEN = 7219, -- It appears to be a barrier woven from the energy of overflowing memories... + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + BARRIER_WOVEN = 7219, -- It appears to be a barrier woven from the energy of overflowing memories... }, mob = { diff --git a/scripts/zones/Promyvion-Holla/IDs.lua b/scripts/zones/Promyvion-Holla/IDs.lua index 3f369b5126a..8c7b34d3e9b 100644 --- a/scripts/zones/Promyvion-Holla/IDs.lua +++ b/scripts/zones/Promyvion-Holla/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.PROMYVION_HOLLA] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BARRIER_WOVEN = 7219, -- It appears to be a barrier woven from the energy of overflowing memories... + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + BARRIER_WOVEN = 7219, -- It appears to be a barrier woven from the energy of overflowing memories... }, mob = { diff --git a/scripts/zones/Promyvion-Mea/IDs.lua b/scripts/zones/Promyvion-Mea/IDs.lua index 4c89915c093..4eb680f05e5 100644 --- a/scripts/zones/Promyvion-Mea/IDs.lua +++ b/scripts/zones/Promyvion-Mea/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.PROMYVION_MEA] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BARRIER_WOVEN = 7219, -- It appears to be a barrier woven from the energy of overflowing memories... + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + BARRIER_WOVEN = 7219, -- It appears to be a barrier woven from the energy of overflowing memories... }, mob = { diff --git a/scripts/zones/Promyvion-Vahzl/IDs.lua b/scripts/zones/Promyvion-Vahzl/IDs.lua index 06e2db7fc3a..53c5a7a0c1b 100644 --- a/scripts/zones/Promyvion-Vahzl/IDs.lua +++ b/scripts/zones/Promyvion-Vahzl/IDs.lua @@ -10,20 +10,21 @@ zones[xi.zone.PROMYVION_VAHZL] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - OVERFLOWING_MEMORIES = 7219, -- It appears to be a barrier woven from the energy of overflowing memories... - ON_NM_SPAWN = 7223, -- You sense a dark, empty presence... - EERIE_GREEN_GLOW = 7225, -- The sphere is emitting an eerie green glow. - AMULET_RETURNED = 7268, -- The has been returned to you. - LIGHT_OF_VAHZL = 7269, -- You cannot remember when exactly, but you have obtained ! - POPPED_NM_OFFSET = 7305, -- Remnants of a cerebrator lie scattered about the area. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + OVERFLOWING_MEMORIES = 7219, -- It appears to be a barrier woven from the energy of overflowing memories... + ON_NM_SPAWN = 7223, -- You sense a dark, empty presence... + EERIE_GREEN_GLOW = 7225, -- The sphere is emitting an eerie green glow. + AMULET_RETURNED = 7268, -- The has been returned to you. + LIGHT_OF_VAHZL = 7269, -- You cannot remember when exactly, but you have obtained ! + POPPED_NM_OFFSET = 7305, -- Remnants of a cerebrator lie scattered about the area. }, mob = { diff --git a/scripts/zones/Provenance/IDs.lua b/scripts/zones/Provenance/IDs.lua index 78ac50a8140..d0d0405358b 100644 --- a/scripts/zones/Provenance/IDs.lua +++ b/scripts/zones/Provenance/IDs.lua @@ -10,15 +10,16 @@ zones[xi.zone.PROVENANCE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7322, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7335, -- All party members have fallen in battle. Leaving the battlefield in # minute[/s]. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7322, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7335, -- All party members have fallen in battle. Leaving the battlefield in # minute[/s]. }, mob = { diff --git a/scripts/zones/PsoXja/IDs.lua b/scripts/zones/PsoXja/IDs.lua index 94492fb333f..4b7690eaf8b 100644 --- a/scripts/zones/PsoXja/IDs.lua +++ b/scripts/zones/PsoXja/IDs.lua @@ -10,28 +10,29 @@ zones[xi.zone.PSOXJA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7079, -- Tallying conquest results... - DEVICE_IN_OPERATION = 7238, -- The device appears to be in operation... - DOOR_LOCKED = 7241, -- The door is locked. - ARCH_GLOW_BLUE = 7242, -- The arch above the door is glowing blue... - ARCH_GLOW_GREEN = 7243, -- The arch above the door is glowing green... - CANNOT_OPEN_SIDE = 7246, -- The door cannot be opened from this side. - TRAP_ACTIVATES = 7248, -- examines the door. A trap connected to it has been activated! - TRAP_FAILS = 7249, -- examines the door. The trap connected to it fails to activate. - DISCOVER_DISARM_FAIL = 7250, -- discovers a trap connected to the door, but fails to disarm it! - DISCOVER_DISARM_SUCCESS = 7251, -- discovers a trap connected to the door and succeeds in disarming it! - TRAP_ACTIVATED = 7253, -- examines the stone compartment. A trap connected to it has been activated! - CHEST_UNLOCKED = 7471, -- You unlock the chest! - BROKEN_KNIFE = 7479, -- A broken knife blade can be seen among the rubble... - HOMEPOINT_SET = 7484, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7079, -- Tallying conquest results... + DEVICE_IN_OPERATION = 7238, -- The device appears to be in operation... + DOOR_LOCKED = 7241, -- The door is locked. + ARCH_GLOW_BLUE = 7242, -- The arch above the door is glowing blue... + ARCH_GLOW_GREEN = 7243, -- The arch above the door is glowing green... + CANNOT_OPEN_SIDE = 7246, -- The door cannot be opened from this side. + TRAP_ACTIVATES = 7248, -- examines the door. A trap connected to it has been activated! + TRAP_FAILS = 7249, -- examines the door. The trap connected to it fails to activate. + DISCOVER_DISARM_FAIL = 7250, -- discovers a trap connected to the door, but fails to disarm it! + DISCOVER_DISARM_SUCCESS = 7251, -- discovers a trap connected to the door and succeeds in disarming it! + TRAP_ACTIVATED = 7253, -- examines the stone compartment. A trap connected to it has been activated! + CHEST_UNLOCKED = 7471, -- You unlock the chest! + BROKEN_KNIFE = 7479, -- A broken knife blade can be seen among the rubble... + HOMEPOINT_SET = 7484, -- Home point set! }, mob = { diff --git a/scripts/zones/QuBia_Arena/IDs.lua b/scripts/zones/QuBia_Arena/IDs.lua index 390b0d6b38a..2cc69257a57 100644 --- a/scripts/zones/QuBia_Arena/IDs.lua +++ b/scripts/zones/QuBia_Arena/IDs.lua @@ -10,36 +10,37 @@ zones[xi.zone.QUBIA_ARENA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - FLAT_PREPARE = 7630, -- I am Trion, of San d'Oria! - FLAT_LAND = 7631, -- Feel the fire of my forefathers! - RLB_PREPARE = 7632, -- The darkness before me that shrouds the light of good... - RLB_LAND = 7633, -- ...Return to the hell you crawled out from! - SAVAGE_PREPARE = 7634, -- The anger, the pain, and the will to survive... Let the spirit of San d'Oria converge within this blade. - SAVAGE_LAND = 7635, -- And with this blade I will return the glory to my kingdom's people! - YOU_DECIDED_TO_SHOW_UP = 7636, -- So, you decided to show up. Now it's time to see what you're really made of, heh heh heh. - LOOKS_LIKE_YOU_WERENT_READY = 7637, -- Looks like you weren't ready for me, were you? Now go home, wash your face, and come back when you think you've got what it takes. - YOUVE_COME_A_LONG_WAY = 7638, -- Hm. That was a mighty fine display of skill there, . You've come a long way... - TEACH_YOU_TO_RESPECT_ELDERS = 7639, -- I'll teach you to respect your elders! - TAKE_THAT_YOU_WHIPPERSNAPPER = 7640, -- Take that, you whippersnapper! - NOW_THAT_IM_WARMED_UP = 7641, -- Now that I'm warmed up... - THAT_LL_HURT_IN_THE_MORNING = 7642, -- Ungh... That'll hurt in the morning... - PROMISE_ME_YOU_WONT_GO_DOWN = 8012, -- Promise you won't go down too easy, okay? - IM_JUST_GETTING_WARMED_UP = 8013, -- Haha! I'm just getting warmed up! - YOU_PACKED_MORE_OF_A_PUNCH = 8014, -- Hah! You pack more of a punch than I thoughtaru. But I won't go down as easy as old Maat! - WHATS_THIS_STRANGE_FEELING = 8015, -- What's this strange feeling...? It's not supposed to end...like... - HUH_IS_THAT_ALL = 8016, -- Huh? Is that all? I haven't even broken a sweataru... - YIKEY_WIKEYS = 8017, -- Yikey-wikeys! Get that thing away from meee! - WHATS_THE_MATTARU = 8018, -- ... What's the mattaru, ? Too much of a pansy-wansy to fight fair? + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + FLAT_PREPARE = 7630, -- I am Trion, of San d'Oria! + FLAT_LAND = 7631, -- Feel the fire of my forefathers! + RLB_PREPARE = 7632, -- The darkness before me that shrouds the light of good... + RLB_LAND = 7633, -- ...Return to the hell you crawled out from! + SAVAGE_PREPARE = 7634, -- The anger, the pain, and the will to survive... Let the spirit of San d'Oria converge within this blade. + SAVAGE_LAND = 7635, -- And with this blade I will return the glory to my kingdom's people! + YOU_DECIDED_TO_SHOW_UP = 7636, -- So, you decided to show up. Now it's time to see what you're really made of, heh heh heh. + LOOKS_LIKE_YOU_WERENT_READY = 7637, -- Looks like you weren't ready for me, were you? Now go home, wash your face, and come back when you think you've got what it takes. + YOUVE_COME_A_LONG_WAY = 7638, -- Hm. That was a mighty fine display of skill there, . You've come a long way... + TEACH_YOU_TO_RESPECT_ELDERS = 7639, -- I'll teach you to respect your elders! + TAKE_THAT_YOU_WHIPPERSNAPPER = 7640, -- Take that, you whippersnapper! + NOW_THAT_IM_WARMED_UP = 7641, -- Now that I'm warmed up... + THAT_LL_HURT_IN_THE_MORNING = 7642, -- Ungh... That'll hurt in the morning... + PROMISE_ME_YOU_WONT_GO_DOWN = 8012, -- Promise you won't go down too easy, okay? + IM_JUST_GETTING_WARMED_UP = 8013, -- Haha! I'm just getting warmed up! + YOU_PACKED_MORE_OF_A_PUNCH = 8014, -- Hah! You pack more of a punch than I thoughtaru. But I won't go down as easy as old Maat! + WHATS_THIS_STRANGE_FEELING = 8015, -- What's this strange feeling...? It's not supposed to end...like... + HUH_IS_THAT_ALL = 8016, -- Huh? Is that all? I haven't even broken a sweataru... + YIKEY_WIKEYS = 8017, -- Yikey-wikeys! Get that thing away from meee! + WHATS_THE_MATTARU = 8018, -- ... What's the mattaru, ? Too much of a pansy-wansy to fight fair? }, mob = { diff --git a/scripts/zones/Qufim_Island/IDs.lua b/scripts/zones/Qufim_Island/IDs.lua index 2a64beb0d18..296b56b6402 100644 --- a/scripts/zones/Qufim_Island/IDs.lua +++ b/scripts/zones/Qufim_Island/IDs.lua @@ -23,6 +23,7 @@ zones[xi.zone.QUFIM_ISLAND] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. diff --git a/scripts/zones/Quicksand_Caves/IDs.lua b/scripts/zones/Quicksand_Caves/IDs.lua index e79b9df5de9..22606344fd9 100644 --- a/scripts/zones/Quicksand_Caves/IDs.lua +++ b/scripts/zones/Quicksand_Caves/IDs.lua @@ -10,36 +10,37 @@ zones[xi.zone.QUICKSAND_CAVES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... - NOW_IS_NOT_THE_TIME = 6406, -- Now is not the time for that! - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - CHEST_UNLOCKED = 7324, -- You unlock the chest! - DOOR_FIRMLY_SHUT = 7332, -- The door is firmly shut. - ANCIENT_LETTERS_UNREAD = 7341, -- Ancient letters are carved here, but you are unable to read them. - POOL_OF_WATER = 7364, -- It is a pool of water. - SENSE_SOMETHING_EVIL = 7365, -- You sense something evil. - YOU_FIND_NOTHING_OUT = 7366, -- You find nothing out of the ordinary. - YOU_FIND_NOTHING = 7367, -- You find nothing. - SOMETHING_ATTACKING_YOU = 7371, -- Something is attacking from behind you! - SOMETHING_IS_BURIED = 7372, -- Something is buried in this fallen pillar. - SENSE_OMINOUS_PRESENCE = 7376, -- You sense an ominous presence... - PLAYER_OBTAINS_ITEM = 8284, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8285, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8286, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8287, -- You already possess that temporary item. - NO_COMBINATION = 8292, -- You were unable to enter a combination. - REGIME_REGISTERED = 10370, -- New training regime registered! - HOMEPOINT_SET = 11432, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... + NOW_IS_NOT_THE_TIME = 6406, -- Now is not the time for that! + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + CHEST_UNLOCKED = 7324, -- You unlock the chest! + DOOR_FIRMLY_SHUT = 7332, -- The door is firmly shut. + ANCIENT_LETTERS_UNREAD = 7341, -- Ancient letters are carved here, but you are unable to read them. + POOL_OF_WATER = 7364, -- It is a pool of water. + SENSE_SOMETHING_EVIL = 7365, -- You sense something evil. + YOU_FIND_NOTHING_OUT = 7366, -- You find nothing out of the ordinary. + YOU_FIND_NOTHING = 7367, -- You find nothing. + SOMETHING_ATTACKING_YOU = 7371, -- Something is attacking from behind you! + SOMETHING_IS_BURIED = 7372, -- Something is buried in this fallen pillar. + SENSE_OMINOUS_PRESENCE = 7376, -- You sense an ominous presence... + PLAYER_OBTAINS_ITEM = 8284, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8285, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8286, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8287, -- You already possess that temporary item. + NO_COMBINATION = 8292, -- You were unable to enter a combination. + REGIME_REGISTERED = 10370, -- New training regime registered! + HOMEPOINT_SET = 11432, -- Home point set! }, mob = { diff --git a/scripts/zones/Qulun_Dome/IDs.lua b/scripts/zones/Qulun_Dome/IDs.lua index 329b1f51ceb..ca16c11cb9c 100644 --- a/scripts/zones/Qulun_Dome/IDs.lua +++ b/scripts/zones/Qulun_Dome/IDs.lua @@ -18,6 +18,7 @@ zones[xi.zone.QULUN_DOME] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7057, -- Tallying conquest results... IT_SEEMS_TO_BE_LOCKED_BY_POWERFUL_MAGIC = 7216, -- A door... It seems to be locked by powerful magic. THE_3_ITEMS_GLOW_FAINTLY = 7217, -- The , , and glow faintly. diff --git a/scripts/zones/RaKaznar_Inner_Court/IDs.lua b/scripts/zones/RaKaznar_Inner_Court/IDs.lua index 682d97190df..b74599ba58c 100644 --- a/scripts/zones/RaKaznar_Inner_Court/IDs.lua +++ b/scripts/zones/RaKaznar_Inner_Court/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.RAKAZNAR_INNER_COURT] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - HOMEPOINT_SET = 7690, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + HOMEPOINT_SET = 7690, -- Home point set! }, mob = { diff --git a/scripts/zones/RaKaznar_Turris/IDs.lua b/scripts/zones/RaKaznar_Turris/IDs.lua index 94400045753..112d4f8961c 100644 --- a/scripts/zones/RaKaznar_Turris/IDs.lua +++ b/scripts/zones/RaKaznar_Turris/IDs.lua @@ -10,15 +10,16 @@ zones[xi.zone.RAKAZNAR_TURRIS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 8031, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 8038, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 8031, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 8038, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Rabao/IDs.lua b/scripts/zones/Rabao/IDs.lua index 57c5f311fe3..5739302432e 100644 --- a/scripts/zones/Rabao/IDs.lua +++ b/scripts/zones/Rabao/IDs.lua @@ -10,34 +10,35 @@ zones[xi.zone.RABAO] = { text = { - HOMEPOINT_SET = 2, -- Home point set! - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - NOT_HAVE_ENOUGH_GIL = 6417, -- You do not have enough gil. - CARRIED_OVER_POINTS = 6451, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6452, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6453, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 6507, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 6666, -- You can't fish here. - REGIME_CANCELED = 6866, -- Current training regime canceled. - HUNT_ACCEPTED = 6884, -- Hunt accepted! - USE_SCYLDS = 6885, -- You use [scyld/scylds]. Scyld balance: . - HUNT_RECORDED = 6896, -- You record your hunt. - OBTAIN_SCYLDS = 6898, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. - HUNT_CANCELED = 6902, -- Hunt canceled. - PAKHI_DELIVERY_DIALOG = 10034, -- When your pack is fit to burrrst, send your non-essential items to your delivery box and bam, prrroblem solved! - SPIRIT_DELIVERY_DIALOG = 10035, -- We can deliver goods to your residence or to the residences of your friends. - SHINY_TEETH_SHOP_DIALOG = 10039, -- Well met, adventurer. If you're looking for a weapon to carve through those desert beasts, you've come to the right place. - BRAVEWOLF_SHOP_DIALOG = 10040, -- For rainy days and windy days, or for days when someone tries to thrust a spear in your guts, having a good set of armor can set your mind at ease. - BRAVEOX_SHOP_DIALOG = 10041, -- These days, you can get weapons and armor cheap at the auction houses. But magic is expensive no matter where you go. - SCAMPLIX_SHOP_DIALOG = 10042, -- No problem, Scamplix not bad guy. Scamplix is good guy, sells stuff to adventurers. Scamplix got lots of good stuff for you. - GARUDA_UNLOCKED = 10119, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. - NOMAD_MOOGLE_DIALOG = 10187, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. - GENEROIT_SHOP_DIALOG = 10305, -- Ho there! I am called Generoit. I have everything here for the chocobo enthusiast, and other rare items galore. - RETRIEVE_DIALOG_ID = 10761, -- You retrieve from the porter moogle's care. - COMMON_SENSE_SURVIVAL = 11839, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + HOMEPOINT_SET = 2, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + NOT_HAVE_ENOUGH_GIL = 6417, -- You do not have enough gil. + CARRIED_OVER_POINTS = 6451, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6452, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6453, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6473, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 6507, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 6666, -- You can't fish here. + REGIME_CANCELED = 6866, -- Current training regime canceled. + HUNT_ACCEPTED = 6884, -- Hunt accepted! + USE_SCYLDS = 6885, -- You use [scyld/scylds]. Scyld balance: . + HUNT_RECORDED = 6896, -- You record your hunt. + OBTAIN_SCYLDS = 6898, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. + HUNT_CANCELED = 6902, -- Hunt canceled. + PAKHI_DELIVERY_DIALOG = 10034, -- When your pack is fit to burrrst, send your non-essential items to your delivery box and bam, prrroblem solved! + SPIRIT_DELIVERY_DIALOG = 10035, -- We can deliver goods to your residence or to the residences of your friends. + SHINY_TEETH_SHOP_DIALOG = 10039, -- Well met, adventurer. If you're looking for a weapon to carve through those desert beasts, you've come to the right place. + BRAVEWOLF_SHOP_DIALOG = 10040, -- For rainy days and windy days, or for days when someone tries to thrust a spear in your guts, having a good set of armor can set your mind at ease. + BRAVEOX_SHOP_DIALOG = 10041, -- These days, you can get weapons and armor cheap at the auction houses. But magic is expensive no matter where you go. + SCAMPLIX_SHOP_DIALOG = 10042, -- No problem, Scamplix not bad guy. Scamplix is good guy, sells stuff to adventurers. Scamplix got lots of good stuff for you. + GARUDA_UNLOCKED = 10119, -- You are now able to summon [Ifrit/Titan/Leviathan/Garuda/Shiva/Ramuh]. + NOMAD_MOOGLE_DIALOG = 10187, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. + GENEROIT_SHOP_DIALOG = 10305, -- Ho there! I am called Generoit. I have everything here for the chocobo enthusiast, and other rare items galore. + RETRIEVE_DIALOG_ID = 10761, -- You retrieve from the porter moogle's care. + COMMON_SENSE_SURVIVAL = 11839, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Rala_Waterways/IDs.lua b/scripts/zones/Rala_Waterways/IDs.lua index 9ceb7324c3b..42b6ad3da97 100644 --- a/scripts/zones/Rala_Waterways/IDs.lua +++ b/scripts/zones/Rala_Waterways/IDs.lua @@ -10,19 +10,20 @@ zones[xi.zone.RALA_WATERWAYS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BAYLD_OBTAINED = 7007, -- You have obtained bayld! - NOTHING_HAPPENS = 8072, -- Nothing happens. - PERHAPS_THE_WISEST = 8073, -- Perhaps the wisest approach would be to search for with which to open the decrepit sluice gate. - A_QUICK_GLANCE_REVEALS = 8695, -- A quick glance reveals spoiled water trickling from upstream, likely caused by effluvium from the recent destruction. - THREE_BLOOD_SIGILS_PULSE = 8919, -- The three blood sigils begin to pulse a violent crimson! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + BAYLD_OBTAINED = 7007, -- You have obtained bayld! + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + NOTHING_HAPPENS = 8072, -- Nothing happens. + PERHAPS_THE_WISEST = 8073, -- Perhaps the wisest approach would be to search for with which to open the decrepit sluice gate. + A_QUICK_GLANCE_REVEALS = 8695, -- A quick glance reveals spoiled water trickling from upstream, likely caused by effluvium from the recent destruction. + THREE_BLOOD_SIGILS_PULSE = 8919, -- The three blood sigils begin to pulse a violent crimson! }, mob = { diff --git a/scripts/zones/Rala_Waterways_U/IDs.lua b/scripts/zones/Rala_Waterways_U/IDs.lua index a442a26ce19..78eea4b9ef6 100644 --- a/scripts/zones/Rala_Waterways_U/IDs.lua +++ b/scripts/zones/Rala_Waterways_U/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.RALA_WATERWAYS_U] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Ranguemont_Pass/IDs.lua b/scripts/zones/Ranguemont_Pass/IDs.lua index 807922c9292..07ef33669ea 100644 --- a/scripts/zones/Ranguemont_Pass/IDs.lua +++ b/scripts/zones/Ranguemont_Pass/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.RANGUEMONT_PASS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - REGIME_REGISTERED = 9526, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 10578, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 10579, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 10580, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 10581, -- You already possess that temporary item. - NO_COMBINATION = 10586, -- You were unable to enter a combination. - COMMON_SENSE_SURVIVAL = 10677, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7012, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + REGIME_REGISTERED = 9526, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 10578, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 10579, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 10580, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 10581, -- You already possess that temporary item. + NO_COMBINATION = 10586, -- You were unable to enter a combination. + COMMON_SENSE_SURVIVAL = 10677, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Reisenjima/IDs.lua b/scripts/zones/Reisenjima/IDs.lua index 60de750aae6..7a7d9ba6629 100644 --- a/scripts/zones/Reisenjima/IDs.lua +++ b/scripts/zones/Reisenjima/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.REISENJIMA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Reisenjima_Henge/IDs.lua b/scripts/zones/Reisenjima_Henge/IDs.lua index 60058759161..094bcc86a3d 100644 --- a/scripts/zones/Reisenjima_Henge/IDs.lua +++ b/scripts/zones/Reisenjima_Henge/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.REISENJIMA_HENGE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Reisenjima_Sanctorium/IDs.lua b/scripts/zones/Reisenjima_Sanctorium/IDs.lua index 19f2b9fc947..990a5635368 100644 --- a/scripts/zones/Reisenjima_Sanctorium/IDs.lua +++ b/scripts/zones/Reisenjima_Sanctorium/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.REISENJIMA_SANCTORIUM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7666, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7673, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7666, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7673, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Riverne-Site_A01/IDs.lua b/scripts/zones/Riverne-Site_A01/IDs.lua index 050ce63725c..84d5bc74c18 100644 --- a/scripts/zones/Riverne-Site_A01/IDs.lua +++ b/scripts/zones/Riverne-Site_A01/IDs.lua @@ -10,23 +10,24 @@ zones[xi.zone.RIVERNE_SITE_A01] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - A_GLOWING_MIST = 7252, -- A glowing mist of ever-changing proportions floats before you... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - SD_VERY_SMALL = 7595, -- The spatial displacement is very small. If you only had some item that could make it bigger... - SD_HAS_GROWN = 7596, -- The spatial displacement has grown. - SPACE_SEEMS_DISTORTED = 7597, -- The space around you seems oddly distorted and disrupted. - MONUMENT = 7604, -- Something has been engraved on this stone, but the message is too difficult to make out. - HOMEPOINT_SET = 7732, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + A_GLOWING_MIST = 7252, -- A glowing mist of ever-changing proportions floats before you... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + SD_VERY_SMALL = 7595, -- The spatial displacement is very small. If you only had some item that could make it bigger... + SD_HAS_GROWN = 7596, -- The spatial displacement has grown. + SPACE_SEEMS_DISTORTED = 7597, -- The space around you seems oddly distorted and disrupted. + MONUMENT = 7604, -- Something has been engraved on this stone, but the message is too difficult to make out. + HOMEPOINT_SET = 7732, -- Home point set! }, mob = { diff --git a/scripts/zones/Riverne-Site_B01/IDs.lua b/scripts/zones/Riverne-Site_B01/IDs.lua index a01dba6b78b..8c65e64ace7 100644 --- a/scripts/zones/Riverne-Site_B01/IDs.lua +++ b/scripts/zones/Riverne-Site_B01/IDs.lua @@ -10,24 +10,25 @@ zones[xi.zone.RIVERNE_SITE_B01] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - SD_VERY_SMALL = 7593, -- The spatial displacement is very small. If you only had some item that could make it bigger... - SD_HAS_GROWN = 7594, -- The spatial displacement has grown. - SPACE_SEEMS_DISTORTED = 7595, -- The space around you seems oddly distorted and disrupted. - MONUMENT = 7601, -- Something has been engraved on this stone, but the message is too difficult to make out. - GROUND_GIVING_HEAT = 7603, -- The ground here is giving off heat. - BAHAMUT_TAUNT = 7671, -- Children of Vana'diel, what do you think to accomplish by fighting for your lives? You know your efforts are futile, yet still you resist... - HOMEPOINT_SET = 7707, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + SD_VERY_SMALL = 7593, -- The spatial displacement is very small. If you only had some item that could make it bigger... + SD_HAS_GROWN = 7594, -- The spatial displacement has grown. + SPACE_SEEMS_DISTORTED = 7595, -- The space around you seems oddly distorted and disrupted. + MONUMENT = 7601, -- Something has been engraved on this stone, but the message is too difficult to make out. + GROUND_GIVING_HEAT = 7603, -- The ground here is giving off heat. + BAHAMUT_TAUNT = 7671, -- Children of Vana'diel, what do you think to accomplish by fighting for your lives? You know your efforts are futile, yet still you resist... + HOMEPOINT_SET = 7707, -- Home point set! }, mob = { diff --git a/scripts/zones/RoMaeve/IDs.lua b/scripts/zones/RoMaeve/IDs.lua index b832183a472..c273034d076 100644 --- a/scripts/zones/RoMaeve/IDs.lua +++ b/scripts/zones/RoMaeve/IDs.lua @@ -10,29 +10,30 @@ zones[xi.zone.ROMAEVE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - PILE_OF_RUBBLE = 7398, -- It is nothing but a pile of rubble. - A_CHILL_RUNS_DOWN_SPINE = 7399, -- A chill runs down your spine. - SENSE_OMINOUS_PRESENCE = 7402, -- You sense an ominous presence... - ITEMS_ITEMS_LA_LA = 7405, -- You can hear a strange voice... Items, items, la la la la la - GOBLIN_SLIPPED_AWAY = 7411, -- The Goblin slipped away when you were not looking... - PLAYER_OBTAINS_ITEM = 7434, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7435, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7436, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7437, -- You already possess that temporary item. - NO_COMBINATION = 7442, -- You were unable to enter a combination. - REGIME_REGISTERED = 9620, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 11630, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + PILE_OF_RUBBLE = 7398, -- It is nothing but a pile of rubble. + A_CHILL_RUNS_DOWN_SPINE = 7399, -- A chill runs down your spine. + SENSE_OMINOUS_PRESENCE = 7402, -- You sense an ominous presence... + ITEMS_ITEMS_LA_LA = 7405, -- You can hear a strange voice... Items, items, la la la la la + GOBLIN_SLIPPED_AWAY = 7411, -- The Goblin slipped away when you were not looking... + PLAYER_OBTAINS_ITEM = 7434, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7435, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7436, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7437, -- You already possess that temporary item. + NO_COMBINATION = 7442, -- You were unable to enter a combination. + REGIME_REGISTERED = 9620, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 11630, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Rolanberry_Fields/IDs.lua b/scripts/zones/Rolanberry_Fields/IDs.lua index c564132493e..bed34e3a7c2 100644 --- a/scripts/zones/Rolanberry_Fields/IDs.lua +++ b/scripts/zones/Rolanberry_Fields/IDs.lua @@ -10,42 +10,43 @@ zones[xi.zone.ROLANBERRY_FIELDS] = { text = { - NOTHING_HAPPENS = 141, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - NOT_ENOUGH_GIL = 6417, -- You do not have enough gil. - FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - UNABLE_TO_PROGRESS = 7069, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. - CONQUEST_BASE = 7079, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. - SIGN = 7408, -- North: Grand Duchy of Jeuno, Sauromugue Champaign South: Pashhow Marshlands - PLAYER_OBTAINS_ITEM = 7600, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7601, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7602, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7603, -- You already possess that temporary item. - NO_COMBINATION = 7608, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 7639, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 9786, -- New training regime registered! - VOIDWALKER_NO_MOB = 10959, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 10960, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 10961, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 10962, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 10964, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 10965, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 10966, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 10967, -- Obtained key item: ! - AWAIT_YOUR_CHALLENGE = 12186, -- We await your challenge, traveler. - LACK_LEGION_POINTS = 12223, -- It would seem that you lack the necessary amount of Legion points. - LEARNS_SPELL = 12271, -- learns ! - UNCANNY_SENSATION = 12273, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 12280, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 141, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + NOT_ENOUGH_GIL = 6417, -- You do not have enough gil. + FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. + UNABLE_TO_PROGRESS = 7069, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. + CONQUEST_BASE = 7079, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. + SIGN = 7408, -- North: Grand Duchy of Jeuno, Sauromugue Champaign South: Pashhow Marshlands + PLAYER_OBTAINS_ITEM = 7600, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7601, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7602, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7603, -- You already possess that temporary item. + NO_COMBINATION = 7608, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 7639, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 9786, -- New training regime registered! + VOIDWALKER_NO_MOB = 10959, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 10960, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 10961, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 10962, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 10964, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 10965, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 10966, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 10967, -- Obtained key item: ! + AWAIT_YOUR_CHALLENGE = 12186, -- We await your challenge, traveler. + LACK_LEGION_POINTS = 12223, -- It would seem that you lack the necessary amount of Legion points. + LEARNS_SPELL = 12271, -- learns ! + UNCANNY_SENSATION = 12273, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 12280, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Rolanberry_Fields_[S]/IDs.lua b/scripts/zones/Rolanberry_Fields_[S]/IDs.lua index 5206e00c989..80cf48e8d25 100644 --- a/scripts/zones/Rolanberry_Fields_[S]/IDs.lua +++ b/scripts/zones/Rolanberry_Fields_[S]/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.ROLANBERRY_FIELDS_S] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - UNABLE_TO_PROGRESS = 7047, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. - FISHING_MESSAGE_OFFSET = 7077, -- You can't fish here. - VOIDWALKER_DESPAWN = 7989, -- The monster fades before your eyes, a look of disappointment on its face. - VOIDWALKER_NO_MOB = 8044, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8045, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8046, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8047, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8049, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8050, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8051, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8052, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 9259, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + UNABLE_TO_PROGRESS = 7047, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. + FISHING_MESSAGE_OFFSET = 7077, -- You can't fish here. + VOIDWALKER_DESPAWN = 7989, -- The monster fades before your eyes, a look of disappointment on its face. + VOIDWALKER_NO_MOB = 8044, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8045, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8046, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8047, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8049, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8050, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8051, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8052, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 9259, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/RuAun_Gardens/IDs.lua b/scripts/zones/RuAun_Gardens/IDs.lua index 4cb18ec92ab..67b3e77ca50 100644 --- a/scripts/zones/RuAun_Gardens/IDs.lua +++ b/scripts/zones/RuAun_Gardens/IDs.lua @@ -10,29 +10,30 @@ zones[xi.zone.RUAUN_GARDENS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - CONQUEST_BASE = 7157, -- Tallying conquest results... - IT_IS_ALREADY_FUNCTIONING = 7317, -- It is already functioning. - CHEST_UNLOCKED = 7351, -- You unlock the chest! - SKY_GOD_OFFSET = 7368, -- A strange insignia pointing north is carved into the wall. - PLAYER_OBTAINS_ITEM = 7570, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7571, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7572, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7573, -- You already possess that temporary item. - NO_COMBINATION = 7578, -- You were unable to enter a combination. - REGIME_REGISTERED = 9734, -- New training regime registered! - HOMEPOINT_SET = 11655, -- Home point set! - COMMON_SENSE_SURVIVAL = 11675, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + CONQUEST_BASE = 7157, -- Tallying conquest results... + IT_IS_ALREADY_FUNCTIONING = 7317, -- It is already functioning. + CHEST_UNLOCKED = 7351, -- You unlock the chest! + SKY_GOD_OFFSET = 7368, -- A strange insignia pointing north is carved into the wall. + PLAYER_OBTAINS_ITEM = 7570, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7571, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7572, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7573, -- You already possess that temporary item. + NO_COMBINATION = 7578, -- You were unable to enter a combination. + REGIME_REGISTERED = 9734, -- New training regime registered! + HOMEPOINT_SET = 11655, -- Home point set! + COMMON_SENSE_SURVIVAL = 11675, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/RuLude_Gardens/IDs.lua b/scripts/zones/RuLude_Gardens/IDs.lua index e3fe32e42e2..17e8bff2435 100644 --- a/scripts/zones/RuLude_Gardens/IDs.lua +++ b/scripts/zones/RuLude_Gardens/IDs.lua @@ -25,6 +25,7 @@ zones[xi.zone.RULUDE_GARDENS] = LOGIN_CAMPAIGN_UNDERWAY = 6570, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 6571, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. YOUR_MAXIMUM_LEVEL = 6586, -- Your maximum level has been raised to [50/55/60/65/70/75/80/85/90/95/99]! + MEMBERS_LEVELS_ARE_RESTRICTED = 6591, -- Your party is unable to participate because certain members' levels are restricted. YOU_LEARNED_TRUST = 6593, -- You learned Trust: ! MOG_LOCKER_OFFSET = 6705, -- Your Mog Locker lease is valid until , kupo. REGIME_CANCELED = 6864, -- Current training regime canceled. diff --git a/scripts/zones/Ruhotz_Silvermines/IDs.lua b/scripts/zones/Ruhotz_Silvermines/IDs.lua index df5bf4644b9..d054a24b569 100644 --- a/scripts/zones/Ruhotz_Silvermines/IDs.lua +++ b/scripts/zones/Ruhotz_Silvermines/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.RUHOTZ_SILVERMINES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Sacrarium/IDs.lua b/scripts/zones/Sacrarium/IDs.lua index e7eea2875cf..51978d12b26 100644 --- a/scripts/zones/Sacrarium/IDs.lua +++ b/scripts/zones/Sacrarium/IDs.lua @@ -11,32 +11,33 @@ zones[xi.zone.SACRARIUM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - LARGE_KEYHOLE_DESCRIPTION = 7223, -- The gate is securely closed with two locks. This keyhole is engraved with a sealion insignia. - SMALL_KEYHOLE_DESCRIPTION = 7224, -- The gate is securely closed with two locks. This keyhole is engraved with a coral insignia. - KEYHOLE_DAMAGED = 7225, -- The keyhole is damaged. The gate cannot be opened from this side. - CANNOT_OPEN_SIDE = 7226, -- The gate cannot be opened from this side. - CANNOT_TRADE_NOW = 7227, -- You cannot trade right now. - STURDY_GATE = 7228, -- A sturdy iron gate. It is secured with two locks--a main lock and a sublock. - CORAL_KEY_BREAKS = 7232, -- The breaks! - EVIL_PRESENCE = 7266, -- You sense an evil presence! - DRAWER_OPEN = 7267, -- You open the drawer. - DRAWER_EMPTY = 7268, -- There is nothing inside. - DRAWER_SHUT = 7269, -- The drawer is jammed shut. - CHEST_UNLOCKED = 7358, -- You unlock the chest! - START_GET_GOOSEBUMPS = 7368, -- You start to get goosebumps. - HEART_RACING = 7369, -- Your heart is racing. - LEAVE_QUICKLY_AS_POSSIBLE = 7370, -- Your common sense tells you to leave as quickly as possible. - NOTHING_HAPPENS = 7373, -- Nothing happens. - COMMON_SENSE_SURVIVAL = 7377, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + LARGE_KEYHOLE_DESCRIPTION = 7223, -- The gate is securely closed with two locks. This keyhole is engraved with a sealion insignia. + SMALL_KEYHOLE_DESCRIPTION = 7224, -- The gate is securely closed with two locks. This keyhole is engraved with a coral insignia. + KEYHOLE_DAMAGED = 7225, -- The keyhole is damaged. The gate cannot be opened from this side. + CANNOT_OPEN_SIDE = 7226, -- The gate cannot be opened from this side. + CANNOT_TRADE_NOW = 7227, -- You cannot trade right now. + STURDY_GATE = 7228, -- A sturdy iron gate. It is secured with two locks--a main lock and a sublock. + CORAL_KEY_BREAKS = 7232, -- The breaks! + EVIL_PRESENCE = 7266, -- You sense an evil presence! + DRAWER_OPEN = 7267, -- You open the drawer. + DRAWER_EMPTY = 7268, -- There is nothing inside. + DRAWER_SHUT = 7269, -- The drawer is jammed shut. + CHEST_UNLOCKED = 7358, -- You unlock the chest! + START_GET_GOOSEBUMPS = 7368, -- You start to get goosebumps. + HEART_RACING = 7369, -- Your heart is racing. + LEAVE_QUICKLY_AS_POSSIBLE = 7370, -- Your common sense tells you to leave as quickly as possible. + NOTHING_HAPPENS = 7373, -- Nothing happens. + COMMON_SENSE_SURVIVAL = 7377, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Sacrificial_Chamber/IDs.lua b/scripts/zones/Sacrificial_Chamber/IDs.lua index a58c1114697..4e8817d15ee 100644 --- a/scripts/zones/Sacrificial_Chamber/IDs.lua +++ b/scripts/zones/Sacrificial_Chamber/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.SACRIFICIAL_CHAMBER] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - DOOR_SHUT = 7698, -- The door is firmly shut. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + DOOR_SHUT = 7698, -- The door is firmly shut. }, mob = { diff --git a/scripts/zones/San_dOria-Jeuno_Airship/IDs.lua b/scripts/zones/San_dOria-Jeuno_Airship/IDs.lua index 2985190abb4..dca1bde7af9 100644 --- a/scripts/zones/San_dOria-Jeuno_Airship/IDs.lua +++ b/scripts/zones/San_dOria-Jeuno_Airship/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.SAN_DORIA_JEUNO_AIRSHIP] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - WILL_REACH_JEUNO = 7216, -- The airship will reach Jeuno in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - WILL_REACH_SANDORIA = 7217, -- The airship will reach San d'Oria in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - IN_JEUNO_MOMENTARILY = 7219, -- We will be arriving in Jeuno momentarily. - IN_SANDORIA_MOMENTARILY = 7220, -- We will be arriving in San d'Oria momentarily. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WILL_REACH_JEUNO = 7216, -- The airship will reach Jeuno in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + WILL_REACH_SANDORIA = 7217, -- The airship will reach San d'Oria in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + IN_JEUNO_MOMENTARILY = 7219, -- We will be arriving in Jeuno momentarily. + IN_SANDORIA_MOMENTARILY = 7220, -- We will be arriving in San d'Oria momentarily. }, mob = { diff --git a/scripts/zones/Sauromugue_Champaign/IDs.lua b/scripts/zones/Sauromugue_Champaign/IDs.lua index 82eb61ea962..d7c4037b77b 100644 --- a/scripts/zones/Sauromugue_Champaign/IDs.lua +++ b/scripts/zones/Sauromugue_Champaign/IDs.lua @@ -10,44 +10,45 @@ zones[xi.zone.SAUROMUGUE_CHAMPAIGN] = { text = { - NOTHING_HAPPENS = 141, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - UNABLE_TO_PROGRESS = 7069, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. - CONQUEST_BASE = 7079, -- Tallying conquest results... - MANY_TIGER_BONES = 7238, -- There are many tiger bones here... - OLD_SABERTOOTH_DIALOG_I = 7244, -- You hear the distant roar of a tiger. It sounds as if the beast is approaching slowly... - OLD_SABERTOOTH_DIALOG_II = 7245, -- The sound of the tiger's footsteps is growing louder. - FISHING_MESSAGE_OFFSET = 7246, -- You can't fish here. - DIG_THROW_AWAY = 7259, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7261, -- You dig and you dig, but find nothing. - THF_AF_MOB = 7423, -- Something has come down from the tower! - THF_AF_WALL_OFFSET = 7442, -- It is impossible to climb this wall with your bare hands. - PLAYER_OBTAINS_ITEM = 7516, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7517, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7518, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7519, -- You already possess that temporary item. - NO_COMBINATION = 7524, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 7555, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 9825, -- New training regime registered! - VOIDWALKER_NO_MOB = 10998, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 10999, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 11000, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 11001, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 11003, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 11004, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 11005, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 11006, -- Obtained key item: ! - LEARNS_SPELL = 12506, -- learns ! - UNCANNY_SENSATION = 12508, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 12515, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 141, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. + UNABLE_TO_PROGRESS = 7069, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. + CONQUEST_BASE = 7079, -- Tallying conquest results... + MANY_TIGER_BONES = 7238, -- There are many tiger bones here... + OLD_SABERTOOTH_DIALOG_I = 7244, -- You hear the distant roar of a tiger. It sounds as if the beast is approaching slowly... + OLD_SABERTOOTH_DIALOG_II = 7245, -- The sound of the tiger's footsteps is growing louder. + FISHING_MESSAGE_OFFSET = 7246, -- You can't fish here. + DIG_THROW_AWAY = 7259, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7261, -- You dig and you dig, but find nothing. + THF_AF_MOB = 7423, -- Something has come down from the tower! + THF_AF_WALL_OFFSET = 7442, -- It is impossible to climb this wall with your bare hands. + PLAYER_OBTAINS_ITEM = 7516, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7517, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7518, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7519, -- You already possess that temporary item. + NO_COMBINATION = 7524, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 7555, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 9825, -- New training regime registered! + VOIDWALKER_NO_MOB = 10998, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 10999, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 11000, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 11001, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 11003, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 11004, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 11005, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 11006, -- Obtained key item: ! + LEARNS_SPELL = 12506, -- learns ! + UNCANNY_SENSATION = 12508, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 12515, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Sauromugue_Champaign_[S]/IDs.lua b/scripts/zones/Sauromugue_Champaign_[S]/IDs.lua index d1dadd307d5..547489d2ca1 100644 --- a/scripts/zones/Sauromugue_Champaign_[S]/IDs.lua +++ b/scripts/zones/Sauromugue_Champaign_[S]/IDs.lua @@ -10,27 +10,28 @@ zones[xi.zone.SAUROMUGUE_CHAMPAIGN_S] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - UNABLE_TO_PROGRESS = 7047, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. - DOOR_FIRMLY_SEALED = 7723, -- The door is firmly sealed. - SURRENDER_CEREMONY_HASTE = 8471, -- The surrender ceremony is about to commence underground. Make haste before all is lost! - VOIDWALKER_DESPAWN = 8483, -- The monster fades before your eyes, a look of disappointment on its face. - VOIDWALKER_NO_MOB = 8670, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8671, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8672, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8673, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8675, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8676, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8677, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8678, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 10065, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + UNABLE_TO_PROGRESS = 7047, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. + DOOR_FIRMLY_SEALED = 7723, -- The door is firmly sealed. + SURRENDER_CEREMONY_HASTE = 8471, -- The surrender ceremony is about to commence underground. Make haste before all is lost! + VOIDWALKER_DESPAWN = 8483, -- The monster fades before your eyes, a look of disappointment on its face. + VOIDWALKER_NO_MOB = 8670, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8671, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8672, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8673, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8675, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8676, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8677, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8678, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 10065, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Sea_Serpent_Grotto/IDs.lua b/scripts/zones/Sea_Serpent_Grotto/IDs.lua index 08623444f78..188ba4e05a1 100644 --- a/scripts/zones/Sea_Serpent_Grotto/IDs.lua +++ b/scripts/zones/Sea_Serpent_Grotto/IDs.lua @@ -10,41 +10,42 @@ zones[xi.zone.SEA_SERPENT_GROTTO] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - CHEST_UNLOCKED = 7324, -- You unlock the chest! - SAHAGIN_DOOR_INSIDE = 7342, -- The door is tightly shut. - SAHAGIN_DOOR_OUTSIDE = 7343, -- This door has an oddly shaped keyhole. It looks as if once you enter, you may not be able to get out the way you came in. - SAHAGIN_DOOR_TRADED = 7344, -- The breaks! - FIRST_CHECK = 7348, -- You do not see anything out of the ordinary. - SECOND_CHECK = 7349, -- You do not see anything out of the ordinary... - THIRD_CHECK = 7350, -- It looks like a rock wall. - FOURTH_CHECK = 7351, -- It looks like a rock wall... - FIFTH_CHECK = 7352, -- You see a small indentation in the wall. - SILVER_CHECK = 7353, -- You see something silver glittering around the indentation. - MYTHRIL_CHECK = 7354, -- You find something that looks like mythril dust scattered about the indentation. - GOLD_CHECK = 7355, -- You see something gold glittering around the indentation. - COMPLETED_CHECK = 7356, -- It is a door you can open using ! - SENSE_OMINOUS_PRESENCE = 7370, -- You sense an ominous presence... - BODY_NUMB_DREAD = 7558, -- Your body goes numb with dread! - PLAYER_OBTAINS_ITEM = 7604, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7605, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7606, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7607, -- You already possess that temporary item. - NO_COMBINATION = 7612, -- You were unable to enter a combination. - REGIME_REGISTERED = 9690, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 10750, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + CHEST_UNLOCKED = 7324, -- You unlock the chest! + SAHAGIN_DOOR_INSIDE = 7342, -- The door is tightly shut. + SAHAGIN_DOOR_OUTSIDE = 7343, -- This door has an oddly shaped keyhole. It looks as if once you enter, you may not be able to get out the way you came in. + SAHAGIN_DOOR_TRADED = 7344, -- The breaks! + FIRST_CHECK = 7348, -- You do not see anything out of the ordinary. + SECOND_CHECK = 7349, -- You do not see anything out of the ordinary... + THIRD_CHECK = 7350, -- It looks like a rock wall. + FOURTH_CHECK = 7351, -- It looks like a rock wall... + FIFTH_CHECK = 7352, -- You see a small indentation in the wall. + SILVER_CHECK = 7353, -- You see something silver glittering around the indentation. + MYTHRIL_CHECK = 7354, -- You find something that looks like mythril dust scattered about the indentation. + GOLD_CHECK = 7355, -- You see something gold glittering around the indentation. + COMPLETED_CHECK = 7356, -- It is a door you can open using ! + SENSE_OMINOUS_PRESENCE = 7370, -- You sense an ominous presence... + BODY_NUMB_DREAD = 7558, -- Your body goes numb with dread! + PLAYER_OBTAINS_ITEM = 7604, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7605, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7606, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7607, -- You already possess that temporary item. + NO_COMBINATION = 7612, -- You were unable to enter a combination. + REGIME_REGISTERED = 9690, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 10750, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Sealions_Den/IDs.lua b/scripts/zones/Sealions_Den/IDs.lua index 59f4c8d8b9e..97754eae34b 100644 --- a/scripts/zones/Sealions_Den/IDs.lua +++ b/scripts/zones/Sealions_Den/IDs.lua @@ -10,21 +10,22 @@ zones[xi.zone.SEALIONS_DEN] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - IRON_GATE_LOCKED = 7094, -- A solid iron gate. It is tightly locked... - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CONQUEST_BASE = 7428, -- Tallying conquest results... - TENZEN_MSG_OFFSET = 7919, -- You will fall to my blade! - MAKKI_CHEBUKKI_OFFSET = 7923, -- Samurai Sky Pirate Power! - KUKKI_CHEBUKKI_OFFSET = 7928, -- What? Nooo! - CHERUKIKI_OFFSET = 7934, -- We're doomed! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + IRON_GATE_LOCKED = 7094, -- A solid iron gate. It is tightly locked... + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CONQUEST_BASE = 7428, -- Tallying conquest results... + TENZEN_MSG_OFFSET = 7919, -- You will fall to my blade! + MAKKI_CHEBUKKI_OFFSET = 7923, -- Samurai Sky Pirate Power! + KUKKI_CHEBUKKI_OFFSET = 7928, -- What? Nooo! + CHERUKIKI_OFFSET = 7934, -- We're doomed! }, mob = { diff --git a/scripts/zones/Selbina/IDs.lua b/scripts/zones/Selbina/IDs.lua index 0dcadda8566..ce94d68dbae 100644 --- a/scripts/zones/Selbina/IDs.lua +++ b/scripts/zones/Selbina/IDs.lua @@ -10,31 +10,32 @@ zones[xi.zone.SELBINA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - HOMEPOINT_SET = 6487, -- Home point set! - FISHING_MESSAGE_OFFSET = 6562, -- You can't fish here. - NOMAD_MOOGLE_DIALOG = 6662, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. - SUBJOB_UNLOCKED = 6865, -- You can now designate a support job. - HERMINIA_SHOP_DIALOG = 7039, -- Hello there. What can I do for you? - TORAPIONT_SHOP_DIALOG = 7040, -- Arm yourself before you step outside. - DOHDJUMA_SHOP_DIALOG = 7041, -- I'm Dohdjuma, and I sell all kinds of things. - CLOTHCRAFT_SHOP_DIALOG = 7042, -- Welcome to the Weavers' Guild salesroom. - FISHING_SHOP_DIALOG = 7043, -- Welcome to the Fishermen's Guild salesroom. - QUELPIA_SHOP_DIALOG = 7044, -- In need of otherworldly protection? - CHUTARMIRE_SHOP_DIALOG = 7045, -- I have items for those who delve in the black arts! - FALGIMA_SHOP_DIALOG = 7046, -- In the market for spells, hexes, and incantations? Well, you've come to the right place! - CONQUEST_BASE = 7110, -- Tallying conquest results... - ABELARD_DIALOG = 7370, -- I'm Abelard, mayor of this village. - WENZEL_DELIVERY_DIALOG = 7593, -- My independent survey confirms the town entrance as the preferred location from which adventurers send parcels. - BORIS_DELIVERY_DIALOG = 7594, -- My independent survey confirms the inn as the preferred location from which adventurers send parcels. - RETRIEVE_DIALOG_ID = 7754, -- You retrieve from the porter moogle's care. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6451, -- Your party is unable to participate because certain members' levels are restricted. + HOMEPOINT_SET = 6487, -- Home point set! + FISHING_MESSAGE_OFFSET = 6562, -- You can't fish here. + NOMAD_MOOGLE_DIALOG = 6662, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo. + SUBJOB_UNLOCKED = 6865, -- You can now designate a support job. + HERMINIA_SHOP_DIALOG = 7039, -- Hello there. What can I do for you? + TORAPIONT_SHOP_DIALOG = 7040, -- Arm yourself before you step outside. + DOHDJUMA_SHOP_DIALOG = 7041, -- I'm Dohdjuma, and I sell all kinds of things. + CLOTHCRAFT_SHOP_DIALOG = 7042, -- Welcome to the Weavers' Guild salesroom. + FISHING_SHOP_DIALOG = 7043, -- Welcome to the Fishermen's Guild salesroom. + QUELPIA_SHOP_DIALOG = 7044, -- In need of otherworldly protection? + CHUTARMIRE_SHOP_DIALOG = 7045, -- I have items for those who delve in the black arts! + FALGIMA_SHOP_DIALOG = 7046, -- In the market for spells, hexes, and incantations? Well, you've come to the right place! + CONQUEST_BASE = 7110, -- Tallying conquest results... + ABELARD_DIALOG = 7370, -- I'm Abelard, mayor of this village. + WENZEL_DELIVERY_DIALOG = 7593, -- My independent survey confirms the town entrance as the preferred location from which adventurers send parcels. + BORIS_DELIVERY_DIALOG = 7594, -- My independent survey confirms the inn as the preferred location from which adventurers send parcels. + RETRIEVE_DIALOG_ID = 7754, -- You retrieve from the porter moogle's care. }, mob = { diff --git a/scripts/zones/Ship_bound_for_Mhaura/IDs.lua b/scripts/zones/Ship_bound_for_Mhaura/IDs.lua index bbee3f116c5..9aebe8f563a 100644 --- a/scripts/zones/Ship_bound_for_Mhaura/IDs.lua +++ b/scripts/zones/Ship_bound_for_Mhaura/IDs.lua @@ -10,18 +10,19 @@ zones[xi.zone.SHIP_BOUND_FOR_MHAURA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - ON_WAY_TO_MHAURA = 7339, -- We're on our way to Mhaura. We should be there in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - LOKHONG_SHOP_DIALOG = 7344, -- There's nothing like fishing to pass the time! - CHHAYA_SHOP_DIALOG = 7345, -- May I offer you items to help you on your journey? - ARRIVING_SOON_MHAURA = 7346, -- We are on our way to Mhaura. We will be arriving soon. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + ON_WAY_TO_MHAURA = 7339, -- We're on our way to Mhaura. We should be there in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + LOKHONG_SHOP_DIALOG = 7344, -- There's nothing like fishing to pass the time! + CHHAYA_SHOP_DIALOG = 7345, -- May I offer you items to help you on your journey? + ARRIVING_SOON_MHAURA = 7346, -- We are on our way to Mhaura. We will be arriving soon. }, mob = { diff --git a/scripts/zones/Ship_bound_for_Mhaura_Pirates/IDs.lua b/scripts/zones/Ship_bound_for_Mhaura_Pirates/IDs.lua index 8a2eb08f1e4..f9b1084aec1 100644 --- a/scripts/zones/Ship_bound_for_Mhaura_Pirates/IDs.lua +++ b/scripts/zones/Ship_bound_for_Mhaura_Pirates/IDs.lua @@ -10,18 +10,19 @@ zones[xi.zone.SHIP_BOUND_FOR_MHAURA_PIRATES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - ON_WAY_TO_MHAURA = 7339, -- We're on our way to Mhaura. We should be there in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] ( [minute/minutes] in Earth time). - LOKHONG_SHOP_DIALOG = 7344, -- There's nothing like fishing to pass the time! - CHHAYA_SHOP_DIALOG = 7345, -- May I offer you items to help you on your journey? - ARRIVING_SOON_MHAURA = 7346, -- We are on our way to Mhaura. We will be arriving soon. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + ON_WAY_TO_MHAURA = 7339, -- We're on our way to Mhaura. We should be there in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] ( [minute/minutes] in Earth time). + LOKHONG_SHOP_DIALOG = 7344, -- There's nothing like fishing to pass the time! + CHHAYA_SHOP_DIALOG = 7345, -- May I offer you items to help you on your journey? + ARRIVING_SOON_MHAURA = 7346, -- We are on our way to Mhaura. We will be arriving soon. }, mob = { diff --git a/scripts/zones/Ship_bound_for_Selbina/IDs.lua b/scripts/zones/Ship_bound_for_Selbina/IDs.lua index e0f3c33edf7..855544a0add 100644 --- a/scripts/zones/Ship_bound_for_Selbina/IDs.lua +++ b/scripts/zones/Ship_bound_for_Selbina/IDs.lua @@ -10,18 +10,19 @@ zones[xi.zone.SHIP_BOUND_FOR_SELBINA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - ON_WAY_TO_SELBINA = 7339, -- We're on our way to Selbina. We should be there in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - RAJMONDA_SHOP_DIALOG = 7344, -- There's nothing like fishing to pass the time! - MAERA_SHOP_DIALOG = 7345, -- May I offer you items to help you on your journey? - ARRIVING_SOON_SELBINA = 7346, -- We are on our way to Selbina. We will be arriving soon. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + ON_WAY_TO_SELBINA = 7339, -- We're on our way to Selbina. We should be there in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + RAJMONDA_SHOP_DIALOG = 7344, -- There's nothing like fishing to pass the time! + MAERA_SHOP_DIALOG = 7345, -- May I offer you items to help you on your journey? + ARRIVING_SOON_SELBINA = 7346, -- We are on our way to Selbina. We will be arriving soon. }, mob = { diff --git a/scripts/zones/Ship_bound_for_Selbina_Pirates/IDs.lua b/scripts/zones/Ship_bound_for_Selbina_Pirates/IDs.lua index a2c46916365..4c13d6d392f 100644 --- a/scripts/zones/Ship_bound_for_Selbina_Pirates/IDs.lua +++ b/scripts/zones/Ship_bound_for_Selbina_Pirates/IDs.lua @@ -10,18 +10,19 @@ zones[xi.zone.SHIP_BOUND_FOR_SELBINA_PIRATES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - ON_WAY_TO_SELBINA = 7339, -- We're on our way to Selbina. We should be there in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] ( [minute/minutes] in Earth time). - RAJMONDA_SHOP_DIALOG = 7344, -- There's nothing like fishing to pass the time! - MAERA_SHOP_DIALOG = 7345, -- May I offer you items to help you on your journey? - ARRIVING_SOON_SELBINA = 7346, -- We are on our way to Selbina. We will be arriving soon. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + ON_WAY_TO_SELBINA = 7339, -- We're on our way to Selbina. We should be there in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] ( [minute/minutes] in Earth time). + RAJMONDA_SHOP_DIALOG = 7344, -- There's nothing like fishing to pass the time! + MAERA_SHOP_DIALOG = 7345, -- May I offer you items to help you on your journey? + ARRIVING_SOON_SELBINA = 7346, -- We are on our way to Selbina. We will be arriving soon. }, mob = { diff --git a/scripts/zones/Sih_Gates/IDs.lua b/scripts/zones/Sih_Gates/IDs.lua index 096ccdb6bbc..dbf8afc26ea 100644 --- a/scripts/zones/Sih_Gates/IDs.lua +++ b/scripts/zones/Sih_Gates/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.SIH_GATES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Silver_Sea_Remnants/IDs.lua b/scripts/zones/Silver_Sea_Remnants/IDs.lua index eaf927dd488..f65f07bfa3a 100644 --- a/scripts/zones/Silver_Sea_Remnants/IDs.lua +++ b/scripts/zones/Silver_Sea_Remnants/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.SILVER_SEA_REMNANTS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CELL_OFFSET = 7217, -- Main Weapon/Sub-Weapon restriction removed. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CELL_OFFSET = 7217, -- Main Weapon/Sub-Weapon restriction removed. }, mob = { diff --git a/scripts/zones/Silver_Sea_route_to_Al_Zahbi/IDs.lua b/scripts/zones/Silver_Sea_route_to_Al_Zahbi/IDs.lua index 9af9a86afd0..89ee32e14ad 100644 --- a/scripts/zones/Silver_Sea_route_to_Al_Zahbi/IDs.lua +++ b/scripts/zones/Silver_Sea_route_to_Al_Zahbi/IDs.lua @@ -10,18 +10,19 @@ zones[xi.zone.SILVER_SEA_ROUTE_TO_AL_ZAHBI] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - DOCKING_IN_AL_ZAHBI = 7314, -- We are now docking in Al Zahbi. - NEARING_AL_ZAHBI = 7315, -- We are nearing Al Zahbi. - YAHLIQ_SHOP_DIALOG = 7317, -- You've picked the best place to shop for your items, guaranteed! - ON_WAY_TO_AL_ZAHBI = 7318, -- We are on our way to Al Zahbi. We will be arriving soon. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + DOCKING_IN_AL_ZAHBI = 7314, -- We are now docking in Al Zahbi. + NEARING_AL_ZAHBI = 7315, -- We are nearing Al Zahbi. + YAHLIQ_SHOP_DIALOG = 7317, -- You've picked the best place to shop for your items, guaranteed! + ON_WAY_TO_AL_ZAHBI = 7318, -- We are on our way to Al Zahbi. We will be arriving soon. }, mob = { diff --git a/scripts/zones/Silver_Sea_route_to_Nashmau/IDs.lua b/scripts/zones/Silver_Sea_route_to_Nashmau/IDs.lua index c5dc17a0d7b..7d92c9b52bd 100644 --- a/scripts/zones/Silver_Sea_route_to_Nashmau/IDs.lua +++ b/scripts/zones/Silver_Sea_route_to_Nashmau/IDs.lua @@ -10,18 +10,19 @@ zones[xi.zone.SILVER_SEA_ROUTE_TO_NASHMAU] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - DOCKING_IN_NASHMAU = 7314, -- We are now docking in Nashmau. - NEARING_NASHMAU = 7315, -- We are nearing Nashmau. - JIDWAHN_SHOP_DIALOG = 7317, -- Would you care for some items to use on your travels? - ON_WAY_TO_NASHMAU = 7318, -- We are on our way to Nashmau. We will be arriving soon. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + DOCKING_IN_NASHMAU = 7314, -- We are now docking in Nashmau. + NEARING_NASHMAU = 7315, -- We are nearing Nashmau. + JIDWAHN_SHOP_DIALOG = 7317, -- Would you care for some items to use on your travels? + ON_WAY_TO_NASHMAU = 7318, -- We are on our way to Nashmau. We will be arriving soon. }, mob = { diff --git a/scripts/zones/South_Gustaberg/IDs.lua b/scripts/zones/South_Gustaberg/IDs.lua index a9ebc4e7f9c..38678be4c23 100644 --- a/scripts/zones/South_Gustaberg/IDs.lua +++ b/scripts/zones/South_Gustaberg/IDs.lua @@ -10,35 +10,36 @@ zones[xi.zone.SOUTH_GUSTABERG] = { text = { - NOTHING_HAPPENS = 141, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7079, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. - MONSTER_TRACKS = 7408, -- You see monster tracks on the ground. - MONSTER_TRACKS_FRESH = 7409, -- You see fresh monster tracks on the ground. - FIRE_GOOD = 7412, -- The fire seems to be good enough for cooking. - FIRE_PUT = 7413, -- You put in the fire. - FIRE_TAKE = 7414, -- You take out of the fire. - FIRE_LONGER = 7415, -- It may take a little while more to cook the . - MEAT_ALREADY_PUT = 7416, -- The is already in the fire. - ITEMS_ITEMS_LA_LA = 7524, -- You can hear a strange voice... Items, items, la la la la la - GOBLIN_SLIPPED_AWAY = 7530, -- The Goblin slipped away when you were not looking... - PLAYER_OBTAINS_ITEM = 7544, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7545, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7546, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7547, -- You already possess that temporary item. - NO_COMBINATION = 7552, -- You were unable to enter a combination. - REGIME_REGISTERED = 9912, -- New training regime registered! + NOTHING_HAPPENS = 141, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6426, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7079, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. + MONSTER_TRACKS = 7408, -- You see monster tracks on the ground. + MONSTER_TRACKS_FRESH = 7409, -- You see fresh monster tracks on the ground. + FIRE_GOOD = 7412, -- The fire seems to be good enough for cooking. + FIRE_PUT = 7413, -- You put in the fire. + FIRE_TAKE = 7414, -- You take out of the fire. + FIRE_LONGER = 7415, -- It may take a little while more to cook the . + MEAT_ALREADY_PUT = 7416, -- The is already in the fire. + ITEMS_ITEMS_LA_LA = 7524, -- You can hear a strange voice... Items, items, la la la la la + GOBLIN_SLIPPED_AWAY = 7530, -- The Goblin slipped away when you were not looking... + PLAYER_OBTAINS_ITEM = 7544, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7545, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7546, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7547, -- You already possess that temporary item. + NO_COMBINATION = 7552, -- You were unable to enter a combination. + REGIME_REGISTERED = 9912, -- New training regime registered! }, mob = { diff --git a/scripts/zones/Southern_San_dOria/IDs.lua b/scripts/zones/Southern_San_dOria/IDs.lua index be942184bc7..fdcf0dcdb23 100644 --- a/scripts/zones/Southern_San_dOria/IDs.lua +++ b/scripts/zones/Southern_San_dOria/IDs.lua @@ -24,6 +24,7 @@ zones[xi.zone.SOUTHERN_SAN_DORIA] = CARRIED_OVER_POINTS = 6473, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 6474, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 6475, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6495, -- Your party is unable to participate because certain members' levels are restricted. YOU_LEARNED_TRUST = 6497, -- You learned Trust: ! CALL_MULTIPLE_ALTER_EGO = 6498, -- You are now able to call multiple alter egos. MOG_LOCKER_OFFSET = 6686, -- Your Mog Locker lease is valid until , kupo. diff --git a/scripts/zones/Southern_San_dOria_[S]/IDs.lua b/scripts/zones/Southern_San_dOria_[S]/IDs.lua index 4b8b6e1447b..d3afa704798 100644 --- a/scripts/zones/Southern_San_dOria_[S]/IDs.lua +++ b/scripts/zones/Southern_San_dOria_[S]/IDs.lua @@ -10,52 +10,53 @@ zones[xi.zone.SOUTHERN_SAN_DORIA_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - CANNOT_OBTAIN_MYSTIC = 6387, -- You cannot obtain the . Speak with the mystic retriever after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BONDS_STRENGTHENED = 7046, -- The bonds tying you to Altana have strengthened, enabling you to experience all the memories of [Rise of the Zilart/Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin]! - GATE_IS_LOCKED = 7103, -- The gate is locked. - DONT_HURT_GELTPIX = 7106, -- Don't hurt poor Geltpix! Geltpix's just a merchant from Boodlix's Emporium in Jeuno. Kingdom vendors don't like gil, but Boodlix knows true value of new money. - MOG_LOCKER_OFFSET = 7373, -- Your Mog Locker lease is valid until , kupo. - REGIME_CANCELED = 7630, -- Current training regime canceled. - HUNT_ACCEPTED = 7648, -- Hunt accepted! - USE_SCYLDS = 7649, -- You use [scyld/scylds]. Scyld balance: . - HUNT_RECORDED = 7660, -- You record your hunt. - OBTAIN_SCYLDS = 7662, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. - HUNT_CANCELED = 7666, -- Hunt canceled. - WYATT_DIALOG = 11092, -- Ahhh, sorry, sorry. The name's Wyatt, an' I be an armor merchant from Jeuno. Ended up 'ere in San d'Oria some way or another, though. - HOMEPOINT_SET = 11122, -- Home point set! - ITEM_DELIVERY_DIALOG = 11223, -- If'n ye have goods tae deliver, then Nembet be yer man! - DISTANCE_YOURSELF = 11261, -- I advise you distance yourself from Lady Ulla. I know not your intentions, but am inclined to believe they are crooked. - ONE_OF_THESE_CITIES = 11264, -- So this is one of these cities I've heard so much of, is it? Hmph. Seems to be nothing more than a mass of people crowded into a noisy, confined space. - ACHTELLE_FROM_ADOULIN = 11273, -- I go by the name Achtelle. I hail from Adoulin Isle. Word has reached there that the dragoons and their wyverns have long since disappeared from these eastern lands. Tell me, is it true? - NOTHING_OUT_OF_ORDINARY = 11753, -- You find nothing out of the ordinary. - TOO_BUSY = 11757, -- I am far too busy to speak with you now. Perhaps I'll have a little time later. - RINGING_OF_STEEL = 11807, -- Hah hah hah! The ringing of steel upon steel! The dripping stench of the battlefield! What could be better than war? The nobles can have their balls, I'll do my dance on the front lines! - BASEBORN_PEASANT = 11808, -- How dare a baseborn peasant raise [his/her] voice to a noble knight!? Begone, before I strike you down myself! - KINGDOMS_DEFEAT = 11809, -- The Kingdom's defeat at Jugner still stings. To avenge the souls of those lost on that fateful day, we must join hands and take up arms as one. - NOT_ONCE_IN_400_YEARS = 11810, -- Not once in the four hundred years since the dawn of the Royal Knights has the Kingdom found itself in such peril. Let us take up our pikes and stand our ground to ensure another four centuries of prosperity! - HOLY_DOCTRINES_PROHIBIT = 11812, -- While our holy doctrines specifically prohibit the taking of another life, you need not hesitate on the battlefield. The Church has branded the beastmen enemies of Altana. The purification must begin! It is the will of the Goddess!!! - YEARS_OF_TRAINING = 11813, -- After years of training in the Far East, I return only to find my nation burning at the hands of the infernal beastman hordes. The heathens shall pay dearly... My work has only just begun. - FINE_WARRIOR = 11814, -- You have the look of a fine warrior. It is a pity you are not one of my Crimson Wolves. - EYES_OF_THE_GODDESS = 11815, -- The eyes of the Goddess are ever upon us. We must remain steadfast against the evils from without, as well as those from within. - NOW_ALLIED_WITH = 12149, -- You are now a member of the [/Knights of the Iron Ram/Republican Legion's Fourth Division/Cobra Unit]! - ALLIED_SIGIL = 12924, -- You have received the Allied Sigil! - DOOR_IS_FIRMLY_LOCKED = 13550, -- The door is firmly locked... - CONCERNED_FOR_WOUNDED = 13679, -- Concerned for the wounded Sir Ragelise, Lilisette and Portia have been paying him regular visits as of late. Alexei Mayakov suggests that the Chateau d'Oraguille is where the two of them are likely to be. - MUST_GATHER_SIGNATURES = 14009, -- You must gather signatures from at least knights of the Kingdom. - CURRENT_PETITIONS = 14010, -- Current : . - HAVE_GATHERED_SIGNATURE = 14281, -- You have gathered [signature/signatures] for the ! - GATHERED_DAWNDROPS_LIGHT = 14537, -- The gathered dawndrops unleash a brilliant light, melding together to form ! - RETRACED_ALL_JUNCTIONS = 14538, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. - RETRIEVE_DIALOG_ID = 15591, -- You retrieve from the porter moogle's care. - NOT_ENOUGH_NOTES = 15616, -- You tryin' to cheat me? That's not nearly enough notes! - COMMON_SENSE_SURVIVAL = 15665, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + CANNOT_OBTAIN_MYSTIC = 6387, -- You cannot obtain the . Speak with the mystic retriever after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + BONDS_STRENGTHENED = 7046, -- The bonds tying you to Altana have strengthened, enabling you to experience all the memories of [Rise of the Zilart/Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin]! + GATE_IS_LOCKED = 7103, -- The gate is locked. + DONT_HURT_GELTPIX = 7106, -- Don't hurt poor Geltpix! Geltpix's just a merchant from Boodlix's Emporium in Jeuno. Kingdom vendors don't like gil, but Boodlix knows true value of new money. + MOG_LOCKER_OFFSET = 7373, -- Your Mog Locker lease is valid until , kupo. + REGIME_CANCELED = 7630, -- Current training regime canceled. + HUNT_ACCEPTED = 7648, -- Hunt accepted! + USE_SCYLDS = 7649, -- You use [scyld/scylds]. Scyld balance: . + HUNT_RECORDED = 7660, -- You record your hunt. + OBTAIN_SCYLDS = 7662, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. + HUNT_CANCELED = 7666, -- Hunt canceled. + WYATT_DIALOG = 11092, -- Ahhh, sorry, sorry. The name's Wyatt, an' I be an armor merchant from Jeuno. Ended up 'ere in San d'Oria some way or another, though. + HOMEPOINT_SET = 11122, -- Home point set! + ITEM_DELIVERY_DIALOG = 11223, -- If'n ye have goods tae deliver, then Nembet be yer man! + DISTANCE_YOURSELF = 11261, -- I advise you distance yourself from Lady Ulla. I know not your intentions, but am inclined to believe they are crooked. + ONE_OF_THESE_CITIES = 11264, -- So this is one of these cities I've heard so much of, is it? Hmph. Seems to be nothing more than a mass of people crowded into a noisy, confined space. + ACHTELLE_FROM_ADOULIN = 11273, -- I go by the name Achtelle. I hail from Adoulin Isle. Word has reached there that the dragoons and their wyverns have long since disappeared from these eastern lands. Tell me, is it true? + NOTHING_OUT_OF_ORDINARY = 11753, -- You find nothing out of the ordinary. + TOO_BUSY = 11757, -- I am far too busy to speak with you now. Perhaps I'll have a little time later. + RINGING_OF_STEEL = 11807, -- Hah hah hah! The ringing of steel upon steel! The dripping stench of the battlefield! What could be better than war? The nobles can have their balls, I'll do my dance on the front lines! + BASEBORN_PEASANT = 11808, -- How dare a baseborn peasant raise [his/her] voice to a noble knight!? Begone, before I strike you down myself! + KINGDOMS_DEFEAT = 11809, -- The Kingdom's defeat at Jugner still stings. To avenge the souls of those lost on that fateful day, we must join hands and take up arms as one. + NOT_ONCE_IN_400_YEARS = 11810, -- Not once in the four hundred years since the dawn of the Royal Knights has the Kingdom found itself in such peril. Let us take up our pikes and stand our ground to ensure another four centuries of prosperity! + HOLY_DOCTRINES_PROHIBIT = 11812, -- While our holy doctrines specifically prohibit the taking of another life, you need not hesitate on the battlefield. The Church has branded the beastmen enemies of Altana. The purification must begin! It is the will of the Goddess!!! + YEARS_OF_TRAINING = 11813, -- After years of training in the Far East, I return only to find my nation burning at the hands of the infernal beastman hordes. The heathens shall pay dearly... My work has only just begun. + FINE_WARRIOR = 11814, -- You have the look of a fine warrior. It is a pity you are not one of my Crimson Wolves. + EYES_OF_THE_GODDESS = 11815, -- The eyes of the Goddess are ever upon us. We must remain steadfast against the evils from without, as well as those from within. + NOW_ALLIED_WITH = 12149, -- You are now a member of the [/Knights of the Iron Ram/Republican Legion's Fourth Division/Cobra Unit]! + ALLIED_SIGIL = 12924, -- You have received the Allied Sigil! + DOOR_IS_FIRMLY_LOCKED = 13550, -- The door is firmly locked... + CONCERNED_FOR_WOUNDED = 13679, -- Concerned for the wounded Sir Ragelise, Lilisette and Portia have been paying him regular visits as of late. Alexei Mayakov suggests that the Chateau d'Oraguille is where the two of them are likely to be. + MUST_GATHER_SIGNATURES = 14009, -- You must gather signatures from at least knights of the Kingdom. + CURRENT_PETITIONS = 14010, -- Current : . + HAVE_GATHERED_SIGNATURE = 14281, -- You have gathered [signature/signatures] for the ! + GATHERED_DAWNDROPS_LIGHT = 14537, -- The gathered dawndrops unleash a brilliant light, melding together to form ! + RETRACED_ALL_JUNCTIONS = 14538, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. + RETRIEVE_DIALOG_ID = 15591, -- You retrieve from the porter moogle's care. + NOT_ENOUGH_NOTES = 15616, -- You tryin' to cheat me? That's not nearly enough notes! + COMMON_SENSE_SURVIVAL = 15665, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Spire_of_Dem/IDs.lua b/scripts/zones/Spire_of_Dem/IDs.lua index 34a64af2a24..07859268878 100644 --- a/scripts/zones/Spire_of_Dem/IDs.lua +++ b/scripts/zones/Spire_of_Dem/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.SPIRE_OF_DEM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FAINT_SCRAPING = 7089, -- You can hear a faint scraping sound from within, but the way is barred by some strange membrane... - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CANT_REMEMBER = 7641, -- You cannot remember when exactly, but you have obtained ! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FAINT_SCRAPING = 7089, -- You can hear a faint scraping sound from within, but the way is barred by some strange membrane... + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CANT_REMEMBER = 7641, -- You cannot remember when exactly, but you have obtained ! }, mob = { diff --git a/scripts/zones/Spire_of_Holla/IDs.lua b/scripts/zones/Spire_of_Holla/IDs.lua index 2688708c475..2b60e91d975 100644 --- a/scripts/zones/Spire_of_Holla/IDs.lua +++ b/scripts/zones/Spire_of_Holla/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.SPIRE_OF_HOLLA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FAINT_SCRAPING = 7089, -- You can hear a faint scraping sound from within, but the way is barred by some strange membrane... - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CANT_REMEMBER = 7641, -- You cannot remember when exactly, but you have obtained ! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FAINT_SCRAPING = 7089, -- You can hear a faint scraping sound from within, but the way is barred by some strange membrane... + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CANT_REMEMBER = 7641, -- You cannot remember when exactly, but you have obtained ! }, mob = { diff --git a/scripts/zones/Spire_of_Mea/IDs.lua b/scripts/zones/Spire_of_Mea/IDs.lua index 0f5ddff0be7..17e6fadb14d 100644 --- a/scripts/zones/Spire_of_Mea/IDs.lua +++ b/scripts/zones/Spire_of_Mea/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.SPIRE_OF_MEA] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FAINT_SCRAPING = 7089, -- You can hear a faint scraping sound from within, but the way is barred by some strange membrane... - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CANT_REMEMBER = 7641, -- You cannot remember when exactly, but you have obtained ! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FAINT_SCRAPING = 7089, -- You can hear a faint scraping sound from within, but the way is barred by some strange membrane... + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CANT_REMEMBER = 7641, -- You cannot remember when exactly, but you have obtained ! }, mob = { diff --git a/scripts/zones/Spire_of_Vahzl/IDs.lua b/scripts/zones/Spire_of_Vahzl/IDs.lua index ff0daf26b25..1eebedc4ab8 100644 --- a/scripts/zones/Spire_of_Vahzl/IDs.lua +++ b/scripts/zones/Spire_of_Vahzl/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.SPIRE_OF_VAHZL] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FAINT_SCRAPING = 7089, -- You can hear a faint scraping sound from within, but the way is barred by some strange membrane... - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FAINT_SCRAPING = 7089, -- You can hear a faint scraping sound from within, but the way is barred by some strange membrane... + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Stellar_Fulcrum/IDs.lua b/scripts/zones/Stellar_Fulcrum/IDs.lua index 46fd815b104..276722a13d5 100644 --- a/scripts/zones/Stellar_Fulcrum/IDs.lua +++ b/scripts/zones/Stellar_Fulcrum/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.STELLAR_FULCRUM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/Tahrongi_Canyon/IDs.lua b/scripts/zones/Tahrongi_Canyon/IDs.lua index be32e249ea2..86ab8439cfd 100644 --- a/scripts/zones/Tahrongi_Canyon/IDs.lua +++ b/scripts/zones/Tahrongi_Canyon/IDs.lua @@ -10,55 +10,56 @@ zones[xi.zone.TAHRONGI_CANYON] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6565, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6571, -- Obtained: . - GIL_OBTAINED = 6572, -- Obtained gil. - KEYITEM_OBTAINED = 6574, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6585, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6600, -- I'm ready. I suppose. - CRUOR_TOTAL = 7169, -- Obtained cruor. (Total: ) - CARRIED_OVER_POINTS = 7182, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7183, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7184, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7319, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - ALREADY_OBTAINED_TELE = 7338, -- You already possess the gate crystal for this telepoint. - TELEPOINT_DISAPPEARED = 7339, -- The telepoint has disappeared... - SIGN_1 = 7413, -- North: Meriphataud Mountains Northeast: Crag of Mea South: East Sarutabaruta - SIGN_3 = 7414, -- North: Meriphataud Mountains East: Crag of Mea South: East Sarutabaruta - SIGN_5 = 7415, -- North: Meriphataud Mountains East: Buburimu Peninsula South: East Sarutabaruta - SIGN_7 = 7416, -- East: Buburimu Peninsula West: East Sarutabaruta - BUD_BREAKS_OFF = 7417, -- The bud breaks off. You obtain . - POISONOUS_LOOKING_BUDS = 7418, -- The flowers have poisonous-looking buds. - CANT_TAKE_ANY_MORE = 7419, -- You can't take any more. - MINING_IS_POSSIBLE_HERE = 7440, -- Mining is possible here if you have . - TELEPOINT_HAS_BEEN_SHATTERED = 7525, -- The telepoint has been shattered into a thousand pieces... - SPROUT_LOOKS_WITHERED = 7568, -- There is something sprouting from the ground here. It looks a little withered. - REPULSIVE_CREATURE_EMERGES = 7569, -- A repulsive creature emerges from the ground! - SPROUT_DOES_NOT_NEED_WATER = 7570, -- The sprout does not need any more water now. - NOTHING_HAPPENS = 7571, -- Nothing happens. - SPROUT_LOOKING_BETTER = 7572, -- The sprout is looking better. - PLAYER_OBTAINS_ITEM = 7577, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7578, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7579, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7580, -- You already possess that temporary item. - NO_COMBINATION = 7585, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 7616, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 9837, -- New training regime registered! - VOIDWALKER_NO_MOB = 11010, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 11011, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 11012, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 11013, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 11015, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 11016, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 11017, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 11018, -- Obtained key item: ! - LEARNS_SPELL = 11945, -- learns ! - UNCANNY_SENSATION = 11947, -- You are assaulted by an uncanny sensation. - COMMON_SENSE_SURVIVAL = 11954, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6565, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6571, -- Obtained: . + GIL_OBTAINED = 6572, -- Obtained gil. + KEYITEM_OBTAINED = 6574, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6585, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6600, -- I'm ready. I suppose. + CRUOR_TOTAL = 7169, -- Obtained cruor. (Total: ) + CARRIED_OVER_POINTS = 7182, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7183, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7184, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7204, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7319, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + ALREADY_OBTAINED_TELE = 7338, -- You already possess the gate crystal for this telepoint. + TELEPOINT_DISAPPEARED = 7339, -- The telepoint has disappeared... + SIGN_1 = 7413, -- North: Meriphataud Mountains Northeast: Crag of Mea South: East Sarutabaruta + SIGN_3 = 7414, -- North: Meriphataud Mountains East: Crag of Mea South: East Sarutabaruta + SIGN_5 = 7415, -- North: Meriphataud Mountains East: Buburimu Peninsula South: East Sarutabaruta + SIGN_7 = 7416, -- East: Buburimu Peninsula West: East Sarutabaruta + BUD_BREAKS_OFF = 7417, -- The bud breaks off. You obtain . + POISONOUS_LOOKING_BUDS = 7418, -- The flowers have poisonous-looking buds. + CANT_TAKE_ANY_MORE = 7419, -- You can't take any more. + MINING_IS_POSSIBLE_HERE = 7440, -- Mining is possible here if you have . + TELEPOINT_HAS_BEEN_SHATTERED = 7525, -- The telepoint has been shattered into a thousand pieces... + SPROUT_LOOKS_WITHERED = 7568, -- There is something sprouting from the ground here. It looks a little withered. + REPULSIVE_CREATURE_EMERGES = 7569, -- A repulsive creature emerges from the ground! + SPROUT_DOES_NOT_NEED_WATER = 7570, -- The sprout does not need any more water now. + NOTHING_HAPPENS = 7571, -- Nothing happens. + SPROUT_LOOKING_BETTER = 7572, -- The sprout is looking better. + PLAYER_OBTAINS_ITEM = 7577, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7578, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7579, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7580, -- You already possess that temporary item. + NO_COMBINATION = 7585, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 7616, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 9837, -- New training regime registered! + VOIDWALKER_NO_MOB = 11010, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 11011, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 11012, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 11013, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 11015, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 11016, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 11017, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 11018, -- Obtained key item: ! + LEARNS_SPELL = 11945, -- learns ! + UNCANNY_SENSATION = 11947, -- You are assaulted by an uncanny sensation. + COMMON_SENSE_SURVIVAL = 11954, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Talacca_Cove/IDs.lua b/scripts/zones/Talacca_Cove/IDs.lua index 84778c04307..acc24daff95 100644 --- a/scripts/zones/Talacca_Cove/IDs.lua +++ b/scripts/zones/Talacca_Cove/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.TALACCA_COVE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - PARTY_MEMBERS_HAVE_FALLEN = 7666, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7673, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - YOU_CAN_NOW_BECOME_A_CORSAIR = 7790, -- You can now become a corsair! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + PARTY_MEMBERS_HAVE_FALLEN = 7666, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7673, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + YOU_CAN_NOW_BECOME_A_CORSAIR = 7790, -- You can now become a corsair! }, mob = { diff --git a/scripts/zones/Tavnazian_Safehold/IDs.lua b/scripts/zones/Tavnazian_Safehold/IDs.lua index ddea226a566..47889d87548 100644 --- a/scripts/zones/Tavnazian_Safehold/IDs.lua +++ b/scripts/zones/Tavnazian_Safehold/IDs.lua @@ -18,6 +18,7 @@ zones[xi.zone.TAVNAZIAN_SAFEHOLD] = CARRIED_OVER_POINTS = 6429, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 6430, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 6431, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6451, -- Your party is unable to participate because certain members' levels are restricted. YOU_LEARNED_TRUST = 6453, -- You learned Trust: ! CONQUEST_BASE = 6544, -- Tallying conquest results... REGIME_CANCELED = 6710, -- Current training regime canceled. diff --git a/scripts/zones/Temenos/IDs.lua b/scripts/zones/Temenos/IDs.lua index 965d2c78d57..db8170857f1 100644 --- a/scripts/zones/Temenos/IDs.lua +++ b/scripts/zones/Temenos/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.TEMENOS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CHIP_TRADE_T = 7030, -- What do you wish to do? Show me the cutscene again. Skip the cutscene and continue. - TIME_EXCEEDED = 7062, -- You have exceeded the time limit. Exiting Limbus now. - CONDITION_FOR_LIMBUS_T = 7063, -- You have clearance to enter Limbus, but cannot enter while you or a party member is engaged in battle. - HUM = 7079, -- You hear a faint hum. - NO_KEY = 7084, -- There is a disc here inscribed with strange letters. There are several six-sided indentations and a thin slot in the center. - WIPE_KICK = 7362, -- All party members in Limbus have fallen in battle. Exiting now. - WIPE = 7372, -- All party members in Limbus have fallen in battle. Exiting in [minute/minutes]. - TIME_EXTENDED = 7380, -- our time in Limbus has been extended [minute/minutes]. - TIME_LEFT = 7381, -- ou have [minute/minutes] left in Limbus. - CONQUEST_BASE = 7383, -- Tallying conquest results... - CITADEL_BASE = 7556, -- 30... - CANNOT_OPEN_CHEST = 7564, -- You cannot open the treasure chest now. - GATE_OPEN = 7565, -- he gate opens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CHIP_TRADE_T = 7030, -- What do you wish to do? Show me the cutscene again. Skip the cutscene and continue. + TIME_EXCEEDED = 7062, -- You have exceeded the time limit. Exiting Limbus now. + CONDITION_FOR_LIMBUS_T = 7063, -- You have clearance to enter Limbus, but cannot enter while you or a party member is engaged in battle. + HUM = 7079, -- You hear a faint hum. + NO_KEY = 7084, -- There is a disc here inscribed with strange letters. There are several six-sided indentations and a thin slot in the center. + WIPE_KICK = 7362, -- All party members in Limbus have fallen in battle. Exiting now. + WIPE = 7372, -- All party members in Limbus have fallen in battle. Exiting in [minute/minutes]. + TIME_EXTENDED = 7380, -- our time in Limbus has been extended [minute/minutes]. + TIME_LEFT = 7381, -- ou have [minute/minutes] left in Limbus. + CONQUEST_BASE = 7383, -- Tallying conquest results... + CITADEL_BASE = 7556, -- 30... + CANNOT_OPEN_CHEST = 7564, -- You cannot open the treasure chest now. + GATE_OPEN = 7565, -- he gate opens... }, mob = { diff --git a/scripts/zones/Temple_of_Uggalepih/IDs.lua b/scripts/zones/Temple_of_Uggalepih/IDs.lua index 62e332e654b..73472c3045e 100644 --- a/scripts/zones/Temple_of_Uggalepih/IDs.lua +++ b/scripts/zones/Temple_of_Uggalepih/IDs.lua @@ -10,43 +10,44 @@ zones[xi.zone.TEMPLE_OF_UGGALEPIH] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - CHEST_UNLOCKED = 7324, -- You unlock the chest! - NO_REASON_TO_INVESTIGATE = 7332, -- There is no reason to investigate further. - THE_BOX_IS_LOCKED = 7333, -- The box is locked. - PAINTBRUSH_OFFSET = 7336, -- When the projects the deepest, darkest corner of your soul onto the blank canvas...only then will the doors to rancor open. - FALLS_FROM_THE_BOOK = 7346, -- falls from the book! - THE_DOOR_IS_LOCKED = 7360, -- The door is locked. You might be able to open it with . - PROTECTED_BY_UNKNOWN_FORCE = 7361, -- The door is protected by some unknown force. - YOUR_KEY_BREAKS = 7363, -- Your breaks! - DOOR_LOCKED = 7381, -- The door is locked. - HATE_RESET = 7434, -- The built-up hate has been cleansed...! - DOOR_SHUT = 7436, -- The door is firmly shut. - NO_HATE = 7437, -- You have no built-up hate to cleanse. - BEGINS_TO_QUIVER = 7451, -- The begins to quiver! - SOME_SORT_OF_CEREMONY = 7453, -- Some sort of ceremony was performed here... - NM_OFFSET = 7503, -- It looks like some sort of device. A thin thread leads down to the floor... - IT_IS_A_BEEHIVE = 7507, -- It is a beehive... - BITS_OF_VEGETABLE = 7508, -- Bits of vegetable matter are strewn around. They appear to have been gnawed on by insects... - SENSE_OMINOUS_PRESENCE = 7510, -- You sense an ominous presence... - PLAYER_OBTAINS_ITEM = 8445, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8446, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8447, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8448, -- You already possess that temporary item. - NO_COMBINATION = 8453, -- You were unable to enter a combination. - REGIME_REGISTERED = 10531, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 11591, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + CHEST_UNLOCKED = 7324, -- You unlock the chest! + NO_REASON_TO_INVESTIGATE = 7332, -- There is no reason to investigate further. + THE_BOX_IS_LOCKED = 7333, -- The box is locked. + PAINTBRUSH_OFFSET = 7336, -- When the projects the deepest, darkest corner of your soul onto the blank canvas...only then will the doors to rancor open. + FALLS_FROM_THE_BOOK = 7346, -- falls from the book! + THE_DOOR_IS_LOCKED = 7360, -- The door is locked. You might be able to open it with . + PROTECTED_BY_UNKNOWN_FORCE = 7361, -- The door is protected by some unknown force. + YOUR_KEY_BREAKS = 7363, -- Your breaks! + DOOR_LOCKED = 7381, -- The door is locked. + HATE_RESET = 7434, -- The built-up hate has been cleansed...! + DOOR_SHUT = 7436, -- The door is firmly shut. + NO_HATE = 7437, -- You have no built-up hate to cleanse. + BEGINS_TO_QUIVER = 7451, -- The begins to quiver! + SOME_SORT_OF_CEREMONY = 7453, -- Some sort of ceremony was performed here... + NM_OFFSET = 7503, -- It looks like some sort of device. A thin thread leads down to the floor... + IT_IS_A_BEEHIVE = 7507, -- It is a beehive... + BITS_OF_VEGETABLE = 7508, -- Bits of vegetable matter are strewn around. They appear to have been gnawed on by insects... + SENSE_OMINOUS_PRESENCE = 7510, -- You sense an ominous presence... + PLAYER_OBTAINS_ITEM = 8445, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8446, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8447, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8448, -- You already possess that temporary item. + NO_COMBINATION = 8453, -- You were unable to enter a combination. + REGIME_REGISTERED = 10531, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 11591, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/The_Ashu_Talif/IDs.lua b/scripts/zones/The_Ashu_Talif/IDs.lua index cf36dc7cf46..ce647520a83 100644 --- a/scripts/zones/The_Ashu_Talif/IDs.lua +++ b/scripts/zones/The_Ashu_Talif/IDs.lua @@ -10,40 +10,41 @@ zones[xi.zone.THE_ASHU_TALIF] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - TIME_TO_COMPLETE = 7408, -- You have [minute/minutes] (Earth time) to complete this mission. - MISSION_FAILED = 7409, -- The mission has failed. Leaving area. - TIME_REMAINING_MINUTES = 7413, -- ime remaining: [minute/minutes] (Earth time). - TIME_REMAINING_SECONDS = 7414, -- ime remaining: [second/seconds] (Earth time). - FADES_INTO_NOTHINGNESS = 7415, -- The fades into nothingness... - PARTY_FALLEN = 7416, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. - GOWAM_DEATH = 7563, -- Ugh... - YAZQUHL_DEATH = 7566, -- Defeated...by a corsair...? - TAKE_THIS = 7567, -- Take this! - REST_BENEATH = 7568, -- Time for you to rest beneath the waves! - STOP_US = 7569, -- There's nothing you can do to stop us! - BATTLE_HIGH_SEAS = 7571, -- A battle on the high seas? My warrior's spirit soars in anticipation! - TIME_IS_NEAR = 7572, -- My time is near... - SO_I_FALL = 7573, -- And so I fall... - SWIFT_AS_LIGHTNING = 7574, -- Swift as lightning...! - HARNESS_THE_WHIRLWIND = 7575, -- Harness the whirlwind...! - STING_OF_MY_BLADE = 7576, -- Feel the sting of my blade! - UNNATURAL_CURS = 7577, -- Unnatural curs! - OVERPOWERED_CREW = 7578, -- You have overpowered my crew... - TEST_YOUR_BLADES = 7579, -- I will test your blades. Prepare to join your ancestors... - FOR_THE_BLACK_COFFIN = 7580, -- For the Black Coffin! - FOR_EPHRAMAD = 7581, -- For Ephramad! - TROUBLESOME_SQUABS = 7582, -- Troublesome squabs... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + TIME_TO_COMPLETE = 7408, -- You have [minute/minutes] (Earth time) to complete this mission. + MISSION_FAILED = 7409, -- The mission has failed. Leaving area. + TIME_REMAINING_MINUTES = 7413, -- ime remaining: [minute/minutes] (Earth time). + TIME_REMAINING_SECONDS = 7414, -- ime remaining: [second/seconds] (Earth time). + FADES_INTO_NOTHINGNESS = 7415, -- The fades into nothingness... + PARTY_FALLEN = 7416, -- ll party members have fallen in battle. Mission failure in [minute/minutes]. + GOWAM_DEATH = 7563, -- Ugh... + YAZQUHL_DEATH = 7566, -- Defeated...by a corsair...? + TAKE_THIS = 7567, -- Take this! + REST_BENEATH = 7568, -- Time for you to rest beneath the waves! + STOP_US = 7569, -- There's nothing you can do to stop us! + BATTLE_HIGH_SEAS = 7571, -- A battle on the high seas? My warrior's spirit soars in anticipation! + TIME_IS_NEAR = 7572, -- My time is near... + SO_I_FALL = 7573, -- And so I fall... + SWIFT_AS_LIGHTNING = 7574, -- Swift as lightning...! + HARNESS_THE_WHIRLWIND = 7575, -- Harness the whirlwind...! + STING_OF_MY_BLADE = 7576, -- Feel the sting of my blade! + UNNATURAL_CURS = 7577, -- Unnatural curs! + OVERPOWERED_CREW = 7578, -- You have overpowered my crew... + TEST_YOUR_BLADES = 7579, -- I will test your blades. Prepare to join your ancestors... + FOR_THE_BLACK_COFFIN = 7580, -- For the Black Coffin! + FOR_EPHRAMAD = 7581, -- For Ephramad! + TROUBLESOME_SQUABS = 7582, -- Troublesome squabs... }, mob = diff --git a/scripts/zones/The_Boyahda_Tree/IDs.lua b/scripts/zones/The_Boyahda_Tree/IDs.lua index 947cdaf96a5..625f9bd27fc 100644 --- a/scripts/zones/The_Boyahda_Tree/IDs.lua +++ b/scripts/zones/The_Boyahda_Tree/IDs.lua @@ -10,31 +10,32 @@ zones[xi.zone.THE_BOYAHDA_TREE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - CHEST_UNLOCKED = 7165, -- You unlock the chest! - CAN_SEE_SKY = 7178, -- You can see the sky from here. - SOMETHING_NOT_RIGHT = 7179, -- Something is not right! - CANNOT_SEE_MOON = 7180, -- You cannot see the moon right now. - CONQUEST_BASE = 7181, -- Tallying conquest results... - WARDEN_SPEECH = 7340, -- Pi...! - WARDEN_TRANSLATION = 7341, -- The warden appears to want something from you... - SENSE_OMINOUS_PRESENCE = 7401, -- You sense an ominous presence... - REGIME_REGISTERED = 10344, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 11396, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 11397, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 11398, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 11399, -- You already possess that temporary item. - NO_COMBINATION = 11404, -- You were unable to enter a combination. - HOMEPOINT_SET = 11442, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + CHEST_UNLOCKED = 7165, -- You unlock the chest! + CAN_SEE_SKY = 7178, -- You can see the sky from here. + SOMETHING_NOT_RIGHT = 7179, -- Something is not right! + CANNOT_SEE_MOON = 7180, -- You cannot see the moon right now. + CONQUEST_BASE = 7181, -- Tallying conquest results... + WARDEN_SPEECH = 7340, -- Pi...! + WARDEN_TRANSLATION = 7341, -- The warden appears to want something from you... + SENSE_OMINOUS_PRESENCE = 7401, -- You sense an ominous presence... + REGIME_REGISTERED = 10344, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 11396, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 11397, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 11398, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 11399, -- You already possess that temporary item. + NO_COMBINATION = 11404, -- You were unable to enter a combination. + HOMEPOINT_SET = 11442, -- Home point set! }, mob = { diff --git a/scripts/zones/The_Celestial_Nexus/IDs.lua b/scripts/zones/The_Celestial_Nexus/IDs.lua index 4c36c598be2..e57b7510f99 100644 --- a/scripts/zones/The_Celestial_Nexus/IDs.lua +++ b/scripts/zones/The_Celestial_Nexus/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.THE_CELESTIAL_NEXUS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. }, mob = { diff --git a/scripts/zones/The_Colosseum/IDs.lua b/scripts/zones/The_Colosseum/IDs.lua index 5ac8ce5070a..618977d4ece 100644 --- a/scripts/zones/The_Colosseum/IDs.lua +++ b/scripts/zones/The_Colosseum/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.THE_COLOSSEUM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - THANKS_FOR_STOPPING_BY = 11506, -- Thanks for stopping by. I'll be seeing you around, ! - I_CAN_GIVE_YOU = 11507, -- Let me see... I can give you [jetton/jettons] for this amount. - EXCEED_THE_LIMIT_OF_JETTONS = 11509, -- By exchanging for this amount, you will exceed the limit of jettons that you can carry. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + THANKS_FOR_STOPPING_BY = 11506, -- Thanks for stopping by. I'll be seeing you around, ! + I_CAN_GIVE_YOU = 11507, -- Let me see... I can give you [jetton/jettons] for this amount. + EXCEED_THE_LIMIT_OF_JETTONS = 11509, -- By exchanging for this amount, you will exceed the limit of jettons that you can carry. }, mob = { diff --git a/scripts/zones/The_Eldieme_Necropolis/IDs.lua b/scripts/zones/The_Eldieme_Necropolis/IDs.lua index 9409dca0eb4..c9ff252c326 100644 --- a/scripts/zones/The_Eldieme_Necropolis/IDs.lua +++ b/scripts/zones/The_Eldieme_Necropolis/IDs.lua @@ -22,6 +22,7 @@ zones[xi.zone.THE_ELDIEME_NECROPOLIS] = LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. DEVICE_NOT_WORKING = 7326, -- The device is not working. SYS_OVERLOAD = 7335, -- Warning! Sys...verload! Enterin...fety mode. ID eras...d. YOU_LOST_THE = 7340, -- You lost the . diff --git a/scripts/zones/The_Eldieme_Necropolis_[S]/IDs.lua b/scripts/zones/The_Eldieme_Necropolis_[S]/IDs.lua index 25ab852166b..8849e9488c6 100644 --- a/scripts/zones/The_Eldieme_Necropolis_[S]/IDs.lua +++ b/scripts/zones/The_Eldieme_Necropolis_[S]/IDs.lua @@ -17,6 +17,7 @@ zones[xi.zone.THE_ELDIEME_NECROPOLIS_S] = CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. LAYTON_SHOP_DIALOG = 7111, -- Might you be a student of the same field as I? If that is the case, I might be able to provide you with the proper grimoires...at a price, of course. SARCOPHAGUS_SEALED = 7605, -- It is a stone sarcophagus with the lid sealed tight. It cannot be opened. NAMES_CARVED_ON_STONE = 7606, -- The names of the deceased in this area are carved upon the stone. diff --git a/scripts/zones/The_Garden_of_RuHmet/IDs.lua b/scripts/zones/The_Garden_of_RuHmet/IDs.lua index a848ae292a7..3410c23ae42 100644 --- a/scripts/zones/The_Garden_of_RuHmet/IDs.lua +++ b/scripts/zones/The_Garden_of_RuHmet/IDs.lua @@ -10,23 +10,24 @@ zones[xi.zone.THE_GARDEN_OF_RUHMET] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CONQUEST_BASE = 7447, -- Tallying conquest results... - NO_NEED_INVESTIGATE = 7626, -- There is no need to investigate further. - PORTAL_SEALED = 7655, -- The portal is firmly sealed by a mysterious energy. - UNKNOWN_PRESENCE = 7763, -- You sense some unknown presence... - NONE_HOSTILE = 7764, -- You sense some unknown presence, but it does not seem hostile. - MENACING_CREATURES = 7765, -- Menacing creatures appear out of nowhere! - SHEER_ANIMOSITY = 7766, -- is enveloped in sheer animosity! - HOMEPOINT_SET = 7771, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CONQUEST_BASE = 7447, -- Tallying conquest results... + NO_NEED_INVESTIGATE = 7626, -- There is no need to investigate further. + PORTAL_SEALED = 7655, -- The portal is firmly sealed by a mysterious energy. + UNKNOWN_PRESENCE = 7763, -- You sense some unknown presence... + NONE_HOSTILE = 7764, -- You sense some unknown presence, but it does not seem hostile. + MENACING_CREATURES = 7765, -- Menacing creatures appear out of nowhere! + SHEER_ANIMOSITY = 7766, -- is enveloped in sheer animosity! + HOMEPOINT_SET = 7771, -- Home point set! }, mob = diff --git a/scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua b/scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua index bea13279be7..ecc105d1d9a 100644 --- a/scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua +++ b/scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua @@ -10,49 +10,50 @@ zones[xi.zone.THE_SANCTUARY_OF_ZITAH] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. - CONQUEST = 7225, -- You've earned conquest points! - FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. - DIG_THROW_AWAY = 7571, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7573, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7639, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - AIR_HAS_SUDDENLY_CHANGED = 7740, -- The air around you has suddenly changed! - SOMETHING_BETTER = 7741, -- Don't you have something better to do right now? - CANNOT_REMOVE_FRAG = 7744, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... - ALREADY_OBTAINED_FRAG = 7745, -- You have already obtained this monument's . Try searching for another. - FOUND_ALL_FRAGS = 7747, -- You have obtained ! You now have all 8 fragments of light! - ZILART_MONUMENT = 7748, -- It is an ancient Zilart monument. - AIR_REMAINS_STAGNANT = 7760, -- The air in this area remains stagnant. You begin to feel sick... It would be wise to leave immediately. - LOOKS_LIKE_STURDY_BRANCH = 7770, -- This looks like a sturdy branch. You will need to cut it off. - BEAUTIFUL_STURDY_BRANCH = 7771, -- It is a beautiful, sturdy branch. - SENSE_STRONG_EVIL_PRESENCE = 7773, -- You can sense a strong, evil presence! - STRANGE_FORCE_PREVENTS = 7774, -- Some strange force is preventing you from cutting all the way through. - STRANGE_FORCE_VANISHED = 7775, -- The strange force has vanished, and has newly sprouted in the cut! - NO_LONGER_SENSE_EVIL = 7776, -- You no longer sense the evil presence, but there is still a feeling of unrest throughout the forest. - NEWLY_SPROUTED_GLOWING = 7777, -- The newly sprouted is glowing softly. You no longer feel as if you are being watched. - NOT_THE_TIME_FOR_THAT = 7778, -- This is not the time for that! - SENSE_OMINOUS_PRESENCE = 7862, -- You sense an ominous presence... - PLAYER_OBTAINS_ITEM = 8096, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8097, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8098, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8099, -- You already possess that temporary item. - NO_COMBINATION = 8104, -- You were unable to enter a combination. - REGIME_REGISTERED = 10282, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 12271, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. + CONQUEST = 7225, -- You've earned conquest points! + FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. + DIG_THROW_AWAY = 7571, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7573, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7639, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + AIR_HAS_SUDDENLY_CHANGED = 7740, -- The air around you has suddenly changed! + SOMETHING_BETTER = 7741, -- Don't you have something better to do right now? + CANNOT_REMOVE_FRAG = 7744, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... + ALREADY_OBTAINED_FRAG = 7745, -- You have already obtained this monument's . Try searching for another. + FOUND_ALL_FRAGS = 7747, -- You have obtained ! You now have all 8 fragments of light! + ZILART_MONUMENT = 7748, -- It is an ancient Zilart monument. + AIR_REMAINS_STAGNANT = 7760, -- The air in this area remains stagnant. You begin to feel sick... It would be wise to leave immediately. + LOOKS_LIKE_STURDY_BRANCH = 7770, -- This looks like a sturdy branch. You will need to cut it off. + BEAUTIFUL_STURDY_BRANCH = 7771, -- It is a beautiful, sturdy branch. + SENSE_STRONG_EVIL_PRESENCE = 7773, -- You can sense a strong, evil presence! + STRANGE_FORCE_PREVENTS = 7774, -- Some strange force is preventing you from cutting all the way through. + STRANGE_FORCE_VANISHED = 7775, -- The strange force has vanished, and has newly sprouted in the cut! + NO_LONGER_SENSE_EVIL = 7776, -- You no longer sense the evil presence, but there is still a feeling of unrest throughout the forest. + NEWLY_SPROUTED_GLOWING = 7777, -- The newly sprouted is glowing softly. You no longer feel as if you are being watched. + NOT_THE_TIME_FOR_THAT = 7778, -- This is not the time for that! + SENSE_OMINOUS_PRESENCE = 7862, -- You sense an ominous presence... + PLAYER_OBTAINS_ITEM = 8096, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8097, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8098, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8099, -- You already possess that temporary item. + NO_COMBINATION = 8104, -- You were unable to enter a combination. + REGIME_REGISTERED = 10282, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 12271, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/The_Shrine_of_RuAvitau/IDs.lua b/scripts/zones/The_Shrine_of_RuAvitau/IDs.lua index d846825cbda..04271d73794 100644 --- a/scripts/zones/The_Shrine_of_RuAvitau/IDs.lua +++ b/scripts/zones/The_Shrine_of_RuAvitau/IDs.lua @@ -10,25 +10,26 @@ zones[xi.zone.THE_SHRINE_OF_RUAVITAU] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - CONQUEST_BASE = 7157, -- Tallying conquest results... - SMALL_HOLE_HERE = 7344, -- There is a small hole here. It appears to be damp inside... - KIRIN_OFFSET = 7355, -- I am Kirin, master of the Shijin. The one who stands above all. You, who have risen above your mortal status to contend with the gods... It is time to reap your reward. - REGIME_REGISTERED = 10347, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 11399, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 11400, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 11401, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 11402, -- You already possess that temporary item. - NO_COMBINATION = 11407, -- You were unable to enter a combination. - HOMEPOINT_SET = 11433, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + CONQUEST_BASE = 7157, -- Tallying conquest results... + SMALL_HOLE_HERE = 7344, -- There is a small hole here. It appears to be damp inside... + KIRIN_OFFSET = 7355, -- I am Kirin, master of the Shijin. The one who stands above all. You, who have risen above your mortal status to contend with the gods... It is time to reap your reward. + REGIME_REGISTERED = 10347, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 11399, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 11400, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 11401, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 11402, -- You already possess that temporary item. + NO_COMBINATION = 11407, -- You were unable to enter a combination. + HOMEPOINT_SET = 11433, -- Home point set! }, mob = { diff --git a/scripts/zones/The_Shrouded_Maw/IDs.lua b/scripts/zones/The_Shrouded_Maw/IDs.lua index 7b3734033e5..d86f0f6303a 100644 --- a/scripts/zones/The_Shrouded_Maw/IDs.lua +++ b/scripts/zones/The_Shrouded_Maw/IDs.lua @@ -10,16 +10,17 @@ zones[xi.zone.THE_SHROUDED_MAW] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - CONQUEST_BASE = 7429, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7407, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7414, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + CONQUEST_BASE = 7429, -- Tallying conquest results... }, mob = { diff --git a/scripts/zones/Throne_Room/IDs.lua b/scripts/zones/Throne_Room/IDs.lua index 3baa884fb54..b5328f4c123 100644 --- a/scripts/zones/Throne_Room/IDs.lua +++ b/scripts/zones/Throne_Room/IDs.lua @@ -10,22 +10,23 @@ zones[xi.zone.THRONE_ROOM] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - NO_HIDE_AWAY = 7706, -- I have not been hiding away from my troubles! - FEEL_MY_PAIN = 7707, -- Feel my twenty years of pain! - YOUR_ANSWER = 7708, -- Is that your answer!? - RETURN_TO_THE_DARKNESS = 7709, -- Return with your soul to the darkness you came from! - CANT_UNDERSTAND = 7710, -- You--a man who has never lived bound by the chains of his country--how can you understand my pain!? - BLADE_ANSWER = 7711, -- Let my blade be the answer! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + NO_HIDE_AWAY = 7706, -- I have not been hiding away from my troubles! + FEEL_MY_PAIN = 7707, -- Feel my twenty years of pain! + YOUR_ANSWER = 7708, -- Is that your answer!? + RETURN_TO_THE_DARKNESS = 7709, -- Return with your soul to the darkness you came from! + CANT_UNDERSTAND = 7710, -- You--a man who has never lived bound by the chains of his country--how can you understand my pain!? + BLADE_ANSWER = 7711, -- Let my blade be the answer! }, mob = { diff --git a/scripts/zones/Throne_Room_[S]/IDs.lua b/scripts/zones/Throne_Room_[S]/IDs.lua index 11a85a0d73e..46af69b0b22 100644 --- a/scripts/zones/Throne_Room_[S]/IDs.lua +++ b/scripts/zones/Throne_Room_[S]/IDs.lua @@ -10,18 +10,19 @@ zones[xi.zone.THRONE_ROOM_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - PARTY_MEMBERS_HAVE_FALLEN = 7929, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7936, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - GATHERED_DAWNDROPS_LIGHT = 8224, -- The gathered dawndrops unleash a brilliant light, melding together to form ! - RETRACED_ALL_JUNCTIONS = 8225, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + PARTY_MEMBERS_HAVE_FALLEN = 7929, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7936, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + GATHERED_DAWNDROPS_LIGHT = 8224, -- The gathered dawndrops unleash a brilliant light, melding together to form ! + RETRACED_ALL_JUNCTIONS = 8225, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. }, mob = { diff --git a/scripts/zones/Throne_Room_[V]/IDs.lua b/scripts/zones/Throne_Room_[V]/IDs.lua index 933b04926fc..12c0ca4a2e7 100644 --- a/scripts/zones/Throne_Room_[V]/IDs.lua +++ b/scripts/zones/Throne_Room_[V]/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.THRONE_ROOM_V] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Toraimarai_Canal/IDs.lua b/scripts/zones/Toraimarai_Canal/IDs.lua index 4cc3555cd52..ac94863e118 100644 --- a/scripts/zones/Toraimarai_Canal/IDs.lua +++ b/scripts/zones/Toraimarai_Canal/IDs.lua @@ -10,27 +10,28 @@ zones[xi.zone.TORAIMARAI_CANAL] = { text = { - SEALED_SHUT = 3, -- It's sealed shut with incredibly strong magic. - ITEM_CANNOT_BE_OBTAINED = 6430, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6436, -- Obtained: . - GIL_OBTAINED = 6437, -- Obtained gil. - KEYITEM_OBTAINED = 6439, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6465, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7047, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7048, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7049, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7058, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - CONQUEST_BASE = 7103, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7262, -- You can't fish here. - CHEST_UNLOCKED = 7370, -- You unlock the chest! - PLAYER_OBTAINS_ITEM = 7539, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7540, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7541, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7542, -- You already possess that temporary item. - NO_COMBINATION = 7547, -- You were unable to enter a combination. - REGIME_REGISTERED = 9625, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 10673, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. - HOMEPOINT_SET = 10701, -- Home point set! + SEALED_SHUT = 3, -- It's sealed shut with incredibly strong magic. + ITEM_CANNOT_BE_OBTAINED = 6430, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6436, -- Obtained: . + GIL_OBTAINED = 6437, -- Obtained gil. + KEYITEM_OBTAINED = 6439, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6465, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7047, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7048, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7049, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7058, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7069, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7103, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7262, -- You can't fish here. + CHEST_UNLOCKED = 7370, -- You unlock the chest! + PLAYER_OBTAINS_ITEM = 7539, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7540, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7541, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7542, -- You already possess that temporary item. + NO_COMBINATION = 7547, -- You were unable to enter a combination. + REGIME_REGISTERED = 9625, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 10673, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + HOMEPOINT_SET = 10701, -- Home point set! }, mob = { diff --git a/scripts/zones/Uleguerand_Range/IDs.lua b/scripts/zones/Uleguerand_Range/IDs.lua index f292a05fee4..cd351a24353 100644 --- a/scripts/zones/Uleguerand_Range/IDs.lua +++ b/scripts/zones/Uleguerand_Range/IDs.lua @@ -10,21 +10,22 @@ zones[xi.zone.ULEGUERAND_RANGE] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6397, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6403, -- Obtained: . - GIL_OBTAINED = 6404, -- Obtained gil. - KEYITEM_OBTAINED = 6406, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6417, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6432, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7014, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7015, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7016, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7070, -- Tallying conquest results... - SOMETHING_GLITTERING = 7341, -- You see something glittering beneath the surface of the ice. - WHAT_LIES_BENEATH = 7342, -- There are many cold scattered around the area. Could someone be trying to melt the ice to retrieve what lies beneath? - SOMETHING_GLITTERING_BUT = 7343, -- You see something glittering below the surface here, but the ice encases it completely. - HOMEPOINT_SET = 8335, -- Home point set! + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6397, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6403, -- Obtained: . + GIL_OBTAINED = 6404, -- Obtained gil. + KEYITEM_OBTAINED = 6406, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6417, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6432, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7014, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7015, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7016, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7036, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7070, -- Tallying conquest results... + SOMETHING_GLITTERING = 7341, -- You see something glittering beneath the surface of the ice. + WHAT_LIES_BENEATH = 7342, -- There are many cold scattered around the area. Could someone be trying to melt the ice to retrieve what lies beneath? + SOMETHING_GLITTERING_BUT = 7343, -- You see something glittering below the surface here, but the ice encases it completely. + HOMEPOINT_SET = 8335, -- Home point set! }, mob = { diff --git a/scripts/zones/Upper_Delkfutts_Tower/IDs.lua b/scripts/zones/Upper_Delkfutts_Tower/IDs.lua index bd2e315063c..2dfcb6a5afe 100644 --- a/scripts/zones/Upper_Delkfutts_Tower/IDs.lua +++ b/scripts/zones/Upper_Delkfutts_Tower/IDs.lua @@ -10,27 +10,28 @@ zones[xi.zone.UPPER_DELKFUTTS_TOWER] = { text = { - THIS_ELEVATOR_GOES_DOWN = 25, -- This elevator goes down, but it is locked. Perhaps a key is needed to activate it. - ITEM_CANNOT_BE_OBTAINED = 6419, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6425, -- Obtained: . - GIL_OBTAINED = 6426, -- Obtained gil. - KEYITEM_OBTAINED = 6428, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6454, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7036, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7037, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7038, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7092, -- You can't fish here. - CONQUEST_BASE = 7192, -- Tallying conquest results... - CHEST_UNLOCKED = 7359, -- You unlock the chest! - PLAYER_OBTAINS_ITEM = 7382, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7383, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7384, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7385, -- You already possess that temporary item. - NO_COMBINATION = 7390, -- You were unable to enter a combination. - REGIME_REGISTERED = 9468, -- New training regime registered! - LEARNS_SPELL = 10516, -- learns ! - UNCANNY_SENSATION = 10518, -- You are assaulted by an uncanny sensation. - HOMEPOINT_SET = 10527, -- Home point set! + THIS_ELEVATOR_GOES_DOWN = 25, -- This elevator goes down, but it is locked. Perhaps a key is needed to activate it. + ITEM_CANNOT_BE_OBTAINED = 6419, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6425, -- Obtained: . + GIL_OBTAINED = 6426, -- Obtained gil. + KEYITEM_OBTAINED = 6428, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6454, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7036, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7037, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7038, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7058, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7092, -- You can't fish here. + CONQUEST_BASE = 7192, -- Tallying conquest results... + CHEST_UNLOCKED = 7359, -- You unlock the chest! + PLAYER_OBTAINS_ITEM = 7382, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7383, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7384, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7385, -- You already possess that temporary item. + NO_COMBINATION = 7390, -- You were unable to enter a combination. + REGIME_REGISTERED = 9468, -- New training regime registered! + LEARNS_SPELL = 10516, -- learns ! + UNCANNY_SENSATION = 10518, -- You are assaulted by an uncanny sensation. + HOMEPOINT_SET = 10527, -- Home point set! }, mob = { diff --git a/scripts/zones/Upper_Jeuno/IDs.lua b/scripts/zones/Upper_Jeuno/IDs.lua index 7ae4ad07925..d97b9e54fa1 100644 --- a/scripts/zones/Upper_Jeuno/IDs.lua +++ b/scripts/zones/Upper_Jeuno/IDs.lua @@ -22,6 +22,7 @@ zones[xi.zone.UPPER_JEUNO] = CARRIED_OVER_POINTS = 6588, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 6589, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 6590, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6610, -- Your party is unable to participate because certain members' levels are restricted. HOMEPOINT_SET = 6684, -- Home point set! MOG_LOCKER_OFFSET = 6802, -- Your Mog Locker lease is valid until , kupo. GLYKE_SHOP_DIALOG = 6985, -- Can I help you? diff --git a/scripts/zones/Valkurm_Dunes/IDs.lua b/scripts/zones/Valkurm_Dunes/IDs.lua index a0ee1abd491..8279c6cb80d 100644 --- a/scripts/zones/Valkurm_Dunes/IDs.lua +++ b/scripts/zones/Valkurm_Dunes/IDs.lua @@ -22,6 +22,7 @@ zones[xi.zone.VALKURM_DUNES] = CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7079, -- Tallying conquest results... BEASTMEN_BANNER = 7160, -- There is a beastmen's banner. FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. diff --git a/scripts/zones/Valley_of_Sorrows/IDs.lua b/scripts/zones/Valley_of_Sorrows/IDs.lua index 65509660f7b..d6102b37f17 100644 --- a/scripts/zones/Valley_of_Sorrows/IDs.lua +++ b/scripts/zones/Valley_of_Sorrows/IDs.lua @@ -10,27 +10,28 @@ zones[xi.zone.VALLEY_OF_SORROWS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - AURA_THREATENS = 6408, -- An aura of irrepressible might threatens to overwhelm you... - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - SOMETHING_BURRIED = 7316, -- It looks like something was buried here. - PLAYER_OBTAINS_ITEM = 7506, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7507, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7508, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7509, -- You already possess that temporary item. - NO_COMBINATION = 7514, -- You were unable to enter a combination. - REGIME_REGISTERED = 9692, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 10811, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + AURA_THREATENS = 6408, -- An aura of irrepressible might threatens to overwhelm you... + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + SOMETHING_BURRIED = 7316, -- It looks like something was buried here. + PLAYER_OBTAINS_ITEM = 7506, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7507, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7508, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7509, -- You already possess that temporary item. + NO_COMBINATION = 7514, -- You were unable to enter a combination. + REGIME_REGISTERED = 9692, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 10811, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/VeLugannon_Palace/IDs.lua b/scripts/zones/VeLugannon_Palace/IDs.lua index e1456ddc8f5..2b5392ee878 100644 --- a/scripts/zones/VeLugannon_Palace/IDs.lua +++ b/scripts/zones/VeLugannon_Palace/IDs.lua @@ -10,25 +10,26 @@ zones[xi.zone.VELUGANNON_PALACE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - CHEST_UNLOCKED = 7224, -- You unlock the chest! - EVIL_PRESENCE = 7234, -- You sense an evil presence lurking in the shadows... - KNIFE_CHANGES_SHAPE = 7241, -- The begins to change shape. - NOTHING_HAPPENS = 7242, -- Nothing happens. - REGIME_REGISTERED = 10167, -- New training regime registered! - PLAYER_OBTAINS_ITEM = 11219, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 11220, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 11221, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 11222, -- You already possess that temporary item. - NO_COMBINATION = 11227, -- You were unable to enter a combination. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + CHEST_UNLOCKED = 7224, -- You unlock the chest! + EVIL_PRESENCE = 7234, -- You sense an evil presence lurking in the shadows... + KNIFE_CHANGES_SHAPE = 7241, -- The begins to change shape. + NOTHING_HAPPENS = 7242, -- Nothing happens. + REGIME_REGISTERED = 10167, -- New training regime registered! + PLAYER_OBTAINS_ITEM = 11219, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 11220, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 11221, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 11222, -- You already possess that temporary item. + NO_COMBINATION = 11227, -- You were unable to enter a combination. }, mob = { diff --git a/scripts/zones/Vunkerl_Inlet_[S]/IDs.lua b/scripts/zones/Vunkerl_Inlet_[S]/IDs.lua index c71967a7a5e..f74a00f1f04 100644 --- a/scripts/zones/Vunkerl_Inlet_[S]/IDs.lua +++ b/scripts/zones/Vunkerl_Inlet_[S]/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.VUNKERL_INLET_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - NOW_IS_NOT_THE_TIME = 6406, -- Now is not the time for that! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - COMMON_SENSE_SURVIVAL = 9026, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + NOW_IS_NOT_THE_TIME = 6406, -- Now is not the time for that! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + COMMON_SENSE_SURVIVAL = 9026, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Wajaom_Woodlands/IDs.lua b/scripts/zones/Wajaom_Woodlands/IDs.lua index 1a67db296d4..20f60baef98 100644 --- a/scripts/zones/Wajaom_Woodlands/IDs.lua +++ b/scripts/zones/Wajaom_Woodlands/IDs.lua @@ -10,27 +10,28 @@ zones[xi.zone.WAJAOM_WOODLANDS] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. - DIG_THROW_AWAY = 7067, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7069, -- You dig and you dig, but find nothing. - PLACE_HYDROGAUGE = 7347, -- You set the in the glowing trench. - ENIGMATIC_LIGHT = 7348, -- The is giving off an enigmatic light. - LEYPOINT = 7403, -- An eerie red glow emanates from this stone platform. The surrounding air feels alive with energy... - HARVESTING_IS_POSSIBLE_HERE = 7411, -- Harvesting is possible here if you have . - HEADY_FRAGRANCE = 8490, -- The heady fragrance of wine pervades the air... - BROKEN_SHARDS = 8492, -- Broken shards of insect wing are scattered all over... - PAMAMA_PEELS = 8494, -- Piles of pamama peels litter the ground... - DRAWS_NEAR = 8520, -- Something draws near! - COMMON_SENSE_SURVIVAL = 9638, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7054, -- You can't fish here. + DIG_THROW_AWAY = 7067, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7069, -- You dig and you dig, but find nothing. + PLACE_HYDROGAUGE = 7347, -- You set the in the glowing trench. + ENIGMATIC_LIGHT = 7348, -- The is giving off an enigmatic light. + LEYPOINT = 7403, -- An eerie red glow emanates from this stone platform. The surrounding air feels alive with energy... + HARVESTING_IS_POSSIBLE_HERE = 7411, -- Harvesting is possible here if you have . + HEADY_FRAGRANCE = 8490, -- The heady fragrance of wine pervades the air... + BROKEN_SHARDS = 8492, -- Broken shards of insect wing are scattered all over... + PAMAMA_PEELS = 8494, -- Piles of pamama peels litter the ground... + DRAWS_NEAR = 8520, -- Something draws near! + COMMON_SENSE_SURVIVAL = 9638, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Walk_of_Echoes/IDs.lua b/scripts/zones/Walk_of_Echoes/IDs.lua index bacca5bd272..005e21da51b 100644 --- a/scripts/zones/Walk_of_Echoes/IDs.lua +++ b/scripts/zones/Walk_of_Echoes/IDs.lua @@ -10,20 +10,21 @@ zones[xi.zone.WALK_OF_ECHOES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CANNOT_PROGRESS_MISSION = 7047, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. - CANNOT_PROGRESS_QUEST = 7048, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the quest [Champion of the Dawn/A Forbidden Reunion]. - PARTY_MEMBERS_HAVE_FALLEN = 7647, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7654, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - GATHERED_DAWNDROPS_LIGHT = 7965, -- The gathered dawndrops unleash a brilliant light, melding together to form ! - RETRACED_ALL_JUNCTIONS = 7966, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CANNOT_PROGRESS_MISSION = 7047, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the [Chains of Promathia/Treasures of Aht Urhgan/Wings of the Goddess/Seekers of Adoulin/Rise of the Zilart] missions. + CANNOT_PROGRESS_QUEST = 7048, -- ou are unable to make further progress in Rhapsodies of Vana'diel due to an event occurring in the quest [Champion of the Dawn/A Forbidden Reunion]. + PARTY_MEMBERS_HAVE_FALLEN = 7647, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7654, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + GATHERED_DAWNDROPS_LIGHT = 7965, -- The gathered dawndrops unleash a brilliant light, melding together to form ! + RETRACED_ALL_JUNCTIONS = 7966, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. }, mob = { diff --git a/scripts/zones/Walk_of_Echoes_P1/IDs.lua b/scripts/zones/Walk_of_Echoes_P1/IDs.lua index c2f41b350dd..75d7460af15 100644 --- a/scripts/zones/Walk_of_Echoes_P1/IDs.lua +++ b/scripts/zones/Walk_of_Echoes_P1/IDs.lua @@ -10,9 +10,10 @@ zones[xi.zone.WALK_OF_ECHOES_P1] = { text = { - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Walk_of_Echoes_P2/IDs.lua b/scripts/zones/Walk_of_Echoes_P2/IDs.lua index 52ffccb6388..eec2615a215 100644 --- a/scripts/zones/Walk_of_Echoes_P2/IDs.lua +++ b/scripts/zones/Walk_of_Echoes_P2/IDs.lua @@ -10,9 +10,10 @@ zones[xi.zone.WALK_OF_ECHOES_P2] = { text = { - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Waughroon_Shrine/IDs.lua b/scripts/zones/Waughroon_Shrine/IDs.lua index 0417b859254..2c6dcaaa1af 100644 --- a/scripts/zones/Waughroon_Shrine/IDs.lua +++ b/scripts/zones/Waughroon_Shrine/IDs.lua @@ -10,34 +10,35 @@ zones[xi.zone.WAUGHROON_SHRINE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. - THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. - YOU_DECIDED_TO_SHOW_UP = 7685, -- So, you decided to show up. Now it's time to see what you're really made of, heh heh heh. - LOOKS_LIKE_YOU_WERENT_READY = 7686, -- Looks like you weren't ready for me, were you? Now go home, wash your face, and come back when you think you've got what it takes. - YOUVE_COME_A_LONG_WAY = 7687, -- Hm. That was a mighty fine display of skill there, . You've come a long way... - TEACH_YOU_TO_RESPECT_ELDERS = 7688, -- I'll teach you to respect your elders! - TAKE_THAT_YOU_WHIPPERSNAPPER = 7689, -- Take that, you whippersnapper! - NOW_THAT_IM_WARMED_UP = 7690, -- Now that I'm warmed up... - THAT_LL_HURT_IN_THE_MORNING = 7691, -- Ungh... That'll hurt in the morning... - ONE_TENTACLE_WOUNDED = 7709, -- One of the sea creature's tentacles have been wounded. - ALL_TENTACLES_WOUNDED = 7710, -- All of the sea creature's tentacles have been wounded. - SCORPION_IS_STUNNED = 7711, -- The platoon scorpion does not have enough energy to attack! - SCORPION_IS_BOUND = 7712, -- The platoon scorpion's legs are lodged in the rocks! - PROMISE_ME_YOU_WONT_GO_DOWN = 7728, -- Promise you won't go down too easy, okay? - IM_JUST_GETTING_WARMED_UP = 7729, -- Haha! I'm just getting warmed up! - YOU_PACKED_MORE_OF_A_PUNCH = 7730, -- Hah! You pack more of a punch than I thoughtaru. But I won't go down as easy as old Maat! - WHATS_THIS_STRANGE_FEELING = 7731, -- What's this strange feeling...? It's not supposed to end...like... - HUH_IS_THAT_ALL = 7732, -- Huh? Is that all? I haven't even broken a sweataru... - YIKEY_WIKEYS = 7733, -- Yikey-wikeys! Get that thing away from meee! - WHATS_THE_MATTARU = 7734, -- ... What's the mattaru, ? Too much of a pansy-wansy to fight fair? + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + PARTY_MEMBERS_HAVE_FALLEN = 7566, -- All party members have fallen in battle. Now leaving the battlefield. + THE_PARTY_WILL_BE_REMOVED = 7573, -- If all party members' HP are still zero after # minute[/s], the party will be removed from the battlefield. + YOU_DECIDED_TO_SHOW_UP = 7685, -- So, you decided to show up. Now it's time to see what you're really made of, heh heh heh. + LOOKS_LIKE_YOU_WERENT_READY = 7686, -- Looks like you weren't ready for me, were you? Now go home, wash your face, and come back when you think you've got what it takes. + YOUVE_COME_A_LONG_WAY = 7687, -- Hm. That was a mighty fine display of skill there, . You've come a long way... + TEACH_YOU_TO_RESPECT_ELDERS = 7688, -- I'll teach you to respect your elders! + TAKE_THAT_YOU_WHIPPERSNAPPER = 7689, -- Take that, you whippersnapper! + NOW_THAT_IM_WARMED_UP = 7690, -- Now that I'm warmed up... + THAT_LL_HURT_IN_THE_MORNING = 7691, -- Ungh... That'll hurt in the morning... + ONE_TENTACLE_WOUNDED = 7709, -- One of the sea creature's tentacles have been wounded. + ALL_TENTACLES_WOUNDED = 7710, -- All of the sea creature's tentacles have been wounded. + SCORPION_IS_STUNNED = 7711, -- The platoon scorpion does not have enough energy to attack! + SCORPION_IS_BOUND = 7712, -- The platoon scorpion's legs are lodged in the rocks! + PROMISE_ME_YOU_WONT_GO_DOWN = 7728, -- Promise you won't go down too easy, okay? + IM_JUST_GETTING_WARMED_UP = 7729, -- Haha! I'm just getting warmed up! + YOU_PACKED_MORE_OF_A_PUNCH = 7730, -- Hah! You pack more of a punch than I thoughtaru. But I won't go down as easy as old Maat! + WHATS_THIS_STRANGE_FEELING = 7731, -- What's this strange feeling...? It's not supposed to end...like... + HUH_IS_THAT_ALL = 7732, -- Huh? Is that all? I haven't even broken a sweataru... + YIKEY_WIKEYS = 7733, -- Yikey-wikeys! Get that thing away from meee! + WHATS_THE_MATTARU = 7734, -- ... What's the mattaru, ? Too much of a pansy-wansy to fight fair? }, mob = diff --git a/scripts/zones/West_Ronfaure/IDs.lua b/scripts/zones/West_Ronfaure/IDs.lua index 912ad065141..08bf8013ff5 100644 --- a/scripts/zones/West_Ronfaure/IDs.lua +++ b/scripts/zones/West_Ronfaure/IDs.lua @@ -10,44 +10,45 @@ zones[xi.zone.WEST_RONFAURE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6412, -- Obtained: . - GIL_OBTAINED = 6413, -- Obtained gil. - KEYITEM_OBTAINED = 6415, -- Obtained key item: . - KEYITEM_LOST = 6416, -- Lost key item: . - FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7079, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. - DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. - GACHEMAGE_DIALOG = 7339, -- Orcish scouts lurk in the shadows. Consider yourself warned! - ADALEFONT_DIALOG = 7340, -- If you sense danger, just flee into the city. I'll not endanger myself on your account! - LAILLERA_DIALOG = 7341, -- I mustn't chat while on duty. Sorry. - PICKPOCKET_GACHEMAGE = 7342, -- A pickpocket? Now that you mention it, I did see a woman flee the city. She ran west. - PICKPOCKET_ADALEFONT = 7343, -- What, someone picked your pocket? And you call yourself an adventurer! - PICKPOCKET_COLMAIE = 7344, -- A pickpocket? Hmm... Can't say I've seen anyone like that around here. - PICKPOCKET_LAILLERA = 7345, -- A pickpocket, you say? I don't think anybody came through here. - AAVELEON_HEALED = 7347, -- My wounds are healed, thanks to you! - PICKPOCKET_AAVELEON = 7373, -- A pickpocket, out here? Phew, my wallet is safe. - PALCOMONDAU_REPORT = 7385, -- Scout reporting! All is quiet on the road to Ghelsba! - PALCOMONDAU_DIALOG = 7386, -- Let me be! I must patrol the road to Ghelsba. - ZOVRIACE_REPORT = 7388, -- Scout reporting! All is quiet on the roads to La Theine! - ZOVRIACE_DIALOG = 7390, -- Let me be! I return to Southgate with word on La Theine. - PICKPOCKET_PALCOMONDAU = 7391, -- A pickpocket? No, I haven't seen anyone matching that description. I've only seen Aaveleon, and a rather brusque woman. - PICKPOCKET_ZOVRIACE = 7392, -- A pickpocket, out here? Can't say I've seen anyone like that. I'll keep my eyes peeled. - DISMAYED_CUSTOMER = 7416, -- You find some worthless scraps of paper. - CONQUEST = 7538, -- You've earned conquest points! - SOMETHING_IS_AMISS = 7901, -- Something is amiss. - PLAYER_OBTAINS_ITEM = 8067, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 8068, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 8069, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 8070, -- You already possess that temporary item. - NO_COMBINATION = 8075, -- You were unable to enter a combination. - REGIME_REGISTERED = 10440, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 12441, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6406, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6412, -- Obtained: . + GIL_OBTAINED = 6413, -- Obtained gil. + KEYITEM_OBTAINED = 6415, -- Obtained key item: . + KEYITEM_LOST = 6416, -- Lost key item: . + FELLOW_MESSAGE_OFFSET = 6441, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7023, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7024, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7025, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7045, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7079, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7238, -- You can't fish here. + DIG_THROW_AWAY = 7251, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7253, -- You dig and you dig, but find nothing. + GACHEMAGE_DIALOG = 7339, -- Orcish scouts lurk in the shadows. Consider yourself warned! + ADALEFONT_DIALOG = 7340, -- If you sense danger, just flee into the city. I'll not endanger myself on your account! + LAILLERA_DIALOG = 7341, -- I mustn't chat while on duty. Sorry. + PICKPOCKET_GACHEMAGE = 7342, -- A pickpocket? Now that you mention it, I did see a woman flee the city. She ran west. + PICKPOCKET_ADALEFONT = 7343, -- What, someone picked your pocket? And you call yourself an adventurer! + PICKPOCKET_COLMAIE = 7344, -- A pickpocket? Hmm... Can't say I've seen anyone like that around here. + PICKPOCKET_LAILLERA = 7345, -- A pickpocket, you say? I don't think anybody came through here. + AAVELEON_HEALED = 7347, -- My wounds are healed, thanks to you! + PICKPOCKET_AAVELEON = 7373, -- A pickpocket, out here? Phew, my wallet is safe. + PALCOMONDAU_REPORT = 7385, -- Scout reporting! All is quiet on the road to Ghelsba! + PALCOMONDAU_DIALOG = 7386, -- Let me be! I must patrol the road to Ghelsba. + ZOVRIACE_REPORT = 7388, -- Scout reporting! All is quiet on the roads to La Theine! + ZOVRIACE_DIALOG = 7390, -- Let me be! I return to Southgate with word on La Theine. + PICKPOCKET_PALCOMONDAU = 7391, -- A pickpocket? No, I haven't seen anyone matching that description. I've only seen Aaveleon, and a rather brusque woman. + PICKPOCKET_ZOVRIACE = 7392, -- A pickpocket, out here? Can't say I've seen anyone like that. I'll keep my eyes peeled. + DISMAYED_CUSTOMER = 7416, -- You find some worthless scraps of paper. + CONQUEST = 7538, -- You've earned conquest points! + SOMETHING_IS_AMISS = 7901, -- Something is amiss. + PLAYER_OBTAINS_ITEM = 8067, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 8068, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 8069, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 8070, -- You already possess that temporary item. + NO_COMBINATION = 8075, -- You were unable to enter a combination. + REGIME_REGISTERED = 10440, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 12441, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/West_Sarutabaruta/IDs.lua b/scripts/zones/West_Sarutabaruta/IDs.lua index 8b4ac78aa0e..8342cdfe5e7 100644 --- a/scripts/zones/West_Sarutabaruta/IDs.lua +++ b/scripts/zones/West_Sarutabaruta/IDs.lua @@ -10,56 +10,57 @@ zones[xi.zone.WEST_SARUTABARUTA] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - DIG_THROW_AWAY = 7070, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7072, -- You dig and you dig, but find nothing. - CONQUEST_BASE = 7157, -- Tallying conquest results... - SIGN_1 = 7386, -- Northeast: Central Tower, Horutoto Ruins Northwest: Giddeus South: Port Windurst - SIGN_3 = 7387, -- East: East Sarutabaruta West: Giddeus - SIGN_5 = 7388, -- Northeast: Central Tower, Horutoto Ruins East: East Sarutabaruta West: Giddeus - SIGN_7 = 7389, -- South: Windurst East: East Sarutabaruta - SIGN_9 = 7390, -- West: Giddeus North: East Sarutabaruta South: Windurst - SIGN_11 = 7391, -- North: East Sarutabaruta Southeast: Windurst - SIGN_13 = 7392, -- East: Port Windurst West: West Tower, Horutoto Ruins - SIGN_15 = 7393, -- East: East Sarutabaruta West: Giddeus Southeast: Windurst - SIGN_17 = 7394, -- Northwest: Northwest Tower, Horutoto Ruins East: Outpost Southwest: Giddeus - PAORE_KUORE_DIALOG = 7396, -- Welcome to Windurst! Proceed through this gateway to entaru Port Windurst. - KOLAPO_OILAPO_DIALOG = 7397, -- Hi-diddly-diddly! This is the gateway to Windurst! The grasslands you're on now are known as West Sarutabaruta. - MAATA_ULAATA = 7398, -- Hello-wello! This is the central tower of the Horutoto Ruins. It's one of the several ancient-wancient magic towers which dot these grasslands. - IPUPU_DIALOG = 7401, -- I decided to take a little strolly-wolly, but before I realized it, I found myself way out here! Now I am sorta stuck... Woe is me! - FROST_DEPOSIT_TWINKLES = 7408, -- A frost deposit at the base of the tree twinkles in the starlight. - MELT_BARE_HANDS = 7410, -- It looks like it would melt if you touched it with your bare hands... - HARVESTING_IS_POSSIBLE_HERE = 7446, -- Harvesting is possible here if you have . - CONQUEST = 7462, -- You've earned conquest points! - PLAYER_OBTAINS_ITEM = 7874, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7875, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7876, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7877, -- You already possess that temporary item. - NO_COMBINATION = 7882, -- You were unable to enter a combination. - VOIDWALKER_DESPAWN = 7913, -- The monster fades before your eyes, a look of disappointment on its face. - REGIME_REGISTERED = 10202, -- New training regime registered! - DONT_SWAP_JOBS = 10203, -- hanging your job will result in the cancellation of your current training regime. - REGIME_CANCELED = 10204, -- Training regime canceled. - VOIDWALKER_NO_MOB = 11362, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 11363, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 11364, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 11365, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 11367, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 11368, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 11369, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 11370, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 12353, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + DIG_THROW_AWAY = 7070, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7072, -- You dig and you dig, but find nothing. + CONQUEST_BASE = 7157, -- Tallying conquest results... + SIGN_1 = 7386, -- Northeast: Central Tower, Horutoto Ruins Northwest: Giddeus South: Port Windurst + SIGN_3 = 7387, -- East: East Sarutabaruta West: Giddeus + SIGN_5 = 7388, -- Northeast: Central Tower, Horutoto Ruins East: East Sarutabaruta West: Giddeus + SIGN_7 = 7389, -- South: Windurst East: East Sarutabaruta + SIGN_9 = 7390, -- West: Giddeus North: East Sarutabaruta South: Windurst + SIGN_11 = 7391, -- North: East Sarutabaruta Southeast: Windurst + SIGN_13 = 7392, -- East: Port Windurst West: West Tower, Horutoto Ruins + SIGN_15 = 7393, -- East: East Sarutabaruta West: Giddeus Southeast: Windurst + SIGN_17 = 7394, -- Northwest: Northwest Tower, Horutoto Ruins East: Outpost Southwest: Giddeus + PAORE_KUORE_DIALOG = 7396, -- Welcome to Windurst! Proceed through this gateway to entaru Port Windurst. + KOLAPO_OILAPO_DIALOG = 7397, -- Hi-diddly-diddly! This is the gateway to Windurst! The grasslands you're on now are known as West Sarutabaruta. + MAATA_ULAATA = 7398, -- Hello-wello! This is the central tower of the Horutoto Ruins. It's one of the several ancient-wancient magic towers which dot these grasslands. + IPUPU_DIALOG = 7401, -- I decided to take a little strolly-wolly, but before I realized it, I found myself way out here! Now I am sorta stuck... Woe is me! + FROST_DEPOSIT_TWINKLES = 7408, -- A frost deposit at the base of the tree twinkles in the starlight. + MELT_BARE_HANDS = 7410, -- It looks like it would melt if you touched it with your bare hands... + HARVESTING_IS_POSSIBLE_HERE = 7446, -- Harvesting is possible here if you have . + CONQUEST = 7462, -- You've earned conquest points! + PLAYER_OBTAINS_ITEM = 7874, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7875, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7876, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7877, -- You already possess that temporary item. + NO_COMBINATION = 7882, -- You were unable to enter a combination. + VOIDWALKER_DESPAWN = 7913, -- The monster fades before your eyes, a look of disappointment on its face. + REGIME_REGISTERED = 10202, -- New training regime registered! + DONT_SWAP_JOBS = 10203, -- hanging your job will result in the cancellation of your current training regime. + REGIME_CANCELED = 10204, -- Training regime canceled. + VOIDWALKER_NO_MOB = 11362, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 11363, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 11364, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 11365, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 11367, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 11368, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 11369, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 11370, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 12353, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/West_Sarutabaruta_[S]/IDs.lua b/scripts/zones/West_Sarutabaruta_[S]/IDs.lua index e3e26d370ec..b7ce529f02d 100644 --- a/scripts/zones/West_Sarutabaruta_[S]/IDs.lua +++ b/scripts/zones/West_Sarutabaruta_[S]/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.WEST_SARUTABARUTA_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - HARVESTING_IS_POSSIBLE_HERE = 7077, -- Harvesting is possible here if you have . - FISHING_MESSAGE_OFFSET = 7084, -- You can't fish here. - DOOR_OFFSET = 7442, -- The door is sealed shut... - VOIDWALKER_DESPAWN = 7968, -- The monster fades before your eyes, a look of disappointment on its face. - VOIDWALKER_NO_MOB = 8366, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8367, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8368, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8369, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8371, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8372, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8373, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8374, -- Obtained key item: ! - COMMON_SENSE_SURVIVAL = 9266, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + HARVESTING_IS_POSSIBLE_HERE = 7077, -- Harvesting is possible here if you have . + FISHING_MESSAGE_OFFSET = 7084, -- You can't fish here. + DOOR_OFFSET = 7442, -- The door is sealed shut... + VOIDWALKER_DESPAWN = 7968, -- The monster fades before your eyes, a look of disappointment on its face. + VOIDWALKER_NO_MOB = 8366, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8367, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8368, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8369, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8371, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8372, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8373, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8374, -- Obtained key item: ! + COMMON_SENSE_SURVIVAL = 9266, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Western_Adoulin/IDs.lua b/scripts/zones/Western_Adoulin/IDs.lua index 729ce6678ab..9cbe12c3802 100644 --- a/scripts/zones/Western_Adoulin/IDs.lua +++ b/scripts/zones/Western_Adoulin/IDs.lua @@ -10,51 +10,52 @@ zones[xi.zone.WESTERN_ADOULIN] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - YOU_OBTAIN_ITEM = 6396, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - BAYLD_OBTAINED = 7007, -- You have obtained bayld! - YOU_CAN_NOW_BECOME = 7011, -- You can now become a [geomancer/rune fencer]! - MOG_LOCKER_OFFSET = 7582, -- Your Mog Locker lease is valid until , kupo. - RETRIEVE_DIALOG_ID = 7755, -- You retrieve from the porter moogle's care. - WAYPOINT_ATTUNED = 7802, -- Your has been attuned to a geomagnetic fount[/ in Platea Triumphus (Couriers' Coalition)/ in front of the Pioneers' Coalition/ in front of the Mummers' Coalition/ in front of the Inventors' Coalition/ in front of the auction house/ in front of your Rent-a-Room/ by Big Bridge/ by the airship docks/ on the Adoulin Waterfront]! - EXPENDED_KINETIC_UNITS = 7819, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 7820, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 7821, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 7822, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 7823, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 7824, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 7825, -- A surplus of kinetic unit[/s] has been lost to the aether. - HOMEPOINT_SET = 8314, -- Home point set! - BY_ALL_APPEARANCES = 9079, -- By all appearances, this building functions as a warehouse for the Couriers' Coalition. - TASKED_WITH_PROCURING = 9080, -- You are tasked with procuring . - HUJETTE_SHOP_TEXT = 9803, -- How about indulging in some regional delicacies while taking a load off those tired feet of yours? - PRETERIG_SHOP_TEXT = 9804, -- Want a way to beat the heat? Try some of the tasty beverages we have on hand. - LEDERICUS_SHOP_TEXT = 9838, -- We've got a doozy of a magic scroll selection, tailored especially to your pioneering needs! - ISHVAD_SHOP_TEXT = 9839, -- ...A pioneer, are ya? If that's the case, maybe we've finally found a client for our geomantic plates. - EUKALLINE_SHOP_TEXT = 9840, -- Why, hello there! If you're looking for geomantic plates, look no further! I don't like to brag, but I'd say our selection is a bit more...sophisticated than what they offer next door. - FLAPANO_SHOP_TEXT = 9841, -- Welcome, welcome! Going out into the eye of the jungle's storm? Then the last thing you want is your stomach rumbling during an important battle! - THEOPHYLACTE_SHOP_TEXT = 9846, -- Would you care for some of my wares? If you do not, I cannot fault you, but please keep in mind that my revolutionary research into a new Ulbukan toxin antidote will have to be put on hold unless I can accrue the necessary funds. - KANIL_SHOP_TEXT = 9847, -- Good day, [good sir/fair maiden]! You're certainly not in the Middle Lands anymore, but would you care for some products from your homeland in addition to some more traditional fare? - DEFLIAA_SHOP_TEXT = 9865, -- Hi there, pioneer! We wouldn't want you going out to the scary jungle on an empty stomach. Stock up on some of our delicious bread for the journey! - ANSEGUSELE_SHOP_TEXT = 9866, -- Would you care for some fresh vegetables direct from the Rala Waterways? They're some of our most popular items! - TEVIGOGO_SHOP_TEXT = 9867, -- Hidey ho! Make sure not to forgetaru anything before heading out into the great unknown! - MINNIFI_DIALOGUE = 10250, -- Come, ladies and gentlemen, and enjoy our delightful array of frrresh vegetables! - SPARK_EXCHANGE = 11365, -- Hm? Oh, spark exchange... Of course. - DO_NOT_POSSESS_ENOUGH = 11378, -- You do not possess enough to complete the transaction. - NOT_ENOUGH_SPARKS = 11379, -- You do not possess enough sparks of eminence to complete the transaction. - MAX_SPARKS_LIMIT_REACHED = 11380, -- You have reached the maximum number of sparks that you can exchange this week (). Your ability to purchase skill books and equipment will be restricted until next week. - YOU_NOW_HAVE_AMT_CURRENCY = 11390, -- You now have [sparks of eminence/conquest points/points of imperial standing/Allied Notes/bayld/Fields of Valor points/assault points (Leujaoam)/assault points (Mamool Ja Training Grounds)/assault points (Lebros Cavern)/assault points (Periqia)/assault points (Ilrusi Atoll)/cruor/kinetic units/obsidian fragments/mweya plasm corpuscles/ballista points/Unity accolades/pinches of Escha silt/resistance credits]. - YOU_HAVE_JOINED_UNITY = 13003, -- ou have joined [Pieuje's/Ayame's/Invincible Shield's/Apururu's/Maat's/Aldo's/Jakoh Wahcondalo's/Naja Salaheem's/Flaviria's/Yoran-Oran's/Sylvie's] Unity! - HAVE_ALREADY_CHANGED_UNITY = 13079, -- ou have already changed Unities. Please wait until the next tabulation period. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + YOU_OBTAIN_ITEM = 6396, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + BAYLD_OBTAINED = 7007, -- You have obtained bayld! + YOU_CAN_NOW_BECOME = 7011, -- You can now become a [geomancer/rune fencer]! + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + MOG_LOCKER_OFFSET = 7582, -- Your Mog Locker lease is valid until , kupo. + RETRIEVE_DIALOG_ID = 7755, -- You retrieve from the porter moogle's care. + WAYPOINT_ATTUNED = 7802, -- Your has been attuned to a geomagnetic fount[/ in Platea Triumphus (Couriers' Coalition)/ in front of the Pioneers' Coalition/ in front of the Mummers' Coalition/ in front of the Inventors' Coalition/ in front of the auction house/ in front of your Rent-a-Room/ by Big Bridge/ by the airship docks/ on the Adoulin Waterfront]! + EXPENDED_KINETIC_UNITS = 7819, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 7820, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 7821, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 7822, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 7823, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 7824, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 7825, -- A surplus of kinetic unit[/s] has been lost to the aether. + HOMEPOINT_SET = 8314, -- Home point set! + BY_ALL_APPEARANCES = 9079, -- By all appearances, this building functions as a warehouse for the Couriers' Coalition. + TASKED_WITH_PROCURING = 9080, -- You are tasked with procuring . + HUJETTE_SHOP_TEXT = 9803, -- How about indulging in some regional delicacies while taking a load off those tired feet of yours? + PRETERIG_SHOP_TEXT = 9804, -- Want a way to beat the heat? Try some of the tasty beverages we have on hand. + LEDERICUS_SHOP_TEXT = 9838, -- We've got a doozy of a magic scroll selection, tailored especially to your pioneering needs! + ISHVAD_SHOP_TEXT = 9839, -- ...A pioneer, are ya? If that's the case, maybe we've finally found a client for our geomantic plates. + EUKALLINE_SHOP_TEXT = 9840, -- Why, hello there! If you're looking for geomantic plates, look no further! I don't like to brag, but I'd say our selection is a bit more...sophisticated than what they offer next door. + FLAPANO_SHOP_TEXT = 9841, -- Welcome, welcome! Going out into the eye of the jungle's storm? Then the last thing you want is your stomach rumbling during an important battle! + THEOPHYLACTE_SHOP_TEXT = 9846, -- Would you care for some of my wares? If you do not, I cannot fault you, but please keep in mind that my revolutionary research into a new Ulbukan toxin antidote will have to be put on hold unless I can accrue the necessary funds. + KANIL_SHOP_TEXT = 9847, -- Good day, [good sir/fair maiden]! You're certainly not in the Middle Lands anymore, but would you care for some products from your homeland in addition to some more traditional fare? + DEFLIAA_SHOP_TEXT = 9865, -- Hi there, pioneer! We wouldn't want you going out to the scary jungle on an empty stomach. Stock up on some of our delicious bread for the journey! + ANSEGUSELE_SHOP_TEXT = 9866, -- Would you care for some fresh vegetables direct from the Rala Waterways? They're some of our most popular items! + TEVIGOGO_SHOP_TEXT = 9867, -- Hidey ho! Make sure not to forgetaru anything before heading out into the great unknown! + MINNIFI_DIALOGUE = 10250, -- Come, ladies and gentlemen, and enjoy our delightful array of frrresh vegetables! + SPARK_EXCHANGE = 11365, -- Hm? Oh, spark exchange... Of course. + DO_NOT_POSSESS_ENOUGH = 11378, -- You do not possess enough to complete the transaction. + NOT_ENOUGH_SPARKS = 11379, -- You do not possess enough sparks of eminence to complete the transaction. + MAX_SPARKS_LIMIT_REACHED = 11380, -- You have reached the maximum number of sparks that you can exchange this week (). Your ability to purchase skill books and equipment will be restricted until next week. + YOU_NOW_HAVE_AMT_CURRENCY = 11390, -- You now have [sparks of eminence/conquest points/points of imperial standing/Allied Notes/bayld/Fields of Valor points/assault points (Leujaoam)/assault points (Mamool Ja Training Grounds)/assault points (Lebros Cavern)/assault points (Periqia)/assault points (Ilrusi Atoll)/cruor/kinetic units/obsidian fragments/mweya plasm corpuscles/ballista points/Unity accolades/pinches of Escha silt/resistance credits]. + YOU_HAVE_JOINED_UNITY = 13003, -- ou have joined [Pieuje's/Ayame's/Invincible Shield's/Apururu's/Maat's/Aldo's/Jakoh Wahcondalo's/Naja Salaheem's/Flaviria's/Yoran-Oran's/Sylvie's] Unity! + HAVE_ALREADY_CHANGED_UNITY = 13079, -- ou have already changed Unities. Please wait until the next tabulation period. }, mob = { diff --git a/scripts/zones/Western_Altepa_Desert/IDs.lua b/scripts/zones/Western_Altepa_Desert/IDs.lua index bd9c3308b51..a5a844ef33e 100644 --- a/scripts/zones/Western_Altepa_Desert/IDs.lua +++ b/scripts/zones/Western_Altepa_Desert/IDs.lua @@ -10,41 +10,42 @@ zones[xi.zone.WESTERN_ALTEPA_DESERT] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - ITEMS_OBTAINED = 6399, -- You obtain ! - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - DIG_THROW_AWAY = 7229, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7231, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7297, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - THE_DOOR_IS_LOCKED = 7336, -- The door is locked. - DOES_NOT_RESPOND = 7337, -- It does not respond. - CANNOT_REMOVE_FRAG = 7353, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... - ALREADY_OBTAINED_FRAG = 7354, -- You have already obtained this monument's . Try searching for another. - ALREADY_HAVE_ALL_FRAGS = 7355, -- You have obtained all of the fragments. You must hurry to the ruins of the ancient shrine! - FOUND_ALL_FRAGS = 7356, -- You have obtained ! You now have all 8 fragments of light! - ZILART_MONUMENT = 7357, -- It is an ancient Zilart monument. - FEEL_SOMETHING_PRICKLY = 7375, -- You feel something prickly... - MANY_STONES_LITTER_AREA = 7376, -- Many stones litter the area. - EVIL_LOOMING_ABOVE_YOU = 7377, -- You sense something evil looming above you. - SENSE_OMINOUS_PRESENCE = 7409, -- You sense an ominous presence... - SOMETHING_IS_BURIED_HERE = 7427, -- It looks like something is buried here. If you had you could dig it up. - PLAYER_OBTAINS_ITEM = 7647, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7648, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7649, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7650, -- You already possess that temporary item. - NO_COMBINATION = 7655, -- You were unable to enter a combination. - REGIME_REGISTERED = 9833, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 11822, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + ITEMS_OBTAINED = 6399, -- You obtain ! + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + DIG_THROW_AWAY = 7229, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7231, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7297, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + THE_DOOR_IS_LOCKED = 7336, -- The door is locked. + DOES_NOT_RESPOND = 7337, -- It does not respond. + CANNOT_REMOVE_FRAG = 7353, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... + ALREADY_OBTAINED_FRAG = 7354, -- You have already obtained this monument's . Try searching for another. + ALREADY_HAVE_ALL_FRAGS = 7355, -- You have obtained all of the fragments. You must hurry to the ruins of the ancient shrine! + FOUND_ALL_FRAGS = 7356, -- You have obtained ! You now have all 8 fragments of light! + ZILART_MONUMENT = 7357, -- It is an ancient Zilart monument. + FEEL_SOMETHING_PRICKLY = 7375, -- You feel something prickly... + MANY_STONES_LITTER_AREA = 7376, -- Many stones litter the area. + EVIL_LOOMING_ABOVE_YOU = 7377, -- You sense something evil looming above you. + SENSE_OMINOUS_PRESENCE = 7409, -- You sense an ominous presence... + SOMETHING_IS_BURIED_HERE = 7427, -- It looks like something is buried here. If you had you could dig it up. + PLAYER_OBTAINS_ITEM = 7647, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7648, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7649, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7650, -- You already possess that temporary item. + NO_COMBINATION = 7655, -- You were unable to enter a combination. + REGIME_REGISTERED = 9833, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 11822, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Windurst-Jeuno_Airship/IDs.lua b/scripts/zones/Windurst-Jeuno_Airship/IDs.lua index 1fa1d7f513c..ca5bf61a4a1 100644 --- a/scripts/zones/Windurst-Jeuno_Airship/IDs.lua +++ b/scripts/zones/Windurst-Jeuno_Airship/IDs.lua @@ -10,17 +10,18 @@ zones[xi.zone.WINDURST_JEUNO_AIRSHIP] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - WILL_REACH_JEUNO = 7057, -- The airship will reach Jeuno in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - WILL_REACH_WINDURST = 7058, -- The airship will reach Windurst in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). - IN_JEUNO_MOMENTARILY = 7059, -- We will be arriving in Jeuno momentarily. - IN_WINDURST_MOMENTARILY = 7060, -- We will be arriving in Windurst momentarily. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WILL_REACH_JEUNO = 7057, -- The airship will reach Jeuno in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + WILL_REACH_WINDURST = 7058, -- The airship will reach Windurst in [less than an hour/about 1 hour/about 2 hours/about 3 hours/about 4 hours/about 5 hours/about 6 hours/about 7 hours] (# [minute/minutes] in Earth time). + IN_JEUNO_MOMENTARILY = 7059, -- We will be arriving in Jeuno momentarily. + IN_WINDURST_MOMENTARILY = 7060, -- We will be arriving in Windurst momentarily. }, mob = { diff --git a/scripts/zones/Windurst_Walls/IDs.lua b/scripts/zones/Windurst_Walls/IDs.lua index 8d4e145b46a..acef86cbc27 100644 --- a/scripts/zones/Windurst_Walls/IDs.lua +++ b/scripts/zones/Windurst_Walls/IDs.lua @@ -23,6 +23,7 @@ zones[xi.zone.WINDURST_WALLS] = CARRIED_OVER_POINTS = 6588, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 6589, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 6590, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6610, -- Your party is unable to participate because certain members' levels are restricted. YOU_LEARNED_TRUST = 6612, -- You learned Trust: ! HOMEPOINT_SET = 6646, -- Home point set! YOU_ACCEPT_THE_MISSION = 6739, -- You have accepted the mission. diff --git a/scripts/zones/Windurst_Waters/IDs.lua b/scripts/zones/Windurst_Waters/IDs.lua index 9ca9bfe1cfa..c17f0153916 100644 --- a/scripts/zones/Windurst_Waters/IDs.lua +++ b/scripts/zones/Windurst_Waters/IDs.lua @@ -10,59 +10,60 @@ zones[xi.zone.WINDURST_WATERS] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - KEYITEM_LOST = 6553, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6554, -- You do not have enough gil. - NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 6588, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6589, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6590, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - HOMEPOINT_SET = 6646, -- Home point set! - YOU_ACCEPT_THE_MISSION = 6739, -- You have accepted the mission. - MOG_LOCKER_OFFSET = 6820, -- Your Mog Locker lease is valid until , kupo. - FISHING_MESSAGE_OFFSET = 7059, -- You can't fish here. - COOKING_SUPPORT = 7163, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. - GUILD_TERMINATE_CONTRACT = 7177, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - GUILD_NEW_CONTRACT = 7185, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - NO_MORE_GP_ELIGIBLE = 7192, -- You are not eligible to receive guild points at this time. - GP_OBTAINED = 7197, -- Obtained: guild points. - NOT_HAVE_ENOUGH_GP = 7198, -- You do not have enough guild points. - RENOUNCE_CRAFTSMAN = 7214, -- You have successfully renounced your status as a [craftsman/artisan/adept] of the [Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - KOPOPO_SHOP_DIALOG = 7853, -- Cooking is as much an art as music and painting are. Can your taste buds appreciate the full value of our works of art? - CHOMOJINJAHL_SHOP_DIALOG = 7858, -- The qualities needed to be a good cook are strong arms, a sense of taste, and devotion. - ENSASA_SHOP_DIALOG = 8925, -- Welcome to my little catalyst shop, where you'll find a range of general and unusual goods! - UPIHKHACHLA_SHOP_DIALOG = 8926, -- For adventurerrrs on the go, Ensasa's Catalyst Shop is the place for all you need in generrral goods! - SHOHRUNTUHRUN_SHOP_DIALOG = 8928, -- Oh, hidey-widey! This is the Federal Magic Reservey-wervey. What can I do for you today-oway? - HIKOMUMAKIMU_SHOP_DIALOG = 8929, -- Welcome to the Federal Magic Reserve, the only place in the Federation where high-level magic is allowed to be sold. - OREZEBREZ_SHOP_DIALOG = 8930, -- Welcome to Baren-Moren's, makers of the finest headwear. Our slogan is: The smarter the hat, the smarter the head. - TAAJIJI_SHOP_DIALOG = 8932, -- May I take your order, please... - MAQUMOLPIH_OPEN_DIALOG = 8933, -- Psst... Check out these things my suppliers in Aragoneu dug up. - MAQUMOLPIH_CLOSED_DIALOG = 8934, -- Sorrrry, but I'm waiting on my next shipment from Aragoneu, so I'm all out of things to sell you at the moment. - BAEHUFAEHU_OPEN_DIALOG = 8935, -- Can I interest you in some of Sarutabaruta's wares? Come on, have a look, and see how I fares! - BAEHUFAEHU_CLOSED_DIALOG = 8936, -- Sorry-dorry, but I'm taking a breaky-wakey! (Or, as you'll be knowing, since control of Sarutabaruta was lost, I'm out of stock, so go on, get going!) - AHYEEKIH_OPEN_DIALOG = 8937, -- Psst... Wanna buy somethin' cheap from Kolshushu? - AHYEEKIH_CLOSED_DIALOG = 8938, -- Hee-hee-hee... Can you hang on a while? I can start selling you good stuff from Kolshushu once I'm ready. - FOMINA_OPEN_DIALOG = 8939, -- Hello, adventurer! Can I interest you in something a little different--something from Elshimo? - FOMINA_CLOSED_DIALOG = 8940, -- Well, um, let me see... This should be a good spot to open shop. There are some wealthy-looking Tarutaru houses nearby. It's quiet and yet there're plenty of passers-by... - OTETE_OPEN_DIALOG = 8941, -- He-he-he... Hey! How's about... Items from Li'Telor that you can't do without? Reckon you could do, with one of these or two? - OTETE_CLOSED_DIALOG = 8942, -- Oh... Phew... My heart is so blue... Bluer than these flowers... Leave me be for a couple hours... - JOURILLE_OPEN_DIALOG = 8943, -- Greetings. Can I interest you in some of these goods from Ronfaure...? - JOURILLE_CLOSED_DIALOG = 8944, -- Greetings! I am Jourille, your friendly neighborhood traveling merchant. I would most like to sell you something from Ronfaure right now, but I regret that I am waiting on my next shipment. Please call by later! - YOU_SHOW_OFF_THE = 9120, -- You show off the . - CONQUEST = 9230, -- You've earned conquest points! - TRICK_OR_TREAT = 10179, -- Trick or treat... - THANK_YOU_TREAT = 10180, -- Thank you... And now for your treat... - HERE_TAKE_THIS = 10181, -- Here, take this... - IF_YOU_WEAR_THIS = 10182, -- If you put this on and walk around, something...unexpected might happen... - THANK_YOU = 10183, -- Thank you... - PRESTAPIQ_CLOSED_DIALOG = 10673, -- Goodebyongo! Wingdorsht tooo fhar awayz fhrum mai hormtowne! Dropt arll goodhys whylle ahn trripp! - PRESTAPIQ_OPEN_DIALOG = 10674, -- Helgohelgo! Me's bhrink goodhys arll ja wayz fhrum hormtowne ovf Morvalporlis! - NESSRUGETOMALL_SHOP_DIALOG = 11478, -- Welcome to the Rarab Tail Hostelry. - DIABOLOS_UNLOCKED = 11907, -- You are now able to summon Diabolos! + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + KEYITEM_LOST = 6553, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6554, -- You do not have enough gil. + NOTHING_OUT_OF_ORDINARY = 6563, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 6588, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6589, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6590, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6610, -- Your party is unable to participate because certain members' levels are restricted. + HOMEPOINT_SET = 6646, -- Home point set! + YOU_ACCEPT_THE_MISSION = 6739, -- You have accepted the mission. + MOG_LOCKER_OFFSET = 6820, -- Your Mog Locker lease is valid until , kupo. + FISHING_MESSAGE_OFFSET = 7059, -- You can't fish here. + COOKING_SUPPORT = 7163, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. + GUILD_TERMINATE_CONTRACT = 7177, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + GUILD_NEW_CONTRACT = 7185, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + NO_MORE_GP_ELIGIBLE = 7192, -- You are not eligible to receive guild points at this time. + GP_OBTAINED = 7197, -- Obtained: guild points. + NOT_HAVE_ENOUGH_GP = 7198, -- You do not have enough guild points. + RENOUNCE_CRAFTSMAN = 7214, -- You have successfully renounced your status as a [craftsman/artisan/adept] of the [Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + KOPOPO_SHOP_DIALOG = 7853, -- Cooking is as much an art as music and painting are. Can your taste buds appreciate the full value of our works of art? + CHOMOJINJAHL_SHOP_DIALOG = 7858, -- The qualities needed to be a good cook are strong arms, a sense of taste, and devotion. + ENSASA_SHOP_DIALOG = 8925, -- Welcome to my little catalyst shop, where you'll find a range of general and unusual goods! + UPIHKHACHLA_SHOP_DIALOG = 8926, -- For adventurerrrs on the go, Ensasa's Catalyst Shop is the place for all you need in generrral goods! + SHOHRUNTUHRUN_SHOP_DIALOG = 8928, -- Oh, hidey-widey! This is the Federal Magic Reservey-wervey. What can I do for you today-oway? + HIKOMUMAKIMU_SHOP_DIALOG = 8929, -- Welcome to the Federal Magic Reserve, the only place in the Federation where high-level magic is allowed to be sold. + OREZEBREZ_SHOP_DIALOG = 8930, -- Welcome to Baren-Moren's, makers of the finest headwear. Our slogan is: The smarter the hat, the smarter the head. + TAAJIJI_SHOP_DIALOG = 8932, -- May I take your order, please... + MAQUMOLPIH_OPEN_DIALOG = 8933, -- Psst... Check out these things my suppliers in Aragoneu dug up. + MAQUMOLPIH_CLOSED_DIALOG = 8934, -- Sorrrry, but I'm waiting on my next shipment from Aragoneu, so I'm all out of things to sell you at the moment. + BAEHUFAEHU_OPEN_DIALOG = 8935, -- Can I interest you in some of Sarutabaruta's wares? Come on, have a look, and see how I fares! + BAEHUFAEHU_CLOSED_DIALOG = 8936, -- Sorry-dorry, but I'm taking a breaky-wakey! (Or, as you'll be knowing, since control of Sarutabaruta was lost, I'm out of stock, so go on, get going!) + AHYEEKIH_OPEN_DIALOG = 8937, -- Psst... Wanna buy somethin' cheap from Kolshushu? + AHYEEKIH_CLOSED_DIALOG = 8938, -- Hee-hee-hee... Can you hang on a while? I can start selling you good stuff from Kolshushu once I'm ready. + FOMINA_OPEN_DIALOG = 8939, -- Hello, adventurer! Can I interest you in something a little different--something from Elshimo? + FOMINA_CLOSED_DIALOG = 8940, -- Well, um, let me see... This should be a good spot to open shop. There are some wealthy-looking Tarutaru houses nearby. It's quiet and yet there're plenty of passers-by... + OTETE_OPEN_DIALOG = 8941, -- He-he-he... Hey! How's about... Items from Li'Telor that you can't do without? Reckon you could do, with one of these or two? + OTETE_CLOSED_DIALOG = 8942, -- Oh... Phew... My heart is so blue... Bluer than these flowers... Leave me be for a couple hours... + JOURILLE_OPEN_DIALOG = 8943, -- Greetings. Can I interest you in some of these goods from Ronfaure...? + JOURILLE_CLOSED_DIALOG = 8944, -- Greetings! I am Jourille, your friendly neighborhood traveling merchant. I would most like to sell you something from Ronfaure right now, but I regret that I am waiting on my next shipment. Please call by later! + YOU_SHOW_OFF_THE = 9120, -- You show off the . + CONQUEST = 9230, -- You've earned conquest points! + TRICK_OR_TREAT = 10179, -- Trick or treat... + THANK_YOU_TREAT = 10180, -- Thank you... And now for your treat... + HERE_TAKE_THIS = 10181, -- Here, take this... + IF_YOU_WEAR_THIS = 10182, -- If you put this on and walk around, something...unexpected might happen... + THANK_YOU = 10183, -- Thank you... + PRESTAPIQ_CLOSED_DIALOG = 10673, -- Goodebyongo! Wingdorsht tooo fhar awayz fhrum mai hormtowne! Dropt arll goodhys whylle ahn trripp! + PRESTAPIQ_OPEN_DIALOG = 10674, -- Helgohelgo! Me's bhrink goodhys arll ja wayz fhrum hormtowne ovf Morvalporlis! + NESSRUGETOMALL_SHOP_DIALOG = 11478, -- Welcome to the Rarab Tail Hostelry. + DIABOLOS_UNLOCKED = 11907, -- You are now able to summon Diabolos! }, mob = diff --git a/scripts/zones/Windurst_Waters_[S]/IDs.lua b/scripts/zones/Windurst_Waters_[S]/IDs.lua index 944213a8ee4..0fbbfe2e570 100644 --- a/scripts/zones/Windurst_Waters_[S]/IDs.lua +++ b/scripts/zones/Windurst_Waters_[S]/IDs.lua @@ -10,36 +10,37 @@ zones[xi.zone.WINDURST_WATERS_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. - ITEMS_OBTAINED = 6399, -- You obtain ! - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. - PELFTRIX_SHOP_DIALOG = 7208, -- Boodlix's Emporium open for business! Boodlix's gots whats you wants, at the price yous likes! It's okay, we takes yours gils, too! - MOG_LOCKER_OFFSET = 7473, -- Your Mog Locker lease is valid until , kupo. - REGIME_CANCELED = 7743, -- Current training regime canceled. - HUNT_ACCEPTED = 7761, -- Hunt accepted! - USE_SCYLDS = 7762, -- You use [scyld/scylds]. Scyld balance: . - HUNT_RECORDED = 7773, -- You record your hunt. - OBTAIN_SCYLDS = 7775, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. - HUNT_CANCELED = 7779, -- Hunt canceled. - HOMEPOINT_SET = 10874, -- Home point set! - YASSI_POSSI_DIALOG = 10894, -- Swifty-wifty and safey-wafey parcel delivery! Is there something you need to send? - EZURAROMAZURA_SHOP_DIALOG = 10895, -- A potent spelly-well or two can be the key to survival in this time of war. But can you mastaru my magic, or will it master you? - DOOR_ACOLYTE_HOSTEL_LOCKED = 11337, -- The door appears to be locked... - MIKHE_ARYOHCHA_DIALOG = 12474, -- Do you like the headpiece? I made it from my firrrst victim. I wear it to let everrryone know what happens when they cross Mikhe Aryohcha! - LUTETE_DIALOG = 12476, -- ... Mastering these Near Eastern magics can be quite taxing. If I had a choice, I'd rather be back in bed, relaxing... - ALLIED_SIGIL = 12920, -- You have received the Allied Sigil! - RETRIEVE_DIALOG_ID = 14991, -- You retrieve from the porter moogle's care. - NOT_ENOUGH_NOTES = 15016, -- You tryin' to cheat me? That's not nearly enough notes! - COMMON_SENSE_SURVIVAL = 15052, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + FULL_INVENTORY_AFTER_TRADE = 6388, -- You cannot obtain the . Try trading again after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6395, -- You do not have enough gil. + ITEMS_OBTAINED = 6399, -- You obtain ! + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7057, -- You can't fish here. + PELFTRIX_SHOP_DIALOG = 7208, -- Boodlix's Emporium open for business! Boodlix's gots whats you wants, at the price yous likes! It's okay, we takes yours gils, too! + MOG_LOCKER_OFFSET = 7473, -- Your Mog Locker lease is valid until , kupo. + REGIME_CANCELED = 7743, -- Current training regime canceled. + HUNT_ACCEPTED = 7761, -- Hunt accepted! + USE_SCYLDS = 7762, -- You use [scyld/scylds]. Scyld balance: . + HUNT_RECORDED = 7773, -- You record your hunt. + OBTAIN_SCYLDS = 7775, -- You obtain [scyld/scylds]! Current balance: [scyld/scylds]. + HUNT_CANCELED = 7779, -- Hunt canceled. + HOMEPOINT_SET = 10874, -- Home point set! + YASSI_POSSI_DIALOG = 10894, -- Swifty-wifty and safey-wafey parcel delivery! Is there something you need to send? + EZURAROMAZURA_SHOP_DIALOG = 10895, -- A potent spelly-well or two can be the key to survival in this time of war. But can you mastaru my magic, or will it master you? + DOOR_ACOLYTE_HOSTEL_LOCKED = 11337, -- The door appears to be locked... + MIKHE_ARYOHCHA_DIALOG = 12474, -- Do you like the headpiece? I made it from my firrrst victim. I wear it to let everrryone know what happens when they cross Mikhe Aryohcha! + LUTETE_DIALOG = 12476, -- ... Mastering these Near Eastern magics can be quite taxing. If I had a choice, I'd rather be back in bed, relaxing... + ALLIED_SIGIL = 12920, -- You have received the Allied Sigil! + RETRIEVE_DIALOG_ID = 14991, -- You retrieve from the porter moogle's care. + NOT_ENOUGH_NOTES = 15016, -- You tryin' to cheat me? That's not nearly enough notes! + COMMON_SENSE_SURVIVAL = 15052, -- It appears that you have arrived at a new survival guide provided by the Servicemen's Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Windurst_Woods/IDs.lua b/scripts/zones/Windurst_Woods/IDs.lua index faee666a049..1cee4436e8a 100644 --- a/scripts/zones/Windurst_Woods/IDs.lua +++ b/scripts/zones/Windurst_Woods/IDs.lua @@ -10,79 +10,80 @@ zones[xi.zone.WINDURST_WOODS] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - KEYITEM_LOST = 6553, -- Lost key item: . - NOT_HAVE_ENOUGH_GIL = 6554, -- You do not have enough gil. - YOU_OBTAIN_ITEM = 6555, -- You obtain ! - YOU_MUST_WAIT_ANOTHER_N_DAYS = 6585, -- You must wait another [day/days] to perform that action. - CARRIED_OVER_POINTS = 6588, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 6589, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 6590, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - YOU_LEARNED_TRUST = 6612, -- You learned Trust: ! - HOMEPOINT_SET = 6646, -- Home point set! - YOU_ACCEPT_THE_MISSION = 6739, -- You have accepted the mission. - ITEM_DELIVERY_DIALOG = 6835, -- We can deliver goods to your residence or to the residences of your friends. - MOG_LOCKER_OFFSET = 7011, -- Your Mog Locker lease is valid until , kupo. - FISHING_MESSAGE_OFFSET = 7109, -- You can't fish here. - IMAGE_SUPPORT = 7213, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. - GUILD_TERMINATE_CONTRACT = 7227, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - GUILD_NEW_CONTRACT = 7235, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - NO_MORE_GP_ELIGIBLE = 7242, -- You are not eligible to receive guild points at this time. - GP_OBTAINED = 7247, -- Obtained: guild points. - NOT_HAVE_ENOUGH_GP = 7248, -- You do not have enough guild points. - RENOUNCE_CRAFTSMAN = 7264, -- You have successfully renounced your status as a [craftsman/artisan/adept] of the [Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. - VALERIANO_SHOP_DIALOG = 7558, -- Halfling philosophers and heroine beauties, welcome to the Troupe Valeriano show! And how gorgeous and green this fair town is! - RAKOHBUUMA_OPEN_DIALOG = 7655, -- To expel those who would subvert the law and order of Windurst Woods... To protect the Mithra populace from all manner of threats and dangers... That is the job of us guards. - RETTO_MARUTTO_DIALOG = 7971, -- Allo-allo! If you're after boneworking materials, then make sure you buy them herey in Windurst! We're the cheapest in the whole wide worldy! - SHIH_TAYUUN_DIALOG = 7973, -- Oh, that Retto-Marutto... If he keeps carrying on while speaking to the customers, he'll get in trouble with the guildmaster again! - KUZAH_HPIROHPON_DIALOG = 7982, -- Sew...I mean...So, want to get your paws on the top-quality materials as used in the Weaverrrs' Guild? - MERIRI_DIALOG = 7984, -- If you're interested in buying some works of art from our Weavers' Guild, then you've come to the right placey-wacey. - PERIH_VASHAI_DIALOG = 8270, -- You can now become a ranger! - QUESSE_SHOP_DIALOG = 8524, -- Welcome to the Windurst Chocobo Stables. - MONONCHAA_SHOP_DIALOG = 8525, -- Huh...? If you be wanting anything therrre, [mister/missy], then hurry up and decide, then get the heck out of herrre! - MANYNY_SHOP_DIALOG = 8526, -- Are you in urgent needy-weedy of anything? I have a variety of thingy-wingies you may be interested in. - WIJETIREN_SHOP_DIALOG = 8531, -- From humble Mithran cold medicines to the legendary Windurstian ambrrrosia of immortality, we have it all... - NHOBI_ZALKIA_OPEN_DIALOG = 8534, -- Psst... Interested in some rrreal hot property? From lucky chocobo digs to bargain goods that fell off the back of an airship...all my stuff is a rrreal steal! - NHOBI_ZALKIA_CLOSED_DIALOG = 8535, -- You're interested in some cheap shopping, rrright? I'm real sorry. I'm not doing business rrright now. - NYALABICCIO_OPEN_DIALOG = 8536, -- Ladies and gentlemen, kittens and cubs! Do we have the sale that you've been waiting forrr! - NYALABICCIO_CLOSED_DIALOG = 8537, -- Sorry, but our shop is closed rrright now. Why don't you go to Gustaberg and help the situation out therrre? - BIN_STEJIHNA_OPEN_DIALOG = 8538, -- Why don't you buy something from me? You won't regrrret it! I've got all sorts of goods from the Zulkheim region! - BIN_STEJIHNA_CLOSED_DIALOG = 8539, -- I'm taking a brrreak from the saleswoman gig to give dirrrections. So...through this arrrch is the residential area. - TARAIHIPERUNHI_OPEN_DIALOG = 8540, -- Ooh...do I have some great merchandise for you! Man...these are once-in-a-lifetime offers, so get them while you can. - TARAIHIPERUNHI_CLOSED_DIALOG = 8541, -- I am but a poor merchant. Mate, but you just wait! Strife...one day I'll live the high life. Hey, that's my dream, anyway... - CATALIA_DIALOG = 8572, -- While we cannot break our promise to the Windurstians, to ensure justice is served, we would secretly like you to take two shields off of the Yagudo who you meet en route. - FORINE_DIALOG = 8573, -- Act according to our convictions while fulfilling our promise with the Tarutaru. This is indeed a fitting course for us, the people of glorious San d'Oria. - CONQUEST = 8941, -- You've earned conquest points! - APURURU_DIALOG = 9504, -- There's no way Semih Lafihna will just hand it over for no good reason. Maybe if you try talking with Kupipi... - EMPYREAL_ARROW_LEARNED = 9738, -- You have learned the weapon skill Empyreal Arrow! - TRICK_OR_TREAT = 9749, -- Trick or treat... - THANK_YOU_TREAT = 9750, -- Thank you... And now for your treat... - HERE_TAKE_THIS = 9751, -- Here, take this... - IF_YOU_WEAR_THIS = 9752, -- If you put this on and walk around, something...unexpected might happen... - THANK_YOU = 9753, -- Thank you... - NOKKHI_BAD_COUNT = 9771, -- What kinda smart-alecky baloney is this!? I told you to bring me the same kinda ammunition in complete sets. And don't forget the flowers, neither. - NOKKHI_GOOD_TRADE = 9773, -- And here you go! Come back soon, and bring your friends! - NOKKHI_BAD_ITEM = 9774, -- I'm real sorry, but there's nothing I can do with those. - MILLEROVIEUNET_OPEN_DIALOG = 9999, -- Please have a look at these wonderful products from Qufim Island! You won't regret it! - MILLEROVIEUNET_CLOSED_DIALOG = 10000, -- Now that I've finally learned the language here, I'd like to start my own business. If I could only find a supplier... - CLOUD_BAD_COUNT = 10125, -- Well, don't just stand there like an idiot! I can't do any bundlin' until you fork over a set of 99 tools and ! And I ain't doin' no more than seven sets at one time, so don't even try it! - CLOUD_GOOD_TRADE = 10129, -- Here, take 'em and scram. And don't say I ain't never did nothin' for you! - CLOUD_BAD_ITEM = 10130, -- What the hell is this junk!? Why don't you try bringin' what I asked for before I shove one of my sandals up your...nose! - CHOCOBO_FEEDING_SLEEP = 10614, -- Your chocobo is sleeping soundly. You cannot feed it now. - CHOCOBO_FEEDING_RUN_AWAY = 10615, -- Your chocobo has run away. You cannot feed it now. - CHOCOBO_FEEDING_STILL_EGG = 10616, -- You cannot feed a chocobo that has not hatched yet. - CHOCOBO_FEEDING_ITEM = 11699, -- #: % - TRRRADE_IN_SPARKS = 13843, -- You want to trrrade in sparks, do you? - DO_NOT_POSSESS_ENOUGH = 13862, -- You do not possess enough to complete the transaction. - NOT_ENOUGH_SPARKS = 13863, -- You do not possess enough sparks of eminence to complete the transaction. - MAX_SPARKS_LIMIT_REACHED = 13864, -- You have reached the maximum number of sparks that you can exchange this week (). Your ability to purchase skill books and equipment will be restricted until next week. - YOU_NOW_HAVE_AMT_CURRENCY = 13874, -- You now have [sparks of eminence/conquest points/points of imperial standing/Allied Notes/bayld/Fields of Valor points/assault points (Leujaoam)/assault points (Mamool Ja Training Grounds)/assault points (Lebros Cavern)/assault points (Periqia)/assault points (Ilrusi Atoll)/cruor/kinetic units/obsidian fragments/mweya plasm corpuscles/ballista points/Unity accolades/pinches of Escha silt/resistance credits]. - YOU_HAVE_JOINED_UNITY = 14393, -- ou have joined [Pieuje's/Ayame's/Invincible Shield's/Apururu's/Maat's/Aldo's/Jakoh Wahcondalo's/Naja Salaheem's/Flaviria's/Yoran-Oran's/Sylvie's] Unity! - HAVE_ALREADY_CHANGED_UNITY = 14469, -- ou have already changed Unities. Please wait until the next tabulation period. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + KEYITEM_LOST = 6553, -- Lost key item: . + NOT_HAVE_ENOUGH_GIL = 6554, -- You do not have enough gil. + YOU_OBTAIN_ITEM = 6555, -- You obtain ! + YOU_MUST_WAIT_ANOTHER_N_DAYS = 6585, -- You must wait another [day/days] to perform that action. + CARRIED_OVER_POINTS = 6588, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 6589, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 6590, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 6610, -- Your party is unable to participate because certain members' levels are restricted. + YOU_LEARNED_TRUST = 6612, -- You learned Trust: ! + HOMEPOINT_SET = 6646, -- Home point set! + YOU_ACCEPT_THE_MISSION = 6739, -- You have accepted the mission. + ITEM_DELIVERY_DIALOG = 6835, -- We can deliver goods to your residence or to the residences of your friends. + MOG_LOCKER_OFFSET = 7011, -- Your Mog Locker lease is valid until , kupo. + FISHING_MESSAGE_OFFSET = 7109, -- You can't fish here. + IMAGE_SUPPORT = 7213, -- Your [fishing/woodworking/smithing/goldsmithing/clothcraft/leatherworking/bonecraft/alchemy/cooking] skills went up [a little/ever so slightly/ever so slightly]. + GUILD_TERMINATE_CONTRACT = 7227, -- You have terminated your trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild and formed a new one with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + GUILD_NEW_CONTRACT = 7235, -- You have formed a new trading contract with the [Fishermen's/Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + NO_MORE_GP_ELIGIBLE = 7242, -- You are not eligible to receive guild points at this time. + GP_OBTAINED = 7247, -- Obtained: guild points. + NOT_HAVE_ENOUGH_GP = 7248, -- You do not have enough guild points. + RENOUNCE_CRAFTSMAN = 7264, -- You have successfully renounced your status as a [craftsman/artisan/adept] of the [Carpenters'/Blacksmiths'/Goldsmiths'/Weavers'/Tanners'/Boneworkers'/Alchemists'/Culinarians'] Guild. + VALERIANO_SHOP_DIALOG = 7558, -- Halfling philosophers and heroine beauties, welcome to the Troupe Valeriano show! And how gorgeous and green this fair town is! + RAKOHBUUMA_OPEN_DIALOG = 7655, -- To expel those who would subvert the law and order of Windurst Woods... To protect the Mithra populace from all manner of threats and dangers... That is the job of us guards. + RETTO_MARUTTO_DIALOG = 7971, -- Allo-allo! If you're after boneworking materials, then make sure you buy them herey in Windurst! We're the cheapest in the whole wide worldy! + SHIH_TAYUUN_DIALOG = 7973, -- Oh, that Retto-Marutto... If he keeps carrying on while speaking to the customers, he'll get in trouble with the guildmaster again! + KUZAH_HPIROHPON_DIALOG = 7982, -- Sew...I mean...So, want to get your paws on the top-quality materials as used in the Weaverrrs' Guild? + MERIRI_DIALOG = 7984, -- If you're interested in buying some works of art from our Weavers' Guild, then you've come to the right placey-wacey. + PERIH_VASHAI_DIALOG = 8270, -- You can now become a ranger! + QUESSE_SHOP_DIALOG = 8524, -- Welcome to the Windurst Chocobo Stables. + MONONCHAA_SHOP_DIALOG = 8525, -- Huh...? If you be wanting anything therrre, [mister/missy], then hurry up and decide, then get the heck out of herrre! + MANYNY_SHOP_DIALOG = 8526, -- Are you in urgent needy-weedy of anything? I have a variety of thingy-wingies you may be interested in. + WIJETIREN_SHOP_DIALOG = 8531, -- From humble Mithran cold medicines to the legendary Windurstian ambrrrosia of immortality, we have it all... + NHOBI_ZALKIA_OPEN_DIALOG = 8534, -- Psst... Interested in some rrreal hot property? From lucky chocobo digs to bargain goods that fell off the back of an airship...all my stuff is a rrreal steal! + NHOBI_ZALKIA_CLOSED_DIALOG = 8535, -- You're interested in some cheap shopping, rrright? I'm real sorry. I'm not doing business rrright now. + NYALABICCIO_OPEN_DIALOG = 8536, -- Ladies and gentlemen, kittens and cubs! Do we have the sale that you've been waiting forrr! + NYALABICCIO_CLOSED_DIALOG = 8537, -- Sorry, but our shop is closed rrright now. Why don't you go to Gustaberg and help the situation out therrre? + BIN_STEJIHNA_OPEN_DIALOG = 8538, -- Why don't you buy something from me? You won't regrrret it! I've got all sorts of goods from the Zulkheim region! + BIN_STEJIHNA_CLOSED_DIALOG = 8539, -- I'm taking a brrreak from the saleswoman gig to give dirrrections. So...through this arrrch is the residential area. + TARAIHIPERUNHI_OPEN_DIALOG = 8540, -- Ooh...do I have some great merchandise for you! Man...these are once-in-a-lifetime offers, so get them while you can. + TARAIHIPERUNHI_CLOSED_DIALOG = 8541, -- I am but a poor merchant. Mate, but you just wait! Strife...one day I'll live the high life. Hey, that's my dream, anyway... + CATALIA_DIALOG = 8572, -- While we cannot break our promise to the Windurstians, to ensure justice is served, we would secretly like you to take two shields off of the Yagudo who you meet en route. + FORINE_DIALOG = 8573, -- Act according to our convictions while fulfilling our promise with the Tarutaru. This is indeed a fitting course for us, the people of glorious San d'Oria. + CONQUEST = 8941, -- You've earned conquest points! + APURURU_DIALOG = 9504, -- There's no way Semih Lafihna will just hand it over for no good reason. Maybe if you try talking with Kupipi... + EMPYREAL_ARROW_LEARNED = 9738, -- You have learned the weapon skill Empyreal Arrow! + TRICK_OR_TREAT = 9749, -- Trick or treat... + THANK_YOU_TREAT = 9750, -- Thank you... And now for your treat... + HERE_TAKE_THIS = 9751, -- Here, take this... + IF_YOU_WEAR_THIS = 9752, -- If you put this on and walk around, something...unexpected might happen... + THANK_YOU = 9753, -- Thank you... + NOKKHI_BAD_COUNT = 9771, -- What kinda smart-alecky baloney is this!? I told you to bring me the same kinda ammunition in complete sets. And don't forget the flowers, neither. + NOKKHI_GOOD_TRADE = 9773, -- And here you go! Come back soon, and bring your friends! + NOKKHI_BAD_ITEM = 9774, -- I'm real sorry, but there's nothing I can do with those. + MILLEROVIEUNET_OPEN_DIALOG = 9999, -- Please have a look at these wonderful products from Qufim Island! You won't regret it! + MILLEROVIEUNET_CLOSED_DIALOG = 10000, -- Now that I've finally learned the language here, I'd like to start my own business. If I could only find a supplier... + CLOUD_BAD_COUNT = 10125, -- Well, don't just stand there like an idiot! I can't do any bundlin' until you fork over a set of 99 tools and ! And I ain't doin' no more than seven sets at one time, so don't even try it! + CLOUD_GOOD_TRADE = 10129, -- Here, take 'em and scram. And don't say I ain't never did nothin' for you! + CLOUD_BAD_ITEM = 10130, -- What the hell is this junk!? Why don't you try bringin' what I asked for before I shove one of my sandals up your...nose! + CHOCOBO_FEEDING_SLEEP = 10614, -- Your chocobo is sleeping soundly. You cannot feed it now. + CHOCOBO_FEEDING_RUN_AWAY = 10615, -- Your chocobo has run away. You cannot feed it now. + CHOCOBO_FEEDING_STILL_EGG = 10616, -- You cannot feed a chocobo that has not hatched yet. + CHOCOBO_FEEDING_ITEM = 11699, -- #: % + TRRRADE_IN_SPARKS = 13843, -- You want to trrrade in sparks, do you? + DO_NOT_POSSESS_ENOUGH = 13862, -- You do not possess enough to complete the transaction. + NOT_ENOUGH_SPARKS = 13863, -- You do not possess enough sparks of eminence to complete the transaction. + MAX_SPARKS_LIMIT_REACHED = 13864, -- You have reached the maximum number of sparks that you can exchange this week (). Your ability to purchase skill books and equipment will be restricted until next week. + YOU_NOW_HAVE_AMT_CURRENCY = 13874, -- You now have [sparks of eminence/conquest points/points of imperial standing/Allied Notes/bayld/Fields of Valor points/assault points (Leujaoam)/assault points (Mamool Ja Training Grounds)/assault points (Lebros Cavern)/assault points (Periqia)/assault points (Ilrusi Atoll)/cruor/kinetic units/obsidian fragments/mweya plasm corpuscles/ballista points/Unity accolades/pinches of Escha silt/resistance credits]. + YOU_HAVE_JOINED_UNITY = 14393, -- ou have joined [Pieuje's/Ayame's/Invincible Shield's/Apururu's/Maat's/Aldo's/Jakoh Wahcondalo's/Naja Salaheem's/Flaviria's/Yoran-Oran's/Sylvie's] Unity! + HAVE_ALREADY_CHANGED_UNITY = 14469, -- ou have already changed Unities. Please wait until the next tabulation period. }, mob = { diff --git a/scripts/zones/Woh_Gates/IDs.lua b/scripts/zones/Woh_Gates/IDs.lua index 7df8bcce73f..a0dfc245996 100644 --- a/scripts/zones/Woh_Gates/IDs.lua +++ b/scripts/zones/Woh_Gates/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.WOH_GATES] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Xarcabard/IDs.lua b/scripts/zones/Xarcabard/IDs.lua index ba6e3f50c43..c686aa2c663 100644 --- a/scripts/zones/Xarcabard/IDs.lua +++ b/scripts/zones/Xarcabard/IDs.lua @@ -21,6 +21,7 @@ zones[xi.zone.XARCABARD] = CARRIED_OVER_POINTS = 7014, -- You have carried over login point[/s]. LOGIN_CAMPAIGN_UNDERWAY = 7015, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! LOGIN_NUMBER = 7016, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7036, -- Your party is unable to participate because certain members' levels are restricted. CONQUEST_BASE = 7070, -- Tallying conquest results... BEASTMEN_BANNER = 7149, -- There was a curse on the beastmen's banner! ALREADY_OBTAINED_TELE = 7379, -- You already possess the gate crystal for this telepoint. diff --git a/scripts/zones/Xarcabard_[S]/IDs.lua b/scripts/zones/Xarcabard_[S]/IDs.lua index 1300e98b137..049e81446eb 100644 --- a/scripts/zones/Xarcabard_[S]/IDs.lua +++ b/scripts/zones/Xarcabard_[S]/IDs.lua @@ -10,34 +10,35 @@ zones[xi.zone.XARCABARD_S] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - VOIDWALKER_DESPAWN = 8172, -- The monster fades before your eyes, a look of disappointment on its face. - NO_RESPONSE = 8219, -- There is no response... - REQUIRED_TO_DELIVER = 8255, -- You are required to deliver word of Operation Snowstorm's commencement to the Windurstian and Bastokan forces. First, make your way to the Federation encampment. - HELP_FEDERATION_PREPARE = 8256, -- You must help the Federation prepare for the operation. Head to the underground passage without delay! - FEDERATION_COMPLETE = 8257, -- The Federation's preparations are now complete. Next, make your way to the Republic encampment. - HELP_REPUBLIC_PREPARE = 8258, -- You must help the Republic prepare for the operation. Head to the underground passage without delay! - COMPLETED_TASKS = 8259, -- You have completed your tasks with both Windurst and Bastok. Report back to the San d'Orian encampment. - JOIN_ALLIED_FORCE = 8260, -- Join the Allied strike force in their storming of Castle Zvahl! - BASTOKAN_OFFICER_GONE = 8264, -- The Bastokan officer in charge is nowhere to be seen. Perhaps you should return later. - VOIDWALKER_NO_MOB = 8576, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. - VOIDWALKER_MOB_TOO_FAR = 8577, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. - VOIDWALKER_MOB_HINT = 8578, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. - VOIDWALKER_SPAWN_MOB = 8579, -- A monster materializes out of nowhere! - VOIDWALKER_UPGRADE_KI_1 = 8581, -- The takes on a slightly deeper hue and becomes ! - VOIDWALKER_UPGRADE_KI_2 = 8582, -- The takes on a deeper, richer hue and becomes ! - VOIDWALKER_BREAK_KI = 8583, -- The shatters into tiny fragments. - VOIDWALKER_OBTAIN_KI = 8584, -- Obtained key item: ! - GATHERED_DAWNDROPS_LIGHT = 8751, -- The gathered dawndrops unleash a brilliant light, melding together to form ! - RETRACED_ALL_JUNCTIONS = 8752, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. - HOMEPOINT_SET = 8756, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + VOIDWALKER_DESPAWN = 8172, -- The monster fades before your eyes, a look of disappointment on its face. + NO_RESPONSE = 8219, -- There is no response... + REQUIRED_TO_DELIVER = 8255, -- You are required to deliver word of Operation Snowstorm's commencement to the Windurstian and Bastokan forces. First, make your way to the Federation encampment. + HELP_FEDERATION_PREPARE = 8256, -- You must help the Federation prepare for the operation. Head to the underground passage without delay! + FEDERATION_COMPLETE = 8257, -- The Federation's preparations are now complete. Next, make your way to the Republic encampment. + HELP_REPUBLIC_PREPARE = 8258, -- You must help the Republic prepare for the operation. Head to the underground passage without delay! + COMPLETED_TASKS = 8259, -- You have completed your tasks with both Windurst and Bastok. Report back to the San d'Orian encampment. + JOIN_ALLIED_FORCE = 8260, -- Join the Allied strike force in their storming of Castle Zvahl! + BASTOKAN_OFFICER_GONE = 8264, -- The Bastokan officer in charge is nowhere to be seen. Perhaps you should return later. + VOIDWALKER_NO_MOB = 8576, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. + VOIDWALKER_MOB_TOO_FAR = 8577, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. + VOIDWALKER_MOB_HINT = 8578, -- The resonates [feebly/softly/solidly/strongly/very strongly/furiously], sending a radiant beam of light lancing towards a spot roughly [yalm/yalms] [east/southeast/south/southwest/west/northwest/north/northeast] of here. + VOIDWALKER_SPAWN_MOB = 8579, -- A monster materializes out of nowhere! + VOIDWALKER_UPGRADE_KI_1 = 8581, -- The takes on a slightly deeper hue and becomes ! + VOIDWALKER_UPGRADE_KI_2 = 8582, -- The takes on a deeper, richer hue and becomes ! + VOIDWALKER_BREAK_KI = 8583, -- The shatters into tiny fragments. + VOIDWALKER_OBTAIN_KI = 8584, -- Obtained key item: ! + GATHERED_DAWNDROPS_LIGHT = 8751, -- The gathered dawndrops unleash a brilliant light, melding together to form ! + RETRACED_ALL_JUNCTIONS = 8752, -- You have retraced all junctions of eventualities. Hasten back to where Cait Sith and Lilisette await. + HOMEPOINT_SET = 8756, -- Home point set! }, mob = { diff --git a/scripts/zones/Yahse_Hunting_Grounds/IDs.lua b/scripts/zones/Yahse_Hunting_Grounds/IDs.lua index 9caa91e8bed..f0ed0012685 100644 --- a/scripts/zones/Yahse_Hunting_Grounds/IDs.lua +++ b/scripts/zones/Yahse_Hunting_Grounds/IDs.lua @@ -10,25 +10,26 @@ zones[xi.zone.YAHSE_HUNTING_GROUNDS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - WAYPOINT_ATTUNED = 7608, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3]! - EXPENDED_KINETIC_UNITS = 7623, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 7624, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 7625, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 7626, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 7627, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 7628, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 7629, -- A surplus of kinetic unit[/s] has been lost to the aether. - LEARNS_SPELL = 7864, -- learns ! - UNCANNY_SENSATION = 7866, -- You are assaulted by an uncanny sensation. - ENERGIES_COURSE = 7867, -- The arcane energies begin to course within your veins. - MYSTICAL_WARMTH = 7868, -- You feel a mystical warmth welling up inside you! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WAYPOINT_ATTUNED = 7608, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3]! + EXPENDED_KINETIC_UNITS = 7623, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 7624, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 7625, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 7626, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 7627, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 7628, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 7629, -- A surplus of kinetic unit[/s] has been lost to the aether. + LEARNS_SPELL = 7864, -- learns ! + UNCANNY_SENSATION = 7866, -- You are assaulted by an uncanny sensation. + ENERGIES_COURSE = 7867, -- The arcane energies begin to course within your veins. + MYSTICAL_WARMTH = 7868, -- You feel a mystical warmth welling up inside you! }, mob = { diff --git a/scripts/zones/Yhoator_Jungle/IDs.lua b/scripts/zones/Yhoator_Jungle/IDs.lua index 00cdcecb20a..46b0c5aeec6 100644 --- a/scripts/zones/Yhoator_Jungle/IDs.lua +++ b/scripts/zones/Yhoator_Jungle/IDs.lua @@ -10,39 +10,40 @@ zones[xi.zone.YHOATOR_JUNGLE] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. - CONQUEST = 7225, -- You've earned conquest points! - FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. - DIG_THROW_AWAY = 7571, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7573, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7639, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - ALREADY_OBTAINED_TELE = 7658, -- You already possess the gate crystal for this telepoint. - LOGGING_IS_POSSIBLE_HERE = 7671, -- Logging is possible here if you have . - HARVESTING_IS_POSSIBLE_HERE = 7678, -- Harvesting is possible here if you have . - TREE_CHECK = 7685, -- The hole in this tree is filled with a sweet-smelling liquid. - TREE_FULL = 7686, -- Your wine barrel is already full. - WATER_HOLE = 7689, -- There is an Opo-opo drinking well here. It seems they feast here, too. - FAINT_CRY = 7690, -- You hear the cry of a famished Opo-opo! - PAMAMAS = 7693, -- You might be able to draw an Opo-opo here if you had more pamamas. - SOMETHING_IS_BURIED_HERE = 7741, -- It looks like something is buried here. If you had you could dig it up. - PLAYER_OBTAINS_ITEM = 7830, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7831, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7832, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7833, -- You already possess that temporary item. - NO_COMBINATION = 7838, -- You were unable to enter a combination. - REGIME_REGISTERED = 10016, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 11135, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. + CONQUEST = 7225, -- You've earned conquest points! + FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. + DIG_THROW_AWAY = 7571, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7573, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7639, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + ALREADY_OBTAINED_TELE = 7658, -- You already possess the gate crystal for this telepoint. + LOGGING_IS_POSSIBLE_HERE = 7671, -- Logging is possible here if you have . + HARVESTING_IS_POSSIBLE_HERE = 7678, -- Harvesting is possible here if you have . + TREE_CHECK = 7685, -- The hole in this tree is filled with a sweet-smelling liquid. + TREE_FULL = 7686, -- Your wine barrel is already full. + WATER_HOLE = 7689, -- There is an Opo-opo drinking well here. It seems they feast here, too. + FAINT_CRY = 7690, -- You hear the cry of a famished Opo-opo! + PAMAMAS = 7693, -- You might be able to draw an Opo-opo here if you had more pamamas. + SOMETHING_IS_BURIED_HERE = 7741, -- It looks like something is buried here. If you had you could dig it up. + PLAYER_OBTAINS_ITEM = 7830, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7831, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7832, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7833, -- You already possess that temporary item. + NO_COMBINATION = 7838, -- You were unable to enter a combination. + REGIME_REGISTERED = 10016, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 11135, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Yorcia_Weald/IDs.lua b/scripts/zones/Yorcia_Weald/IDs.lua index 682e3258900..a34ad9184b3 100644 --- a/scripts/zones/Yorcia_Weald/IDs.lua +++ b/scripts/zones/Yorcia_Weald/IDs.lua @@ -10,22 +10,23 @@ zones[xi.zone.YORCIA_WEALD] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - WAYPOINT_ATTUNED = 7532, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3]! - EXPENDED_KINETIC_UNITS = 7547, -- You have expended kinetic unit[/s] and will be transported to another locale. - INSUFFICIENT_UNITS = 7548, -- Your stock of kinetic units is insufficient. - REACHED_KINETIC_UNIT_LIMIT = 7549, -- You have reached your limit of kinetic units and cannot charge your artifact any further. - CANNOT_RECEIVE_KINETIC = 7550, -- There is no response. You apparently cannot receive kinetic units from this item. - ARTIFACT_HAS_BEEN_CHARGED = 7551, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . - ARTIFACT_TERMINAL_VOLUME = 7552, -- Your artifact has been charged to its terminal volume of kinetic units. - SURPLUS_LOST_TO_AETHER = 7553, -- A surplus of kinetic unit[/s] has been lost to the aether. - HOMEPOINT_SET = 8723, -- Home point set! + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + WAYPOINT_ATTUNED = 7532, -- Your has been attuned to a geomagnetic fount[/ at the frontier station/ at Frontier Bivouac #1/ at Frontier Bivouac #2/ at Frontier Bivouac #3]! + EXPENDED_KINETIC_UNITS = 7547, -- You have expended kinetic unit[/s] and will be transported to another locale. + INSUFFICIENT_UNITS = 7548, -- Your stock of kinetic units is insufficient. + REACHED_KINETIC_UNIT_LIMIT = 7549, -- You have reached your limit of kinetic units and cannot charge your artifact any further. + CANNOT_RECEIVE_KINETIC = 7550, -- There is no response. You apparently cannot receive kinetic units from this item. + ARTIFACT_HAS_BEEN_CHARGED = 7551, -- Your artifact has been charged with kinetic unit[/s]. Your current stock of kinetic units totals . + ARTIFACT_TERMINAL_VOLUME = 7552, -- Your artifact has been charged to its terminal volume of kinetic units. + SURPLUS_LOST_TO_AETHER = 7553, -- A surplus of kinetic unit[/s] has been lost to the aether. + HOMEPOINT_SET = 8723, -- Home point set! }, mob = { diff --git a/scripts/zones/Yorcia_Weald_U/IDs.lua b/scripts/zones/Yorcia_Weald_U/IDs.lua index 47b0c0c3808..8ebee59bbfb 100644 --- a/scripts/zones/Yorcia_Weald_U/IDs.lua +++ b/scripts/zones/Yorcia_Weald_U/IDs.lua @@ -10,13 +10,14 @@ zones[xi.zone.YORCIA_WEALD_U] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. }, mob = { diff --git a/scripts/zones/Yughott_Grotto/IDs.lua b/scripts/zones/Yughott_Grotto/IDs.lua index 0aec4146873..858e2d72395 100644 --- a/scripts/zones/Yughott_Grotto/IDs.lua +++ b/scripts/zones/Yughott_Grotto/IDs.lua @@ -10,20 +10,21 @@ zones[xi.zone.YUGHOTT_GROTTO] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - CHEST_UNLOCKED = 7342, -- You unlock the chest! - MINING_IS_POSSIBLE_HERE = 7350, -- Mining is possible here if you have . - HOMEPOINT_SET = 7450, -- Home point set! + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + GEOMAGNETRON_ATTUNED = 7171, -- Your has been attuned to a geomagnetic fount in the corresponding locale. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + CHEST_UNLOCKED = 7342, -- You unlock the chest! + MINING_IS_POSSIBLE_HERE = 7350, -- Mining is possible here if you have . + HOMEPOINT_SET = 7450, -- Home point set! }, mob = { diff --git a/scripts/zones/Yuhtunga_Jungle/IDs.lua b/scripts/zones/Yuhtunga_Jungle/IDs.lua index bc36d9a8752..257f40664e0 100644 --- a/scripts/zones/Yuhtunga_Jungle/IDs.lua +++ b/scripts/zones/Yuhtunga_Jungle/IDs.lua @@ -10,48 +10,49 @@ zones[xi.zone.YUHTUNGA_JUNGLE] = { text = { - NOTHING_HAPPENS = 119, -- Nothing happens... - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - KEYITEM_LOST = 6394, -- Lost key item: . - NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. - SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... - NOW_IS_NOT_THE_TIME = 6406, -- Now is not the time for that! - FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CONQUEST_BASE = 7057, -- Tallying conquest results... - BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. - CONQUEST = 7225, -- You've earned conquest points! - FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. - DIG_THROW_AWAY = 7571, -- You dig up , but your inventory is full. You regretfully throw the away. - FIND_NOTHING = 7573, -- You dig and you dig, but find nothing. - AMK_DIGGING_OFFSET = 7639, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. - FLOWER_BLOOMING = 7664, -- A large flower is blooming. - FOUND_NOTHING_IN_FLOWER = 7667, -- You find nothing inside the flower. - FEEL_DIZZY = 7668, -- You feel slightly dizzy. You must have breathed in too much of the pollen. - SOMETHING_BETTER = 7681, -- Don't you have something better to do right now? - CANNOT_REMOVE_FRAG = 7684, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... - ALREADY_OBTAINED_FRAG = 7685, -- You have already obtained this monument's . Try searching for another. - ALREADY_HAVE_ALL_FRAGS = 7686, -- You have obtained all of the fragments. You must hurry to the ruins of the ancient shrine! - FOUND_ALL_FRAGS = 7687, -- You have obtained ! You now have all 8 fragments of light! - ZILART_MONUMENT = 7688, -- It is an ancient Zilart monument. - TOUCHING_RED_JEWEL = 7690, -- Touching the red jewel has infuriated the Opo-opos of the forest. It would be wise to leave immediately. - THE_OPO_OPOS_ATTACK = 7704, -- The Opo-opos attack! - LOGGING_IS_POSSIBLE_HERE = 7705, -- Logging is possible here if you have . - HARVESTING_IS_POSSIBLE_HERE = 7712, -- Harvesting is possible here if you have . - SOMETHING_IS_BURIED_HERE = 7766, -- It looks like something is buried here. If you had you could dig it up. - SWARM_APPEARED = 7839, -- A swarm has appeared! - PLAYER_OBTAINS_ITEM = 7879, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7880, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7881, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7882, -- You already possess that temporary item. - NO_COMBINATION = 7887, -- You were unable to enter a combination. - REGIME_REGISTERED = 10065, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 12059, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + NOTHING_HAPPENS = 119, -- Nothing happens... + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + KEYITEM_LOST = 6394, -- Lost key item: . + NOTHING_OUT_OF_ORDINARY = 6404, -- There is nothing out of the ordinary here. + SENSE_OF_FOREBODING = 6405, -- You are suddenly overcome with a sense of foreboding... + NOW_IS_NOT_THE_TIME = 6406, -- Now is not the time for that! + FELLOW_MESSAGE_OFFSET = 6419, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CONQUEST_BASE = 7057, -- Tallying conquest results... + BEASTMEN_BANNER = 7138, -- There is a beastmen's banner. + CONQUEST = 7225, -- You've earned conquest points! + FISHING_MESSAGE_OFFSET = 7558, -- You can't fish here. + DIG_THROW_AWAY = 7571, -- You dig up , but your inventory is full. You regretfully throw the away. + FIND_NOTHING = 7573, -- You dig and you dig, but find nothing. + AMK_DIGGING_OFFSET = 7639, -- You spot some familiar footprints. You are convinced that your moogle friend has been digging in the immediate vicinity. + FLOWER_BLOOMING = 7664, -- A large flower is blooming. + FOUND_NOTHING_IN_FLOWER = 7667, -- You find nothing inside the flower. + FEEL_DIZZY = 7668, -- You feel slightly dizzy. You must have breathed in too much of the pollen. + SOMETHING_BETTER = 7681, -- Don't you have something better to do right now? + CANNOT_REMOVE_FRAG = 7684, -- It is an oddly shaped stone monument. A shining stone is embedded in it, but cannot be removed... + ALREADY_OBTAINED_FRAG = 7685, -- You have already obtained this monument's . Try searching for another. + ALREADY_HAVE_ALL_FRAGS = 7686, -- You have obtained all of the fragments. You must hurry to the ruins of the ancient shrine! + FOUND_ALL_FRAGS = 7687, -- You have obtained ! You now have all 8 fragments of light! + ZILART_MONUMENT = 7688, -- It is an ancient Zilart monument. + TOUCHING_RED_JEWEL = 7690, -- Touching the red jewel has infuriated the Opo-opos of the forest. It would be wise to leave immediately. + THE_OPO_OPOS_ATTACK = 7704, -- The Opo-opos attack! + LOGGING_IS_POSSIBLE_HERE = 7705, -- Logging is possible here if you have . + HARVESTING_IS_POSSIBLE_HERE = 7712, -- Harvesting is possible here if you have . + SOMETHING_IS_BURIED_HERE = 7766, -- It looks like something is buried here. If you had you could dig it up. + SWARM_APPEARED = 7839, -- A swarm has appeared! + PLAYER_OBTAINS_ITEM = 7879, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7880, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7881, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7882, -- You already possess that temporary item. + NO_COMBINATION = 7887, -- You were unable to enter a combination. + REGIME_REGISTERED = 10065, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 12059, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Zeruhn_Mines/IDs.lua b/scripts/zones/Zeruhn_Mines/IDs.lua index 24d90df63c3..9cb5c939e53 100644 --- a/scripts/zones/Zeruhn_Mines/IDs.lua +++ b/scripts/zones/Zeruhn_Mines/IDs.lua @@ -10,26 +10,27 @@ zones[xi.zone.ZERUHN_MINES] = { text = { - CONQUEST_BASE = 0, -- Tallying conquest results... - ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6549, -- Obtained: . - GIL_OBTAINED = 6550, -- Obtained gil. - KEYITEM_OBTAINED = 6552, -- Obtained key item: . - FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. - CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. - MAKARIM_DIALOG_I = 7323, -- Be careful on your way out. Remember, you should give my report to Naji, one of the Mythril Musketeers on post at the President's Office. - ZELMAN_CANT_RUN_AROUND = 7348, -- I can't run around doing everything she tells me to--I have my dignity to uphold! - MINING_IS_POSSIBLE_HERE = 7355, -- Mining is possible here if you have . - PLAYER_OBTAINS_ITEM = 7412, -- obtains ! - UNABLE_TO_OBTAIN_ITEM = 7413, -- You were unable to obtain the item. - PLAYER_OBTAINS_TEMP_ITEM = 7414, -- obtains the temporary item: ! - ALREADY_POSSESS_TEMP = 7415, -- You already possess that temporary item. - NO_COMBINATION = 7420, -- You were unable to enter a combination. - REGIME_REGISTERED = 9498, -- New training regime registered! - COMMON_SENSE_SURVIVAL = 10546, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + CONQUEST_BASE = 0, -- Tallying conquest results... + ITEM_CANNOT_BE_OBTAINED = 6543, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6549, -- Obtained: . + GIL_OBTAINED = 6550, -- Obtained gil. + KEYITEM_OBTAINED = 6552, -- Obtained key item: . + FELLOW_MESSAGE_OFFSET = 6578, -- I'm ready. I suppose. + CARRIED_OVER_POINTS = 7160, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7161, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7162, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7182, -- Your party is unable to participate because certain members' levels are restricted. + FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. + MAKARIM_DIALOG_I = 7323, -- Be careful on your way out. Remember, you should give my report to Naji, one of the Mythril Musketeers on post at the President's Office. + ZELMAN_CANT_RUN_AROUND = 7348, -- I can't run around doing everything she tells me to--I have my dignity to uphold! + MINING_IS_POSSIBLE_HERE = 7355, -- Mining is possible here if you have . + PLAYER_OBTAINS_ITEM = 7412, -- obtains ! + UNABLE_TO_OBTAIN_ITEM = 7413, -- You were unable to obtain the item. + PLAYER_OBTAINS_TEMP_ITEM = 7414, -- obtains the temporary item: ! + ALREADY_POSSESS_TEMP = 7415, -- You already possess that temporary item. + NO_COMBINATION = 7420, -- You were unable to enter a combination. + REGIME_REGISTERED = 9498, -- New training regime registered! + COMMON_SENSE_SURVIVAL = 10546, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = { diff --git a/scripts/zones/Zhayolm_Remnants/IDs.lua b/scripts/zones/Zhayolm_Remnants/IDs.lua index 3b0c1de54eb..2baf99e0b22 100644 --- a/scripts/zones/Zhayolm_Remnants/IDs.lua +++ b/scripts/zones/Zhayolm_Remnants/IDs.lua @@ -10,14 +10,15 @@ zones[xi.zone.ZHAYOLM_REMNANTS] = { text = { - ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. - ITEM_OBTAINED = 6390, -- Obtained: . - GIL_OBTAINED = 6391, -- Obtained gil. - KEYITEM_OBTAINED = 6393, -- Obtained key item: . - CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. - LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! - LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. - CELL_OFFSET = 7217, -- Main Weapon/Sub-Weapon restriction removed. + ITEM_CANNOT_BE_OBTAINED = 6384, -- You cannot obtain the . Come back after sorting your inventory. + ITEM_OBTAINED = 6390, -- Obtained: . + GIL_OBTAINED = 6391, -- Obtained gil. + KEYITEM_OBTAINED = 6393, -- Obtained key item: . + CARRIED_OVER_POINTS = 7001, -- You have carried over login point[/s]. + LOGIN_CAMPAIGN_UNDERWAY = 7002, -- The [/January/February/March/April/May/June/July/August/September/October/November/December] Login Campaign is currently underway! + LOGIN_NUMBER = 7003, -- In celebration of your most recent login (login no. ), we have provided you with points! You currently have a total of points. + MEMBERS_LEVELS_ARE_RESTRICTED = 7023, -- Your party is unable to participate because certain members' levels are restricted. + CELL_OFFSET = 7217, -- Main Weapon/Sub-Weapon restriction removed. }, mob = { From 7b4606297749953812dbee3ec39287e5ae8f7dfb Mon Sep 17 00:00:00 2001 From: WinterSolstice8 <60417494+WinterSolstice8@users.noreply.github.com> Date: Fri, 2 Sep 2022 20:23:08 -0700 Subject: [PATCH 4/4] [lua] [zones] Add UNITY_WANTED_BATTLE_INTERACT message id to applicable zones --- scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua | 1 + scripts/zones/Attohwa_Chasm/IDs.lua | 1 + scripts/zones/Aydeewa_Subterrane/IDs.lua | 1 + scripts/zones/Batallia_Downs/IDs.lua | 1 + scripts/zones/Beaucedine_Glacier/IDs.lua | 1 + scripts/zones/Behemoths_Dominion/IDs.lua | 1 + scripts/zones/Bibiki_Bay/IDs.lua | 1 + scripts/zones/Bostaunieux_Oubliette/IDs.lua | 1 + scripts/zones/Buburimu_Peninsula/IDs.lua | 1 + scripts/zones/Caedarva_Mire/IDs.lua | 1 + scripts/zones/Cape_Teriggan/IDs.lua | 1 + scripts/zones/Carpenters_Landing/IDs.lua | 1 + scripts/zones/Den_of_Rancor/IDs.lua | 1 + scripts/zones/East_Ronfaure/IDs.lua | 1 + scripts/zones/East_Sarutabaruta/IDs.lua | 1 + scripts/zones/Eastern_Altepa_Desert/IDs.lua | 1 + scripts/zones/FeiYin/IDs.lua | 1 + scripts/zones/Garlaige_Citadel/IDs.lua | 1 + scripts/zones/Gustav_Tunnel/IDs.lua | 1 + scripts/zones/Halvung/IDs.lua | 1 + scripts/zones/Ifrits_Cauldron/IDs.lua | 1 + scripts/zones/Jugner_Forest/IDs.lua | 1 + scripts/zones/Konschtat_Highlands/IDs.lua | 1 + scripts/zones/Kuftal_Tunnel/IDs.lua | 1 + scripts/zones/La_Theine_Plateau/IDs.lua | 1 + scripts/zones/Labyrinth_of_Onzozo/IDs.lua | 1 + scripts/zones/Lufaise_Meadows/IDs.lua | 1 + scripts/zones/Meriphataud_Mountains/IDs.lua | 1 + scripts/zones/Misareaux_Coast/IDs.lua | 1 + scripts/zones/Mount_Zhayolm/IDs.lua | 1 + scripts/zones/Pashhow_Marshlands/IDs.lua | 1 + scripts/zones/Qufim_Island/IDs.lua | 1 + scripts/zones/Quicksand_Caves/IDs.lua | 1 + scripts/zones/Riverne-Site_A01/IDs.lua | 1 + scripts/zones/Riverne-Site_B01/IDs.lua | 1 + scripts/zones/RoMaeve/IDs.lua | 1 + scripts/zones/Rolanberry_Fields/IDs.lua | 1 + scripts/zones/Sauromugue_Champaign/IDs.lua | 1 + scripts/zones/Sea_Serpent_Grotto/IDs.lua | 1 + scripts/zones/South_Gustaberg/IDs.lua | 1 + scripts/zones/Tahrongi_Canyon/IDs.lua | 1 + scripts/zones/Temple_of_Uggalepih/IDs.lua | 1 + scripts/zones/The_Boyahda_Tree/IDs.lua | 1 + scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua | 1 + scripts/zones/Uleguerand_Range/IDs.lua | 1 + scripts/zones/Valkurm_Dunes/IDs.lua | 1 + scripts/zones/Valley_of_Sorrows/IDs.lua | 1 + scripts/zones/Wajaom_Woodlands/IDs.lua | 1 + scripts/zones/Western_Altepa_Desert/IDs.lua | 1 + scripts/zones/Xarcabard/IDs.lua | 1 + scripts/zones/Yhoator_Jungle/IDs.lua | 1 + scripts/zones/Yuhtunga_Jungle/IDs.lua | 1 + 52 files changed, 52 insertions(+) diff --git a/scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua b/scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua index 3f0915bf8b4..576c43412d5 100644 --- a/scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua +++ b/scripts/zones/Alzadaal_Undersea_Ruins/IDs.lua @@ -38,6 +38,7 @@ zones[xi.zone.ALZADAAL_UNDERSEA_RUINS] = GLITTERING_FRAGMENTS = 7737, -- Minute glittering fragments are scattered all over... SLIMY_TOUCH = 7755, -- The ground here is slimy to the touch... DRAWS_NEAR = 7766, -- Something draws near! + UNITY_WANTED_BATTLE_INTERACT = 7931, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Attohwa_Chasm/IDs.lua b/scripts/zones/Attohwa_Chasm/IDs.lua index 48ee63152e7..22df5df8370 100644 --- a/scripts/zones/Attohwa_Chasm/IDs.lua +++ b/scripts/zones/Attohwa_Chasm/IDs.lua @@ -28,6 +28,7 @@ zones[xi.zone.ATTOHWA_CHASM] = GASPONIA_POISON = 7336, -- The poison of the Gasponia has begun to spread through your body. OCCASIONAL_LUMPS = 7351, -- Occasionally lumps arise in the ground here, then settle down again. It seems that there is something beneath the earth. HOMEPOINT_SET = 8238, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 8296, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Aydeewa_Subterrane/IDs.lua b/scripts/zones/Aydeewa_Subterrane/IDs.lua index a6759fa2a32..e2b48e2c486 100644 --- a/scripts/zones/Aydeewa_Subterrane/IDs.lua +++ b/scripts/zones/Aydeewa_Subterrane/IDs.lua @@ -27,6 +27,7 @@ zones[xi.zone.AYDEEWA_SUBTERRANE] = BLOOD_STAINS = 8010, -- The ground is smeared with bloodstains... DRAWS_NEAR = 8035, -- Something draws near! COMMON_SENSE_SURVIVAL = 8907, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 8971, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Batallia_Downs/IDs.lua b/scripts/zones/Batallia_Downs/IDs.lua index 9f5bf818c86..a28e50d518a 100644 --- a/scripts/zones/Batallia_Downs/IDs.lua +++ b/scripts/zones/Batallia_Downs/IDs.lua @@ -36,6 +36,7 @@ zones[xi.zone.BATALLIA_DOWNS] = ALREADY_POSSESS_TEMP = 7712, -- You already possess that temporary item. NO_COMBINATION = 7717, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 7748, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 7779, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9995, -- New training regime registered! FRAGMENT_FAR_TOO_SMALL = 11333, -- You obtain . However, it is far too small to house an adequate amount of energy. Alone, it serves no purpose. FRAGMENTS_MELD = 11334, -- The tiny fragments of Lilisette's memory meld together to form ! diff --git a/scripts/zones/Beaucedine_Glacier/IDs.lua b/scripts/zones/Beaucedine_Glacier/IDs.lua index 5ca25a823b3..cb8975ba796 100644 --- a/scripts/zones/Beaucedine_Glacier/IDs.lua +++ b/scripts/zones/Beaucedine_Glacier/IDs.lua @@ -36,6 +36,7 @@ zones[xi.zone.BEAUCEDINE_GLACIER] = ALREADY_POSSESS_TEMP = 8580, -- You already possess that temporary item. NO_COMBINATION = 8585, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 8616, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 8647, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10763, -- New training regime registered! VOIDWALKER_NO_MOB = 11882, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. VOIDWALKER_MOB_TOO_FAR = 11883, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. diff --git a/scripts/zones/Behemoths_Dominion/IDs.lua b/scripts/zones/Behemoths_Dominion/IDs.lua index 3ff7544a333..3258fd21563 100644 --- a/scripts/zones/Behemoths_Dominion/IDs.lua +++ b/scripts/zones/Behemoths_Dominion/IDs.lua @@ -34,6 +34,7 @@ zones[xi.zone.BEHEMOTHS_DOMINION] = PLAYER_OBTAINS_TEMP_ITEM = 7353, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7354, -- You already possess that temporary item. NO_COMBINATION = 7359, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7421, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9537, -- New training regime registered! LEARNS_SPELL = 11526, -- learns ! UNCANNY_SENSATION = 11528, -- You are assaulted by an uncanny sensation. diff --git a/scripts/zones/Bibiki_Bay/IDs.lua b/scripts/zones/Bibiki_Bay/IDs.lua index 8bfff0be778..95d432120fd 100644 --- a/scripts/zones/Bibiki_Bay/IDs.lua +++ b/scripts/zones/Bibiki_Bay/IDs.lua @@ -44,6 +44,7 @@ zones[xi.zone.BIBIKI_BAY] = LEFT_BILLET = 7499, -- You use your . ( trip[/s] remaining) END_BILLET = 7500, -- You use up your . NOTHING_LEFT_INTEREST = 7617, -- There is nothing left of interest here. + UNITY_WANTED_BATTLE_INTERACT = 8623, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] COMMON_SENSE_SURVIVAL = 8645, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. NEWS_BILLET = 8668, -- has been [added to your list of favorites/removed from your list of favorites]. }, diff --git a/scripts/zones/Bostaunieux_Oubliette/IDs.lua b/scripts/zones/Bostaunieux_Oubliette/IDs.lua index 0cc10da4e25..a8ae0e35a57 100644 --- a/scripts/zones/Bostaunieux_Oubliette/IDs.lua +++ b/scripts/zones/Bostaunieux_Oubliette/IDs.lua @@ -37,6 +37,7 @@ zones[xi.zone.BOSTAUNIEUX_OUBLIETTE] = LEARNS_SPELL = 10624, -- learns ! UNCANNY_SENSATION = 10626, -- You are assaulted by an uncanny sensation. COMMON_SENSE_SURVIVAL = 10633, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 10697, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Buburimu_Peninsula/IDs.lua b/scripts/zones/Buburimu_Peninsula/IDs.lua index 965a4043af7..a93d97841fb 100644 --- a/scripts/zones/Buburimu_Peninsula/IDs.lua +++ b/scripts/zones/Buburimu_Peninsula/IDs.lua @@ -46,6 +46,7 @@ zones[xi.zone.BUBURIMU_PENINSULA] = PLAYER_OBTAINS_TEMP_ITEM = 8121, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 8122, -- You already possess that temporary item. NO_COMBINATION = 8127, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 8189, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10305, -- New training regime registered! COMMON_SENSE_SURVIVAL = 12326, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, diff --git a/scripts/zones/Caedarva_Mire/IDs.lua b/scripts/zones/Caedarva_Mire/IDs.lua index a88b0f63769..ff240b53bb9 100644 --- a/scripts/zones/Caedarva_Mire/IDs.lua +++ b/scripts/zones/Caedarva_Mire/IDs.lua @@ -43,6 +43,7 @@ zones[xi.zone.CAEDARVA_MIRE] = SHREDDED_SCRAPS = 8077, -- Shredded scraps of paper are scattered all over... DRAWS_NEAR = 8086, -- Something draws near! HOMEPOINT_SET = 8979, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 9037, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] COMMON_SENSE_SURVIVAL = 9059, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Cape_Teriggan/IDs.lua b/scripts/zones/Cape_Teriggan/IDs.lua index f214fe12b1a..778a2e9db12 100644 --- a/scripts/zones/Cape_Teriggan/IDs.lua +++ b/scripts/zones/Cape_Teriggan/IDs.lua @@ -41,6 +41,7 @@ zones[xi.zone.CAPE_TERIGGAN] = PLAYER_OBTAINS_TEMP_ITEM = 7930, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7931, -- You already possess that temporary item. NO_COMBINATION = 7936, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7998, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10114, -- New training regime registered! COMMON_SENSE_SURVIVAL = 11233, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. HOMEPOINT_SET = 11261, -- Home point set! diff --git a/scripts/zones/Carpenters_Landing/IDs.lua b/scripts/zones/Carpenters_Landing/IDs.lua index b81c942c15a..3176b957c45 100644 --- a/scripts/zones/Carpenters_Landing/IDs.lua +++ b/scripts/zones/Carpenters_Landing/IDs.lua @@ -36,6 +36,7 @@ zones[xi.zone.CARPENTERS_LANDING] = CRYPTONBERRY_EXECUTOR_2HR = 7481, -- Through this we ssseek our just reward... MYCOPHILE_MUSHROOM = 7498, -- There is a rotten mushroom here. There are 3 openings in its cap. HERCULES_TREE_NOTHING_YET = 7500, -- There is nothing here yet. Check again in the morning. + UNITY_WANTED_BATTLE_INTERACT = 7543, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] COMMON_SENSE_SURVIVAL = 7565, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Den_of_Rancor/IDs.lua b/scripts/zones/Den_of_Rancor/IDs.lua index 8f5760a9d6b..df3ea536c28 100644 --- a/scripts/zones/Den_of_Rancor/IDs.lua +++ b/scripts/zones/Den_of_Rancor/IDs.lua @@ -32,6 +32,7 @@ zones[xi.zone.DEN_OF_RANCOR] = NO_COMBINATION = 7417, -- You were unable to enter a combination. REGIME_REGISTERED = 9495, -- New training regime registered! HOMEPOINT_SET = 10545, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 10603, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/East_Ronfaure/IDs.lua b/scripts/zones/East_Ronfaure/IDs.lua index b3b9cb196f6..8abbb7f5912 100644 --- a/scripts/zones/East_Ronfaure/IDs.lua +++ b/scripts/zones/East_Ronfaure/IDs.lua @@ -37,6 +37,7 @@ zones[xi.zone.EAST_RONFAURE] = ALREADY_POSSESS_TEMP = 7508, -- You already possess that temporary item. NO_COMBINATION = 7513, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 7544, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 7575, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9884, -- New training regime registered! VOIDWALKER_NO_MOB = 11057, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. VOIDWALKER_MOB_TOO_FAR = 11058, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. diff --git a/scripts/zones/East_Sarutabaruta/IDs.lua b/scripts/zones/East_Sarutabaruta/IDs.lua index aa4222510a9..7dff9c56881 100644 --- a/scripts/zones/East_Sarutabaruta/IDs.lua +++ b/scripts/zones/East_Sarutabaruta/IDs.lua @@ -36,6 +36,7 @@ zones[xi.zone.EAST_SARUTABARUTA] = PLAYER_OBTAINS_TEMP_ITEM = 7572, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7573, -- You already possess that temporary item. NO_COMBINATION = 7578, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7640, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9938, -- New training regime registered! }, mob = diff --git a/scripts/zones/Eastern_Altepa_Desert/IDs.lua b/scripts/zones/Eastern_Altepa_Desert/IDs.lua index 556870b6b00..ed5a4e95fa6 100644 --- a/scripts/zones/Eastern_Altepa_Desert/IDs.lua +++ b/scripts/zones/Eastern_Altepa_Desert/IDs.lua @@ -35,6 +35,7 @@ zones[xi.zone.EASTERN_ALTEPA_DESERT] = PLAYER_OBTAINS_TEMP_ITEM = 7780, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7781, -- You already possess that temporary item. NO_COMBINATION = 7786, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7848, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9964, -- New training regime registered! COMMON_SENSE_SURVIVAL = 11100, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, diff --git a/scripts/zones/FeiYin/IDs.lua b/scripts/zones/FeiYin/IDs.lua index 03a2a58eac9..6b21a7f8dcd 100644 --- a/scripts/zones/FeiYin/IDs.lua +++ b/scripts/zones/FeiYin/IDs.lua @@ -43,6 +43,7 @@ zones[xi.zone.FEIYIN] = LEARNS_SPELL = 10649, -- learns ! UNCANNY_SENSATION = 10651, -- You are assaulted by an uncanny sensation. HOMEPOINT_SET = 10700, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 10758, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Garlaige_Citadel/IDs.lua b/scripts/zones/Garlaige_Citadel/IDs.lua index 274ffd796e5..362d90f684a 100644 --- a/scripts/zones/Garlaige_Citadel/IDs.lua +++ b/scripts/zones/Garlaige_Citadel/IDs.lua @@ -51,6 +51,7 @@ zones[xi.zone.GARLAIGE_CITADEL] = LEARNS_SPELL = 11531, -- learns ! UNCANNY_SENSATION = 11533, -- You are assaulted by an uncanny sensation. COMMON_SENSE_SURVIVAL = 11564, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 11628, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Gustav_Tunnel/IDs.lua b/scripts/zones/Gustav_Tunnel/IDs.lua index baca29a076b..502f579b9ee 100644 --- a/scripts/zones/Gustav_Tunnel/IDs.lua +++ b/scripts/zones/Gustav_Tunnel/IDs.lua @@ -25,6 +25,7 @@ zones[xi.zone.GUSTAV_TUNNEL] = FISHING_MESSAGE_OFFSET = 7216, -- You can't fish here. BAD_FEELING_ABOUT_PLACE = 7316, -- You have a bad feeling about this place. SENSE_OMINOUS_PRESENCE = 7318, -- You sense an ominous presence... + UNITY_WANTED_BATTLE_INTERACT = 7439, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9586, -- New training regime registered! PLAYER_OBTAINS_ITEM = 10638, -- obtains ! UNABLE_TO_OBTAIN_ITEM = 10639, -- You were unable to obtain the item. diff --git a/scripts/zones/Halvung/IDs.lua b/scripts/zones/Halvung/IDs.lua index f538e31b79c..8ae6228414b 100644 --- a/scripts/zones/Halvung/IDs.lua +++ b/scripts/zones/Halvung/IDs.lua @@ -30,6 +30,7 @@ zones[xi.zone.HALVUNG] = DRAWS_NEAR = 8042, -- Something draws near! DULL_PIECE = 8043, -- A dull piece of metal lies on the ground. It appears to be a bracelet of sorts, but the layers of grime covering its surface render it wholly unwearable. LIFT_LEVER = 8046, -- You lift the lever with all your might! + UNITY_WANTED_BATTLE_INTERACT = 8085, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] COMMON_SENSE_SURVIVAL = 8107, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Ifrits_Cauldron/IDs.lua b/scripts/zones/Ifrits_Cauldron/IDs.lua index 30e1326450a..cfb2490a66e 100644 --- a/scripts/zones/Ifrits_Cauldron/IDs.lua +++ b/scripts/zones/Ifrits_Cauldron/IDs.lua @@ -40,6 +40,7 @@ zones[xi.zone.IFRITS_CAULDRON] = ALREADY_POSSESS_TEMP = 11485, -- You already possess that temporary item. NO_COMBINATION = 11490, -- You were unable to enter a combination. HOMEPOINT_SET = 11516, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 11574, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] COMMON_SENSE_SURVIVAL = 11596, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, mob = diff --git a/scripts/zones/Jugner_Forest/IDs.lua b/scripts/zones/Jugner_Forest/IDs.lua index 04704151654..28b0db7d313 100644 --- a/scripts/zones/Jugner_Forest/IDs.lua +++ b/scripts/zones/Jugner_Forest/IDs.lua @@ -37,6 +37,7 @@ zones[xi.zone.JUGNER_FOREST] = ALREADY_POSSESS_TEMP = 8661, -- You already possess that temporary item. NO_COMBINATION = 8666, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 8697, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 8728, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10871, -- New training regime registered! DRAWN_UNWANTED_ATTENTION = 11925, -- Your presence has drawn unwanted attention! SENSE_UNUSUAL_PRESENCE = 11927, -- You sense an unusual presence in the area... diff --git a/scripts/zones/Konschtat_Highlands/IDs.lua b/scripts/zones/Konschtat_Highlands/IDs.lua index bfbd51e234c..c3b8eadce30 100644 --- a/scripts/zones/Konschtat_Highlands/IDs.lua +++ b/scripts/zones/Konschtat_Highlands/IDs.lua @@ -45,6 +45,7 @@ zones[xi.zone.KONSCHTAT_HIGHLANDS] = ALREADY_POSSESS_TEMP = 7616, -- You already possess that temporary item. NO_COMBINATION = 7621, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 7652, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 7683, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9799, -- New training regime registered! VOIDWALKER_NO_MOB = 10972, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. VOIDWALKER_MOB_TOO_FAR = 10973, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. diff --git a/scripts/zones/Kuftal_Tunnel/IDs.lua b/scripts/zones/Kuftal_Tunnel/IDs.lua index 30eff0a23f9..c5b4babb519 100644 --- a/scripts/zones/Kuftal_Tunnel/IDs.lua +++ b/scripts/zones/Kuftal_Tunnel/IDs.lua @@ -35,6 +35,7 @@ zones[xi.zone.KUFTAL_TUNNEL] = ALREADY_POSSESS_TEMP = 11398, -- You already possess that temporary item. NO_COMBINATION = 11403, -- You were unable to enter a combination. COMMON_SENSE_SURVIVAL = 11427, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 11491, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/La_Theine_Plateau/IDs.lua b/scripts/zones/La_Theine_Plateau/IDs.lua index 58ef29eeaaf..7e8fa0926eb 100644 --- a/scripts/zones/La_Theine_Plateau/IDs.lua +++ b/scripts/zones/La_Theine_Plateau/IDs.lua @@ -48,6 +48,7 @@ zones[xi.zone.LA_THEINE_PLATEAU] = ALREADY_POSSESS_TEMP = 7921, -- You already possess that temporary item. NO_COMBINATION = 7926, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 7957, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 7988, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] MEMORIES_SEALED_OFF = 8082, -- A portion of your memories has been sealed off. REGIME_REGISTERED = 10137, -- New training regime registered! VOIDWALKER_NO_MOB = 11310, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. diff --git a/scripts/zones/Labyrinth_of_Onzozo/IDs.lua b/scripts/zones/Labyrinth_of_Onzozo/IDs.lua index 8a2eaf52841..b4a3dd79a96 100644 --- a/scripts/zones/Labyrinth_of_Onzozo/IDs.lua +++ b/scripts/zones/Labyrinth_of_Onzozo/IDs.lua @@ -32,6 +32,7 @@ zones[xi.zone.LABYRINTH_OF_ONZOZO] = ALREADY_POSSESS_TEMP = 10451, -- You already possess that temporary item. NO_COMBINATION = 10456, -- You were unable to enter a combination. COMMON_SENSE_SURVIVAL = 10480, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 10544, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Lufaise_Meadows/IDs.lua b/scripts/zones/Lufaise_Meadows/IDs.lua index f391c15ae1a..16282ecb4f7 100644 --- a/scripts/zones/Lufaise_Meadows/IDs.lua +++ b/scripts/zones/Lufaise_Meadows/IDs.lua @@ -31,6 +31,7 @@ zones[xi.zone.LUFAISE_MEADOWS] = YOU_CAN_SEE_FOR_MALMS = 7745, -- You can see for malms in every direction. SPINE_CHILLING_PRESENCE = 7747, -- You sense a spine-chilling presence! COMMON_SENSE_SURVIVAL = 8742, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 8806, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Meriphataud_Mountains/IDs.lua b/scripts/zones/Meriphataud_Mountains/IDs.lua index cde033fa485..4ab1b36774b 100644 --- a/scripts/zones/Meriphataud_Mountains/IDs.lua +++ b/scripts/zones/Meriphataud_Mountains/IDs.lua @@ -37,6 +37,7 @@ zones[xi.zone.MERIPHATAUD_MOUNTAINS] = ALREADY_POSSESS_TEMP = 8359, -- You already possess that temporary item. NO_COMBINATION = 8364, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 8395, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 8426, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10604, -- New training regime registered! VOIDWALKER_NO_MOB = 11723, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. VOIDWALKER_MOB_TOO_FAR = 11724, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. diff --git a/scripts/zones/Misareaux_Coast/IDs.lua b/scripts/zones/Misareaux_Coast/IDs.lua index cffcabba3a6..406da304344 100644 --- a/scripts/zones/Misareaux_Coast/IDs.lua +++ b/scripts/zones/Misareaux_Coast/IDs.lua @@ -37,6 +37,7 @@ zones[xi.zone.MISAREAUX_COAST] = DID_NOT_CATCH_ANYTHING = 7671, -- You did not catch anything. PUT_IN_TRAP = 7672, -- You put in the trap. COMMON_SENSE_SURVIVAL = 8643, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 8707, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] HOMEPOINT_SET = 8866, -- Home point set! }, mob = diff --git a/scripts/zones/Mount_Zhayolm/IDs.lua b/scripts/zones/Mount_Zhayolm/IDs.lua index 43d3f126424..a00420d38ca 100644 --- a/scripts/zones/Mount_Zhayolm/IDs.lua +++ b/scripts/zones/Mount_Zhayolm/IDs.lua @@ -40,6 +40,7 @@ zones[xi.zone.MOUNT_ZHAYOLM] = STIFLING_STENCH = 7564, -- A stifling stench pervades the air... DRAWS_NEAR = 7580, -- Something draws near! HOMEPOINT_SET = 8729, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 8787, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Pashhow_Marshlands/IDs.lua b/scripts/zones/Pashhow_Marshlands/IDs.lua index 03803d6f625..b7738bf1af6 100644 --- a/scripts/zones/Pashhow_Marshlands/IDs.lua +++ b/scripts/zones/Pashhow_Marshlands/IDs.lua @@ -35,6 +35,7 @@ zones[xi.zone.PASHHOW_MARSHLANDS] = ALREADY_POSSESS_TEMP = 8479, -- You already possess that temporary item. NO_COMBINATION = 8484, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 8515, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 8546, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10725, -- New training regime registered! VOIDWALKER_NO_MOB = 11844, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. VOIDWALKER_MOB_TOO_FAR = 11845, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. diff --git a/scripts/zones/Qufim_Island/IDs.lua b/scripts/zones/Qufim_Island/IDs.lua index 296b56b6402..b100cca439d 100644 --- a/scripts/zones/Qufim_Island/IDs.lua +++ b/scripts/zones/Qufim_Island/IDs.lua @@ -41,6 +41,7 @@ zones[xi.zone.QUFIM_ISLAND] = PLAYER_OBTAINS_TEMP_ITEM = 8065, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 8066, -- You already possess that temporary item. NO_COMBINATION = 8071, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 8133, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10347, -- New training regime registered! LEARNS_SPELL = 12665, -- learns ! UNCANNY_SENSATION = 12667, -- You are assaulted by an uncanny sensation. diff --git a/scripts/zones/Quicksand_Caves/IDs.lua b/scripts/zones/Quicksand_Caves/IDs.lua index 22606344fd9..adc10227a30 100644 --- a/scripts/zones/Quicksand_Caves/IDs.lua +++ b/scripts/zones/Quicksand_Caves/IDs.lua @@ -41,6 +41,7 @@ zones[xi.zone.QUICKSAND_CAVES] = NO_COMBINATION = 8292, -- You were unable to enter a combination. REGIME_REGISTERED = 10370, -- New training regime registered! HOMEPOINT_SET = 11432, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 11490, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Riverne-Site_A01/IDs.lua b/scripts/zones/Riverne-Site_A01/IDs.lua index 84d5bc74c18..24d53137a44 100644 --- a/scripts/zones/Riverne-Site_A01/IDs.lua +++ b/scripts/zones/Riverne-Site_A01/IDs.lua @@ -28,6 +28,7 @@ zones[xi.zone.RIVERNE_SITE_A01] = SPACE_SEEMS_DISTORTED = 7597, -- The space around you seems oddly distorted and disrupted. MONUMENT = 7604, -- Something has been engraved on this stone, but the message is too difficult to make out. HOMEPOINT_SET = 7732, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 7790, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Riverne-Site_B01/IDs.lua b/scripts/zones/Riverne-Site_B01/IDs.lua index 8c65e64ace7..be5656b5e4b 100644 --- a/scripts/zones/Riverne-Site_B01/IDs.lua +++ b/scripts/zones/Riverne-Site_B01/IDs.lua @@ -29,6 +29,7 @@ zones[xi.zone.RIVERNE_SITE_B01] = GROUND_GIVING_HEAT = 7603, -- The ground here is giving off heat. BAHAMUT_TAUNT = 7671, -- Children of Vana'diel, what do you think to accomplish by fighting for your lives? You know your efforts are futile, yet still you resist... HOMEPOINT_SET = 7707, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 7765, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/RoMaeve/IDs.lua b/scripts/zones/RoMaeve/IDs.lua index c273034d076..a30e0663889 100644 --- a/scripts/zones/RoMaeve/IDs.lua +++ b/scripts/zones/RoMaeve/IDs.lua @@ -32,6 +32,7 @@ zones[xi.zone.ROMAEVE] = PLAYER_OBTAINS_TEMP_ITEM = 7436, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7437, -- You already possess that temporary item. NO_COMBINATION = 7442, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7504, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9620, -- New training regime registered! COMMON_SENSE_SURVIVAL = 11630, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, diff --git a/scripts/zones/Rolanberry_Fields/IDs.lua b/scripts/zones/Rolanberry_Fields/IDs.lua index bed34e3a7c2..caac930583a 100644 --- a/scripts/zones/Rolanberry_Fields/IDs.lua +++ b/scripts/zones/Rolanberry_Fields/IDs.lua @@ -33,6 +33,7 @@ zones[xi.zone.ROLANBERRY_FIELDS] = ALREADY_POSSESS_TEMP = 7603, -- You already possess that temporary item. NO_COMBINATION = 7608, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 7639, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 7670, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9786, -- New training regime registered! VOIDWALKER_NO_MOB = 10959, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. VOIDWALKER_MOB_TOO_FAR = 10960, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. diff --git a/scripts/zones/Sauromugue_Champaign/IDs.lua b/scripts/zones/Sauromugue_Champaign/IDs.lua index d7c4037b77b..b83ed16898d 100644 --- a/scripts/zones/Sauromugue_Champaign/IDs.lua +++ b/scripts/zones/Sauromugue_Champaign/IDs.lua @@ -37,6 +37,7 @@ zones[xi.zone.SAUROMUGUE_CHAMPAIGN] = ALREADY_POSSESS_TEMP = 7519, -- You already possess that temporary item. NO_COMBINATION = 7524, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 7555, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 7586, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9825, -- New training regime registered! VOIDWALKER_NO_MOB = 10998, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. VOIDWALKER_MOB_TOO_FAR = 10999, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. diff --git a/scripts/zones/Sea_Serpent_Grotto/IDs.lua b/scripts/zones/Sea_Serpent_Grotto/IDs.lua index 188ba4e05a1..35a48837934 100644 --- a/scripts/zones/Sea_Serpent_Grotto/IDs.lua +++ b/scripts/zones/Sea_Serpent_Grotto/IDs.lua @@ -46,6 +46,7 @@ zones[xi.zone.SEA_SERPENT_GROTTO] = NO_COMBINATION = 7612, -- You were unable to enter a combination. REGIME_REGISTERED = 9690, -- New training regime registered! COMMON_SENSE_SURVIVAL = 10750, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 10830, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/South_Gustaberg/IDs.lua b/scripts/zones/South_Gustaberg/IDs.lua index 38678be4c23..01b02d733dc 100644 --- a/scripts/zones/South_Gustaberg/IDs.lua +++ b/scripts/zones/South_Gustaberg/IDs.lua @@ -39,6 +39,7 @@ zones[xi.zone.SOUTH_GUSTABERG] = PLAYER_OBTAINS_TEMP_ITEM = 7546, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7547, -- You already possess that temporary item. NO_COMBINATION = 7552, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7614, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9912, -- New training regime registered! }, mob = diff --git a/scripts/zones/Tahrongi_Canyon/IDs.lua b/scripts/zones/Tahrongi_Canyon/IDs.lua index 86ab8439cfd..65284744265 100644 --- a/scripts/zones/Tahrongi_Canyon/IDs.lua +++ b/scripts/zones/Tahrongi_Canyon/IDs.lua @@ -48,6 +48,7 @@ zones[xi.zone.TAHRONGI_CANYON] = ALREADY_POSSESS_TEMP = 7580, -- You already possess that temporary item. NO_COMBINATION = 7585, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 7616, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 7647, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9837, -- New training regime registered! VOIDWALKER_NO_MOB = 11010, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. VOIDWALKER_MOB_TOO_FAR = 11011, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. diff --git a/scripts/zones/Temple_of_Uggalepih/IDs.lua b/scripts/zones/Temple_of_Uggalepih/IDs.lua index 73472c3045e..adbdc8f1fa9 100644 --- a/scripts/zones/Temple_of_Uggalepih/IDs.lua +++ b/scripts/zones/Temple_of_Uggalepih/IDs.lua @@ -48,6 +48,7 @@ zones[xi.zone.TEMPLE_OF_UGGALEPIH] = NO_COMBINATION = 8453, -- You were unable to enter a combination. REGIME_REGISTERED = 10531, -- New training regime registered! COMMON_SENSE_SURVIVAL = 11591, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 11655, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/The_Boyahda_Tree/IDs.lua b/scripts/zones/The_Boyahda_Tree/IDs.lua index 625f9bd27fc..547ee06712a 100644 --- a/scripts/zones/The_Boyahda_Tree/IDs.lua +++ b/scripts/zones/The_Boyahda_Tree/IDs.lua @@ -36,6 +36,7 @@ zones[xi.zone.THE_BOYAHDA_TREE] = ALREADY_POSSESS_TEMP = 11399, -- You already possess that temporary item. NO_COMBINATION = 11404, -- You were unable to enter a combination. HOMEPOINT_SET = 11442, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 11500, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua b/scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua index ecc105d1d9a..5de300c003a 100644 --- a/scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua +++ b/scripts/zones/The_Sanctuary_of_ZiTah/IDs.lua @@ -52,6 +52,7 @@ zones[xi.zone.THE_SANCTUARY_OF_ZITAH] = PLAYER_OBTAINS_TEMP_ITEM = 8098, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 8099, -- You already possess that temporary item. NO_COMBINATION = 8104, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 8166, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10282, -- New training regime registered! COMMON_SENSE_SURVIVAL = 12271, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, diff --git a/scripts/zones/Uleguerand_Range/IDs.lua b/scripts/zones/Uleguerand_Range/IDs.lua index cd351a24353..a2eec1a76f0 100644 --- a/scripts/zones/Uleguerand_Range/IDs.lua +++ b/scripts/zones/Uleguerand_Range/IDs.lua @@ -26,6 +26,7 @@ zones[xi.zone.ULEGUERAND_RANGE] = WHAT_LIES_BENEATH = 7342, -- There are many cold scattered around the area. Could someone be trying to melt the ice to retrieve what lies beneath? SOMETHING_GLITTERING_BUT = 7343, -- You see something glittering below the surface here, but the ice encases it completely. HOMEPOINT_SET = 8335, -- Home point set! + UNITY_WANTED_BATTLE_INTERACT = 8393, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Valkurm_Dunes/IDs.lua b/scripts/zones/Valkurm_Dunes/IDs.lua index 8279c6cb80d..43ead20dade 100644 --- a/scripts/zones/Valkurm_Dunes/IDs.lua +++ b/scripts/zones/Valkurm_Dunes/IDs.lua @@ -44,6 +44,7 @@ zones[xi.zone.VALKURM_DUNES] = PLAYER_OBTAINS_TEMP_ITEM = 8095, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 8096, -- You already possess that temporary item. NO_COMBINATION = 8101, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 8163, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10279, -- New training regime registered! COMMON_SENSE_SURVIVAL = 12333, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, diff --git a/scripts/zones/Valley_of_Sorrows/IDs.lua b/scripts/zones/Valley_of_Sorrows/IDs.lua index d6102b37f17..bcf7d660426 100644 --- a/scripts/zones/Valley_of_Sorrows/IDs.lua +++ b/scripts/zones/Valley_of_Sorrows/IDs.lua @@ -30,6 +30,7 @@ zones[xi.zone.VALLEY_OF_SORROWS] = PLAYER_OBTAINS_TEMP_ITEM = 7508, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7509, -- You already possess that temporary item. NO_COMBINATION = 7514, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7576, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9692, -- New training regime registered! COMMON_SENSE_SURVIVAL = 10811, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, diff --git a/scripts/zones/Wajaom_Woodlands/IDs.lua b/scripts/zones/Wajaom_Woodlands/IDs.lua index 20f60baef98..32d95bb11a9 100644 --- a/scripts/zones/Wajaom_Woodlands/IDs.lua +++ b/scripts/zones/Wajaom_Woodlands/IDs.lua @@ -32,6 +32,7 @@ zones[xi.zone.WAJAOM_WOODLANDS] = PAMAMA_PEELS = 8494, -- Piles of pamama peels litter the ground... DRAWS_NEAR = 8520, -- Something draws near! COMMON_SENSE_SURVIVAL = 9638, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. + UNITY_WANTED_BATTLE_INTERACT = 9702, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] }, mob = { diff --git a/scripts/zones/Western_Altepa_Desert/IDs.lua b/scripts/zones/Western_Altepa_Desert/IDs.lua index a5a844ef33e..02352bf6c6e 100644 --- a/scripts/zones/Western_Altepa_Desert/IDs.lua +++ b/scripts/zones/Western_Altepa_Desert/IDs.lua @@ -44,6 +44,7 @@ zones[xi.zone.WESTERN_ALTEPA_DESERT] = PLAYER_OBTAINS_TEMP_ITEM = 7649, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7650, -- You already possess that temporary item. NO_COMBINATION = 7655, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7717, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 9833, -- New training regime registered! COMMON_SENSE_SURVIVAL = 11822, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, diff --git a/scripts/zones/Xarcabard/IDs.lua b/scripts/zones/Xarcabard/IDs.lua index c686aa2c663..d9c38944cb3 100644 --- a/scripts/zones/Xarcabard/IDs.lua +++ b/scripts/zones/Xarcabard/IDs.lua @@ -39,6 +39,7 @@ zones[xi.zone.XARCABARD] = ALREADY_POSSESS_TEMP = 8182, -- You already possess that temporary item. NO_COMBINATION = 8187, -- You were unable to enter a combination. VOIDWALKER_DESPAWN = 8218, -- The monster fades before your eyes, a look of disappointment on its face. + UNITY_WANTED_BATTLE_INTERACT = 8249, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10365, -- New training regime registered! VOIDWALKER_NO_MOB = 11484, -- The quivers ever so slightly, but emits no light. There seem to be no monsters in the area. VOIDWALKER_MOB_TOO_FAR = 11485, -- The quivers ever so slightly and emits a faint light. There seem to be no monsters in the immediate vicinity. diff --git a/scripts/zones/Yhoator_Jungle/IDs.lua b/scripts/zones/Yhoator_Jungle/IDs.lua index 46b0c5aeec6..4b3ac5949d8 100644 --- a/scripts/zones/Yhoator_Jungle/IDs.lua +++ b/scripts/zones/Yhoator_Jungle/IDs.lua @@ -42,6 +42,7 @@ zones[xi.zone.YHOATOR_JUNGLE] = PLAYER_OBTAINS_TEMP_ITEM = 7832, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7833, -- You already possess that temporary item. NO_COMBINATION = 7838, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7900, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10016, -- New training regime registered! COMMON_SENSE_SURVIVAL = 11135, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. }, diff --git a/scripts/zones/Yuhtunga_Jungle/IDs.lua b/scripts/zones/Yuhtunga_Jungle/IDs.lua index 257f40664e0..92db3b11a9a 100644 --- a/scripts/zones/Yuhtunga_Jungle/IDs.lua +++ b/scripts/zones/Yuhtunga_Jungle/IDs.lua @@ -51,6 +51,7 @@ zones[xi.zone.YUHTUNGA_JUNGLE] = PLAYER_OBTAINS_TEMP_ITEM = 7881, -- obtains the temporary item: ! ALREADY_POSSESS_TEMP = 7882, -- You already possess that temporary item. NO_COMBINATION = 7887, -- You were unable to enter a combination. + UNITY_WANTED_BATTLE_INTERACT = 7949, -- Those who have accepted % must pay # Unity accolades to participate. The content for this Wanted battle is #. [Ready to begin?/You do not have the appropriate object set, so your rewards will be limited.] REGIME_REGISTERED = 10065, -- New training regime registered! COMMON_SENSE_SURVIVAL = 12059, -- It appears that you have arrived at a new survival guide provided by the Adventurers' Mutual Aid Network. Common sense dictates that you should now be able to teleport here from similar tomes throughout the world. },