I am developing script, which does some things in online game with TCP sockets. I have only map size, starting X and Y and coordinates where i must go. I need to set X and Y every ms, let's imagine that character's speed is 1 tile/ms. How can i easily do this?
Depending on whether you can "see" the entire map or not, you'll need to implement either a pathfinding algorithm or maze solving algorithm.