[Question] Path Finding

05/12/2020 02:00 littlechris95#1
Hello friends

I have a small problem ... I would like to disable the use of `Path Finding` on a certain map, but I have been testing and researching but I have not found any packet related to this action. Can anybody help me?

Image

05/12/2020 03:23 dR. [d3V][GM][PR0] 39YP7#2
I don't think there's pathfinding in Conquer Online? I mean just moves in the direction until it hits an obstacle or reaches the destination position
could be wrong only seen pathfinding rarely used in these emulators
05/12/2020 04:01 Spirited#3
Pathfinding is a client feature. MapDestination.dat, I believe?
05/13/2020 00:12 littlechris95#4
Quote:
Originally Posted by Spirited View Post
Pathfinding is a client feature. MapDestination.dat, I believe?
I decrypted the file, it contains information maps, npcs and coordinates. In fact I wanted to block the use of this function on the server side, since I can start this feature by sending a package to the client.

To start:

Now to block-it is where I am having trouble solving...
05/13/2020 04:38 pintinho12#5
Quote:
Originally Posted by littlechris95 View Post
I decrypted the file, it contains information maps, npcs and coordinates. In fact I wanted to block the use of this function on the server side, since I can start this feature by sending a package to the client.

To start:

Now to block-it is where I am having trouble solving...
ty for the info tho
05/13/2020 06:49 Spirited#6
Quote:
Originally Posted by littlechris95 View Post
I decrypted the file, it contains information maps, npcs and coordinates. In fact I wanted to block the use of this function on the server side, since I can start this feature by sending a package to the client.

To start:

Now to block-it is where I am having trouble solving...
The server can make you do pathfinding, but the client sided pathfinding menu does pathfinding on the client side. The registered destination points should be in a file in the client. If you want to prevent clients from using pathfinding on a map, you have to delete the destinations from that file.
05/15/2020 07:34 -impulse-#7
Quote:
Originally Posted by Spirited View Post
The server can make you do pathfinding, but the client sided pathfinding menu does pathfinding on the client side. The registered destination points should be in a file in the client. If you want to prevent clients from using pathfinding on a map, you have to delete the destinations from that file.
Isn't there a map flag for something like this as well? Either that or it is entirely based on MapDestination.dat with dmap id and not the base map id (I am specifying this because someone might remove the pathfinding for the wrong map id).
05/16/2020 00:23 littlechris95#8
Quote:
Originally Posted by -impulse- View Post
Isn't there a map flag for something like this as well? Either that or it is entirely based on MapDestination.dat with dmap id and not the base map id (I am specifying this because someone might remove the pathfinding for the wrong map id).
That's what I thought, the problem is this Path Finding option, you can select in MiniMap, any coordinate that will take the player there and nothing will be sent to the server other than the Data: Jump package. :rtfm: