Looking for a way to event days/months/years and calendar season system.

PoniMeiMei

Veteran
Veteran
Joined
Sep 29, 2021
Messages
97
Reaction score
22
First Language
english
Primarily Uses
RMVXA
So i ported my Rune seasons project over to MV, and im curious if anyone knows of a event way to make this happen?
There probably is, im just slow is all,

What im looking for:

Seasons, only to allow certain veggies grow in certain seasons.
Calendar (a whole year process) to have events happen over the course of the year

the reason i am asking because ive had to go from using old scripts from vx ace to using plugins.
so all of the scripts i had are now null. any help will be appreciated!

plugins i have :
galvs tools
galvs simple crops
galvs message busts
foxactionskills
 

Vuono87

Veteran
Veteran
Joined
Feb 5, 2014
Messages
73
Reaction score
55
First Language
English
Primarily Uses
RMMZ
you should check out caz's cookie cutter series https://cazwolf.itch.io/ all done with events and easily modifiable to suit your needs
 

Andar

Veteran
Veteran
Joined
Mar 5, 2013
Messages
38,473
Reaction score
10,894
First Language
German
Primarily Uses
RMMV
Do you want that time to be automatic or controlled?

Usually for farming simulations time is controlled (only advance a day by actions or on signal), while in RPGs time is automatically counting hours.

Both is possible, but require extremely different approaches
 

ZombieKidzRule

My Zombie Kids ate your RM project.
Veteran
Joined
Jan 9, 2022
Messages
986
Reaction score
1,383
First Language
English
Primarily Uses
RMMZ
I'm not sure if this will help, but I believe something similar was done as an Eventing Duel hosted by @JohnDoeNews . Here is a link to that thread.



I believe some of the submitted projects were built in MV, but I could be wrong. The thread contains projects that can be downloaded so you can play test them to see how they work and how they were built.

But these were 100% Evented. No plugins, if I recall correctly.

I hope this might be helpful in some way.
 

Sacrifyx

Veteran
Veteran
Joined
Oct 16, 2012
Messages
259
Reaction score
54
First Language
English
Primarily Uses
RMMV
I use Mog's time system plugin (https://mogplugins.wordpress.com/rpg-maker-mv/), it automates seconds/minutes/hours/days/weeks/months/years and you can configure seasons in it as well. Use it with the time system HUD to have an onscreen clock that displays time, day and month.
 

JohnDoeNews

Mod on Steam (MV/MZ)
Veteran
Joined
Apr 25, 2017
Messages
1,693
Reaction score
1,246
First Language
Dutch
Primarily Uses
RMMV
Try my clock and calendar workshop tutorial for MV.
https://johndoenews.itch.io/clock-and-calendar-workshop

It doesn't only have a complete set up (seasons, exact dates, weather, breakfast, lunch, dinner, hunger, fatique etc etc etc) which you can just copy and paste... But it also teaches you how to create this yourself.
 

PoniMeiMei

Veteran
Veteran
Joined
Sep 29, 2021
Messages
97
Reaction score
22
First Language
english
Primarily Uses
RMVXA
i want to thank all of you for suggestions! I appreciate it a lot! I went ahead and looking into MOGs Time system,
Now, Another question how would i go about making a stamina bar, like for farming actions, fishing and and animal care actions? and have it displayed on the screen?

EDIT:
i have made my own, funny enough after a whole day of tutorials , but now the bar does not shrink , instead it does this (look at new attached file)
 

Attachments

  • 1679896620834.png
    1679896620834.png
    5.3 KB · Views: 5
Last edited:

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
8,875
Reaction score
6,677
First Language
English
Primarily Uses
RMMV
What the gauge looks like isn't useful by itself. You need to post a screenshot of the code that's displaying the gauge.

And if you followed tutorials to create it instead of making the logic yourself, you should link that also.
 

PoniMeiMei

Veteran
Veteran
Joined
Sep 29, 2021
Messages
97
Reaction score
22
First Language
english
Primarily Uses
RMVXA
It was a text tutorial someone made in a discord server. so i kinda cant link that, but the syntax i used was this :


Code:
$gameScreen.movePicture(id, origin, x, y, scaleX, scaleY, opacity, blend, duration)
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
8,875
Reaction score
6,677
First Language
English
Primarily Uses
RMMV
Code:
$gameScreen.movePicture(id, origin, x, y, scaleX, scaleY, opacity, blend, duration)
That one line of code doesn't mean anything. Are you using one of your plugins to create the gauge? If so, please say which one and provide a link to it.

If it's code that you wrote or got from a tutorial, please post the entire function. None of that provides helpful information if we can't see how you calculated the scaleX and Y, what the picture file itself is like, etc.
 

Elisha_Allbright

Villager
Member
Joined
Jan 13, 2021
Messages
27
Reaction score
9
First Language
English
Primarily Uses
RMMZ
It was a text tutorial someone made in a discord server. so i kinda cant link that, but the syntax i used was this :


