Wow it has been a few minutes since I posted on here, been on BlueSky a lot recently...
Have been working on #picotron a lot recently as well. Going to start sharing tidbits I learned, if I remember.
If you want to load a new map "on the fly" it is actually rather easy -- you just need to pass in the other map's bitmap to the first argument of map()
```
map_1 = fetch("map/1.map")
mm = my_object_with_info
map(map_1[1].bmp,mm.celx,mm.cely,mm.sx,mm.sy,mm.celw,mm.celh)
```





