I have a custom server for an MMORPG that I’m working on. My problem is that I need to develop some kind of method to let the server know where AI is able to walk, attack, etc. The problem is that the server currently just assumes they can walk anywhere and attack no matter the situation. Which leads to monsters walking through walls or casting spells through walls (or other things of this nature).
So my question is, is there anyway to export map data (where collisions would happen, where objects are located, walls, etc) into a text file so that my server can load the file and use it as a reference for these things?
Are there any guides, articles, or other source material I could look at to help my through this process?