I am making a dungeon that has 2 entrance, one entrance only appear at morning, and the other at night. (The entrance is using regular field warps)
(So I am guessing it will be using the OnClock function.)
(Day starts after 01:00)
(Night starts at 20:00)
OnInit:
if (Time is > 20:00 or Time < 01:00) {
// Enable night field warp.
} else {
// Enable day field warp.
}
end;
OnClock2000: //On 8 PM
// Enable night field warps.
// Disable day field warp.
end;
OnClock0100: //on 1 AM
// Disable night field warp
// Enable day field warp
I get the main Idea, but how do I put these into script?
Thanks Brian for editing! (I am not sure why my Mozilla browser failed to post the original post with the tags.)
Question
Venture
I am making a dungeon that has 2 entrance, one entrance only appear at morning, and the other at night. (The entrance is using regular field warps)
(So I am guessing it will be using the OnClock function.)
(Day starts after 01:00)
(Night starts at 20:00)
I get the main Idea, but how do I put these into script?
Thanks Brian for editing! (I am not sure why my Mozilla browser failed to post the original post with the tags.)
Edited by gekigengaradded [code] tags
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.