Help converting an event from FES to MV?

● ARCHIVED · READ-ONLY
Started by JtheDuelist 1 posts View original ↗
  1. I have this time system in RPG Maker FES I want to transfer to MV, but need help doing so and some help would be nice.

    The system comes in two events- the first which simply starts the system once and only once:

    The FES event that starts the system (event is autorun):
    Code:
    Display Variable on Top: "Days Passed"
    Timer Settings: 24m 00s
    Change Timer: +6m00s
    Start Count
    Increase Variable: "Time Shift" +1
    Turn Switch: "System Start" ON

    Now the event for the system itself is this

    Page: 1
    Code:
    *nothing at all*
    Page: 2 (autorun- page conditions: Timer≥06m00s and Variable "Time Shift" ≥ 1)
    Code:
    SFX: Chicken 100%
    Change Screen: Make Sepia Instant
    Flash
    Increase Variable: "Time Shift" +1
    Page: 3 (character talk- page conditions: Variable "Time Shift" ≥ 2
    Code:
    *nothing at all*
    Page: 4 (autorun- page conditions: Timer≥08m00s and Variable "Time Shift" ≥ 2)
    Code:
    Change Screen: Revert to original Normal
    Increase Variable: "Time Shift" +1
    Page: 5 (character talk- page conditions: Variable "Time Shift" ≥ 3)
    Code:
    *nothing at all*
    Page: 6 (autorun- page conditions: Timer≥18m00s and Variable "Time Shift" ≥ 3)
    Code:
    Change Screen: Darken Slow
    Increase Variable: "Time Shift" +1
    Page: 7 (character talk- page conditions: Variable "Time Shift" ≥ 4)
    Code:
    *nothing at all*
    Page: 8 (autorun- page conditions: Timer≥24m00s and Variable "Time Shift" ≥4)
    Code:
    Set Variable: "Time Shift" to 1
    SFX: Bell 100%
    Change Timer: -23m00s
    Increase Variable: "Days Passed" +1
    Page: 9 (character talk- page conditions: none)
    Code:
    *nothing at all*