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!)

P#71853 2020-01-10 06:41

Bump. This would make life so much easier!

P#71859 2020-01-10 18:10

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

P#71862 2020-01-10 19:13

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 ?

P#71882 2020-01-12 21:26 ( Edited 2020-01-12 21:34)

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. :)

P#71985 2020-01-16 03:01 ( Edited 2020-01-16 03:10)

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 16:32:17 | 0.006s | Q:15