L2JMobius

Problem with geodata (cannot see target)

tinieblas · 5 · 6700

Offline tinieblas

  • Vassal
  • *
    • Posts: 4
I have a problem with all geodata i try, cannot see target on lot of mobs, i want solve or buy any solve for this fast plis, if someone have solution


Offline SonnySoprano

  • Heir
  • **
    • Posts: 10
I have the same problem. The character does not see many goals.
GeoData: L2J_Mobius_C6_Interlude_Geodata
I'm using: jdk-15.0.2
Standard settings: GeoEngine.ini
I use: -Xmx4g -Xms2g
Game client clean



Online Mobius

  • Distinguished King
  • *****
    • Posts: 16011
Try this.
Code: [Select]
Index: java/org/l2jmobius/gameserver/geoengine/GeoEngine.java
===================================================================
--- java/org/l2jmobius/gameserver/geoengine/GeoEngine.java (revision 9585)
+++ java/org/l2jmobius/gameserver/geoengine/GeoEngine.java (working copy)
@@ -645,7 +645,7 @@
  int z = block.getHeight(index);
 
  // Perform sine of sight check (next cell is above line of sight line), return fail.
- if (z > losz)
+ if (!canMove && (z > losz))
  {
  return false;
  }