- Joined
- Dec 5, 2021
- Messages
- 27
- Reaction score
- 12
- First Language
- Japan
- Primarily Uses
- RMMV
Hello everyone!
I done my own day/night system on my global map and it work perfectly. The problem is, that if I change interior for other like I go inside house, all day/night system reset
I’m not so good by this scripts and events. I was thinking about „universal time” for all areas in game indoor and outdoor. I have no idea how to „set” this. I was looking for a plugins, but they are not better then mine. All the time is a same problem. You go inside house, time begin at 0:00. You go outside, same. I have no idea how to „save” same time between House indoor and global map. It will be perfect when this nubers are same and work like it should be. I tryed with variables, but if I leave house, time back to „noon” time. I tryed skipp time +8h if player go sleep, with no success
I tryed with visual effect like timer, but it work funny. How to set max 24h? No idea. Ok, let’s see how do i do it:
Guys can you tell me, how to do this? I’m sure it is possible.
I done my own day/night system on my global map and it work perfectly. The problem is, that if I change interior for other like I go inside house, all day/night system reset
I’m not so good by this scripts and events. I was thinking about „universal time” for all areas in game indoor and outdoor. I have no idea how to „set” this. I was looking for a plugins, but they are not better then mine. All the time is a same problem. You go inside house, time begin at 0:00. You go outside, same. I have no idea how to „save” same time between House indoor and global map. It will be perfect when this nubers are same and work like it should be. I tryed with variables, but if I leave house, time back to „noon” time. I tryed skipp time +8h if player go sleep, with no success
// time is a day
//
//global map: it’s a beginning map;
variable: time=0
variable: Hours=0
variable: Min=0
erese event
if variable:Min=60
then variable:Hours+1
if variable:Hours=24
then variable:time+1
wait(900)
set variable:Min+1
wait(300)
set: parallel_process
//
//global map: it’s a beginning map;
variable: time=0
variable: Hours=0
variable: Min=0
erese event
if variable:Min=60
then variable:Hours+1
if variable:Hours=24
then variable:time+1
wait(900)
set variable:Min+1
wait(300)
set: parallel_process