Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to Fix Fall Damage in Manaya's Core Hard

Joined
Mar 29, 2019
Messages
1,032
Reaction score
1,191
For those people who want to revamp and put on Manaya's Core Hard on their pvt servers, here's a fix for falling damage (without it you will die when jump into the holes in your way to the plexus)

Open DungeonData_9027.xml and insert into the line 1011

Code:
  <!-- Fall damage immunity  -->
  <EventGroup type="enterTerritory" uniqueId="427,42700188" repeat="true">
    <Event>
      <EventTaskGroup>
        <EventTask type="abnormality" abnormalityId="99070035" target="player" next="none" />
      </EventTaskGroup>
    </Event>
  </EventGroup>
  <EventGroup type="enterTerritory" uniqueId="427,42700189" repeat="true">
    <Event>
      <EventTaskGroup>
        <EventTask type="abnormality" abnormalityId="99070035" target="player" next="none" />
      </EventTaskGroup>
    </Event>
  </EventGroup>

Archgeus - How to Fix Fall Damage in Manaya's Core Hard - RaGEZONE Forums


Open TerritoryData_427.xml and insert into the line 3886

Code:
 <TerritoryGroup id="42700022" desc="Fall damage immunity">
  <TerritoryList>
   <Territory id="42700188" desc="1st fall" type="quest" addMaxZ="20.000000" subtractMinZ="230.000000" randomPosMinDist="100.000000" peaceMoveNpcCheckDist="100.000000" eventId="0">
    <Fence pos="-4372.3394,97955.2109,-10721.0293"/>
    <Fence pos="-4091.8508,97695.3750,-10720.0029"/>
    <Fence pos="-4084.7815,97679.2188,-10717.1250"/>
    <Fence pos="-4095.2363,97664.9922,-10727.5557"/>
    <Fence pos="-4149.6597,97567.7266,-10699.7471"/>
    <Fence pos="-4133.0464,97516.9063,-10694.1563"/>
    <Fence pos="-4070.5483,97402.6563,-10692.9150"/>
    <Fence pos="-4005.6367,97341.0938,-10691.0342"/>
    <Fence pos="-3944.3157,97300.9922,-10684.7129"/>
    <Fence pos="-3832.2734,97264.0781,-10677.7813"/>
    <Fence pos="-3728.5940,97261.1484,-10692.2832"/>
    <Fence pos="-3657.9548,97275.2500,-10696.3438"/>
    <Fence pos="-3617.0735,97290.3203,-10690.7344"/>
    <Fence pos="-3510.9712,97359.8047,-10700.4922"/>
    <Fence pos="-3441.3052,97443.9219,-10719.2969"/>
    <Fence pos="-3388.9895,97683.0156,-10643.9531"/>
    <Fence pos="-3470.5681,97882.9375,-10721.0615"/>
    <Fence pos="-3611.7205,98030.7578,-10602.2461"/>
    <Fence pos="-3780.0708,98028.0547,-10700.7070"/>
    <Fence pos="-3974.7280,97904.7578,-10721.0020"/>
    <Fence pos="-4036.5061,97966.9844,-10721.0586"/>
    <Fence pos="-4142.7993,98051.4375,-10721.0537"/>
    <Fence pos="-4244.5186,98149.1641,-10721.0781"/>
    <Fence pos="-4286.8618,98130.1250,-10713.7139"/>
    <Fence pos="-4383.1265,98004.5391,-10715.1924"/>
   </Territory>
   <Territory id="42700189" desc="2nd Fall" type="quest" addMaxZ="20.000000" subtractMinZ="230.000000" randomPosMinDist="100.000000" peaceMoveNpcCheckDist="100.000000" eventId="0">
    <Fence pos="-3398.8240,96921.8672,-14011.7256"/>
    <Fence pos="-3521.7551,96314.5313,-14118.6064"/>
    <Fence pos="-4032.3430,95783.2813,-13969.4639"/>
    <Fence pos="-4064.0647,95170.0547,-14091.4541"/>
    <Fence pos="-3606.5503,94680.8984,-13865.8193"/>
    <Fence pos="-3516.1267,94590.4922,-13976.8438"/>
    <Fence pos="-2885.9766,94763.4609,-13832.5586"/>
    <Fence pos="-2770.7766,94878.6328,-13852.8301"/>
    <Fence pos="-2603.2234,94903.9609,-14109.4268"/>
    <Fence pos="-2336.6208,95242.3359,-13989.1807"/>
    <Fence pos="-2333.5984,95638.4453,-14098.5742"/>
    <Fence pos="-2563.4133,95744.4844,-14116.7334"/>
    <Fence pos="-2748.4500,95902.0000,-14095.2090"/>
    <Fence pos="-2933.6121,96202.7578,-14109.3145"/>
    <Fence pos="-3134.7305,96968.5234,-14009.7266"/>
   </Territory>
  </TerritoryList>
  <BerserkAi working="false" duration="0" berserkRate="0.000000" combatRatioDiffToBerserk="0.000000"/>
  <BlastRegenAi working="false" checkType="time" intervalToBlastRegen="0" spawnedRatioToBlastRegen="0.000000"/>
  <DoorAiList/>
  <RespawnTimeAi working="false" combatRateToReduceRespawnTime="0.000000" respawnReduceTime="0.000000" duration="0"/>
  <SpawnNewNpcAi working="false" npcDeadCount="0" duration="0"/>
    </TerritoryGroup>

Archgeus - How to Fix Fall Damage in Manaya's Core Hard - RaGEZONE Forums


Enjoy :D:
 
Last edited:
Back
Top