How can I save a map? - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Games Development (https://www.save-point.org/forum-4.html) +--- Forum: Code Support (https://www.save-point.org/forum-20.html) +--- Thread: How can I save a map? (/thread-2201.html) |
How can I save a map? - Charlie Fleed - 07-05-2009 I generally try to solve this kind of problems by myself but I'm tired from the hours of work on the Dungeon Generator (yes, a dungeon generator, more on that in the future) and so here I am asking how can I save a map that has been dinamically generated (with the DG) within a project. It looks like save_data does not work... I tried but when I closed and reopened the project I found a blank map... help How can I save a map? - dacloudster - 07-05-2009 Sounds like the DG just create's a limted dungen that just goes off the script data And can't really be saved properly because it has not been made by you'rself How can I save a map? - Charlie Fleed - 07-05-2009 Thanks for your attention, I think I solved it. I was trying to save the $game_map object, which is a Game_Map, instead of its attribute, @map, which is an RPG_Map and it is what is saved in all the *.rxdata files. Now it works. How can I save a map? - dacloudster - 07-08-2009 Great work if you got it working Grazt |