x13th Posted September 15, 2017 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 206 Reputation: 14 Joined: 11/20/11 Last Seen: April 9, 2024 Share Posted September 15, 2017 (edited) Good day everyone. Can someone help me with this? Calculate the shortest route between two points in a map and return all the coordinates? For example in prontera: (156,191) to (224,131) it will return coordinates of the shortest route to reach 224, 131 The idea is like a bot walking from x1,y1 to x2,y2. I don't know which algorithm to use and I'm new to C. Thank you in advance. Edit: I found this repo: https://github.com/Henrybk/Openkore-Pathfinding/blob/master/Pathfinding.c Edited September 15, 2017 by x13th Quote Link to comment Share on other sites More sharing options...
0 benching Posted September 15, 2017 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 350 Reputation: 43 Joined: 09/07/12 Last Seen: August 30, 2019 Share Posted September 15, 2017 Not related answer, just wanna let you know, This path finding algorith will be a huge pain if the calculations are handled by the server, you need to do this on client side via modding the client or 3rd party, Quote Link to comment Share on other sites More sharing options...
0 x13th Posted September 17, 2017 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 206 Reputation: 14 Joined: 11/20/11 Last Seen: April 9, 2024 Author Share Posted September 17, 2017 On 9/15/2017 at 7:59 PM, benching said: Not related answer, just wanna let you know, This path finding algorith will be a huge pain if the calculations are handled by the server, you need to do this on client side via modding the client or 3rd party, Hmm. I already got the solution and its working, although I havent tested it with many users in the server. Thanks! Quote Link to comment Share on other sites More sharing options...
Question
x13th
Good day everyone. Can someone help me with this? Calculate the shortest route between two points in a map and return all the coordinates?
For example in prontera: (156,191) to (224,131) it will return coordinates of the shortest route to reach 224, 131
The idea is like a bot walking from x1,y1 to x2,y2. I don't know which algorithm to use and I'm new to C. Thank you in advance.
Edit: I found this repo: https://github.com/Henrybk/Openkore-Pathfinding/blob/master/Pathfinding.c
Edited by x13thLink to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.