single-screen maps with automatic movement between them - April 29, 2016
Creator name: Ben Hendel-Doying
Features
single-screen maps with automatic movement between them
Allow for the automatic movement of the party between maps simply by walking to the edge, without the need to create ANY events on any map.
BUT: it's required that all maps be only one screen in size. (it should be easy to remove this limitation, though I have not tried it.)
think "Legend of Zelda" for the NES.
a "note tag" must be added to each map, telling that map which maps to link to, in the north, east, south, and west directions. the note tag takes this form:
Code:
- <dir: NORTH EAST SOUTH WEST>
复制代码
where NORTH, EAST, SOUTH, and WEST should be replaced with the IDs of the maps to link to, or 0 if no automatic linking is desired. (leave out the note tag entirely for no automatic linking at all.)
for example, here are the IDs and note tags of 6 hypothetical maps, arranged in a 3x2 grid:
Code:
- +----------------+----------------+----------------+
- | MAP ID 1 | MAP ID 2 | MAP ID 3 |
- | | | |
- | <dir: 0 2 4 0> | <dir: 0 3 5 1> | <dir: 0 0 6 2> |
- +----------------+----------------+----------------+
- | MAP ID 4 | MAP ID 5 | MAP ID 6 |
- | | | |
- | <dir: 1 5 0 0> | <dir: 2 6 0 4> | <dir: 3 0 0 5> |
- +----------------+----------------+----------------+
复制代码
these scripts assume you are happy with a window size of 640x360, and maps of 22x13. (this is also changeable, with a little math and some tweaks to the code.)
Note: right-click on your map name for map properties and change the width to 22.
to see it all in action, along with a full explanation of the code, check this YouTube video:
https://www.youtube.com/embed/Qj3wQSLuS3w
How to Use
Paste this script above Main.
Script
License- Public Domain
本贴来自国际rpgmaker官方论坛作者:ovate处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:
https://forums.rpgmakerweb.com/threads/loz-single-screen-maps-transition-640x360.116629/