Log In  


I'm building an RPG and I'm using the in-cart map tool, but obviously I can't see or edit the whole map at once. had anybody built an external map viewer/exporter? I obviously love the charm of working inside the fantasy console, but for dev I'd like to see my whole world on one screen (not to mention include it as a handout for players maybe!)

2


Bump. This would make life so much easier!


Even just something that printed out a map-sized JPG is all I need!!


Hmm ... here is a temporary fix I can write.

function showmap()
  cls()
  for i=0,127 do
    for j=0,127 do
      c=mget(j,i)
      if (c>0) c=(c%15)+1
      pset(j,i,c)
    end
  end
end

Shows entire map 128x128 ... if it covers that far.

I might be able to write a better tool in Blitz. What size map did you need converted to JPG ?


DING !

I wrote what you requested. I think it will be helpful for our company Sorcery as well ...

https://www.lexaloffle.com/bbs/?tid=36524

If you have any further suggestions that may help you, please let me know and I'll see what I can do. :)



[Please log in to post a comment]