Sisteminha simples DIA/NOITE no RPG MAKER
Com este sistema é fácil aplicar a todos os eventos do mapa e deixar a criatividade rolar.
Script
$gameMap.events().forEach(function(event) {
event.refresh();
});
Se puder de uma força e se inscreva no canal.
Vídeo super rápido mostrando como funciona no canal
https://youtu.be/fk5CzaTB8qk
evento paralelo abaixo
◆If:DAY is ON
◆Tint Screen:(0,0,0,0), 120 frames (Wait)
◆Text:None, Window, Bottom
: :DAY
◆Wait:300 frames
◆Control Switches:#0001 DAY = OFF
◆Script: $gameMap.events().forEach(function(event) {
: : event.refresh();
: : });
◆
:Else
◆Tint Screen:(-136,-119,-102,34), 120 frames (Wait)
◆Text:None, Window, Bottom
: :NIGHT
◆Wait:300 frames
◆Control Switches:#0001 DAY = ON
◆Script: $gameMap.events().forEach(function(event) {
: : event.refresh();
: : });
◆
:End
Nenhum comentário ainda.