L2JMobius

The Kamael Missing teleport to Ruins of Despair - classic

AnsS · 2 · 4307

Offline AnsS

  • Heir
  • **
    • Posts: 37
Missing teleport option to Ruins of Despair.
I have found in HuntingZone_Classic-eu.dat.
Code: [Select]
Hunt_begin id=31 type=1 rc_level={17;24} loc={-17158.0;140933.0;-3762.0} desc=[Roston village used to be in this place. Along with Bernice village, Roston village was one of the largest farming villages in the continent. But it lost most of the lands during the war of Beleth and the remaining lands during the war of Gracia. Now, only Undead are wandering in this area.] search_zoneid=30 name=[Ruins of Despair] regionid=33 npc_id=0 quest_id={} instantzone_id=0 Hunt_endSo the ID is 31!

Modify teleportlist_Classic.dat file in system folder, add the following:

Code: [Select]
teleport_list_begin huntingzone_id=31 town_id=37 price=500 priority=6 teleport_list_end

Server side:

Code: [Select]
---
 dist/game/data/TeleportListData.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dist/game/data/TeleportListData.xml b/dist/game/data/TeleportListData.xml
index 29f2553..85f63f4 100644
--- a/dist/game/data/TeleportListData.xml
+++ b/dist/game/data/TeleportListData.xml
@@ -14,6 +14,7 @@
  <teleport id="24" x="47935" y="186810" z="-3480" price="3000" /> <!-- Giran Harbor -->
  <teleport id="25" x="83386" y="148014" z="-3400" price="22500" /> <!-- Town of Giran -->
  <teleport id="29" x="102369" y="137818" z="-3328" price="1650" /> <!-- Gorgon Flower Garden -->
+ <teleport id="31" x="-17158" y="140933" z="-3762" price="500" /> <!-- Ruins of Despair -->
  <teleport id="32" x="-41137" y="122778" z="-2912" price="500" /> <!-- Ruins of Agony -->
  <teleport id="34" x="-9970" y="175793" z="-4128" price="1650" /> <!-- Ant Nest -->
  <teleport id="35" x="-80684" y="149770" z="-3040" price="11200" /> <!-- Gludin Village -->
--