GetMapDataPath(void)
Returns the internal map files path. It has one use which makes referring to the map files clear and easy.
For example:
path = GetMapDataPath();
MessageBox (path..“Begin.txt”);
Let’s assign data path to our varriable ‘path’ so that now we can refer to map text files with a short syntax using [..] operator to glue data path with filename instead of using copy/paste over and over again, also risking misspell occurence.