Code:
$gameScreen.movePicture(id, origin, x, y, scaleX, scaleY, opacity, blend, duration)
You know, if you have the Stamina value stored in a variable, you can try using SRD's HUD Maker to create a stamina gauge for you.

You may need to also install SRD Super Tools Engine for this too.
 

PoniMeiMei

Veteran
Veteran
Joined
Sep 29, 2021
Messages
97
Reaction score
22
First Language
english
Primarily Uses
RMVXA
That one line of code doesn't mean anything. Are you using one of your plugins to create the gauge? If so, please say which one and provide a link to it.

If it's code that you wrote or got from a tutorial, please post the entire function. None of that provides helpful information if we can't see how you calculated the scaleX and Y, what the picture file itself is like, etc.
no, i did not use any plugins. and that was the only thing i got from the person who did the instructions.
You know, if you have the Stamina value stored in a variable, you can try using SRD's HUD Maker to create a stamina gauge for you.

You may need to also install SRD Super Tools Engine for this too.
Oh! that may be useful! thank you! ill give it a try and see if its what i need!
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
8,875
Reaction score
6,677
First Language
English
Primarily Uses
RMMV
no, i did not use any plugins. and that was the only thing i got from the person who did the instructions.
That...doesn't really make sense. Where do you have that code typed? If you literally copied that text and pasted it into a Script command by itself in an event, your game would crash with errors because of the undefined variables.

Well, good luck with your project.
 

PoniMeiMei

Veteran
Veteran
Joined
Sep 29, 2021
Messages
97
Reaction score
22
First Language
english
Primarily Uses
RMVXA
That...doesn't really make sense. Where do you have that code typed? If you literally copied that text and pasted it into a Script command by itself in an event, your game would crash with errors because of the undefined variables.

Well, good luck with your project.
i DID edit it, you dont even ask what i did to the code. i only followed the instructions i was given.
 

JohnDoeNews

Mod on Steam (MV/MZ)
Veteran
Joined
Apr 25, 2017
Messages
1,693
Reaction score
1,246
First Language
Dutch
Primarily Uses
RMMV
It was a text tutorial someone made in a discord server. so i kinda cant link that, but the syntax i used was this :


Code:
$gameScreen.movePicture(id, origin, x, y, scaleX, scaleY, opacity, blend, duration)
This is a script call... But if you copy/paste it just like that in a script call, then nothing happens or it might crash.

You need to replace:
id
origin
x
y
scaleX
scaleY
blend
duration

those need to be replaced with values. So it would look more like this:
Code:
$gameScreen.movePicture(1, 1, 408, 312, 100, 100, 255, 0, 60)
 

PoniMeiMei

Veteran
Veteran
Joined
Sep 29, 2021
Messages
97
Reaction score
22
First Language
english
Primarily Uses
RMVXA
This is a script call... But if you copy/paste it just like that in a script call, then nothing happens or it might crash.

You need to replace:
id
origin
x
y
scaleX
scaleY
blend
duration

those need to be replaced with values. So it would look more like this:
Code:
$gameScreen.movePicture(1, 1, 408, 312, 100, 100, 255, 0, 60)
i did! lol, i just dont know why the hud is being wonky
 

JohnDoeNews

Mod on Steam (MV/MZ)
Veteran
Joined
Apr 25, 2017
Messages
1,693
Reaction score
1,246
First Language
Dutch
Primarily Uses
RMMV
EDIT: I suddenly realize what you did wrong: You used origin 1 (center) for placing the pic and 0 (upper left corner) for moving the pic. Either make them both fixxed on the center, or the upper left corner.
 
Last edited:

Latest Threads

Latest Profile Posts

imgur sure is getting weird, one day I lose gradually all my images, the other I get them back randomly and then again they disappear again.
Despite OPT2 praise it still has some strange stories in it. Lady Mikka is trying to work herself to death because of guilt. Guilt over what? ¯\_(ツ)_/¯ So instead of finding a NPC to have a heart to heart with her they decide the cure is a new kimono. So when she drops dead she'll at least be well dressed. I haven't even got to the strange part yet.
Did so much work on the game today. I wish I could post it all in this status update but there is a character limit of course haha. I thought about making a topic for updates, though... maybe.
The most recent sign that I am old. I have done martial arts for over 4 decades. Never HAD to stretch out. Good, of course, but never required. Was doing some kicks in the kitchen because, why not, and I felt a pop in the back of my thigh. Now I am limping around. Gotta love getting old.
One of the biggest perks of being fluent in English is how many new and interesting recipes I am able to find and try out that I would have hardly come across if I just spoke my mothertounge :3

Forum statistics

Threads
131,683
Messages
1,222,232
Members
173,435
Latest member
TheAmplifier
Top