A downloadable script

Buy Now$2.50 USD or more

πŸ“œ Overview

The Farming System Plugin allows players to plant, water, and harvest crops based on a seasonal system. Crops require daily watering, have different growth rates, and cannot grow outside their designated season.

πŸ“‚ Key Features

βœ… Seasonal Crops – Certain crops can only be planted in specific seasons.
βœ… Growth System – Crops grow daily when watered.
βœ… Watering System – Crops require daily watering, or they will wither.
βœ… Harvesting System – Fully grown crops can be harvested for items.
βœ… Season Tracking – The game transitions between Spring, Summer, and Fall every 28 days.
βœ… Quality System – Crop quality is affected by watering and missed days.

πŸ”§ How to Use

🌱 Planting a Crop

  1. Set up an event on a farm tile.

  2. Add this script call in an event to plant a crop:

    FarmingSystem.plantCrop("tomato", this.eventId()); 
    

  3. Ensure the crop type is allowed in the current season, or the planting will fail.

🌊 Watering a Crop

  1. Set up a watering event.

  2. Add this script call inside an event to water a crop:

    FarmingSystem.waterField(this.eventId()); 
    
  3. If the crop is already watered today, it won’t receive additional water.

🚜 Harvesting a Crop

  1. Check if a crop is fully grown.

  2. Add this script call in an event to harvest the crop:

    FarmingSystem.harvestCrop(this.eventId()); 
    
  3. The crop will be removed, and the player will gain a harvestable item.

πŸ•› Daily Crop Growth and Reset

To advance crop growth at the start of each day, call:

FarmingSystem.advanceGrowth(); 

To reset watering each day, call this in a Common Event:

let fieldData = FarmingSystem.getFieldData(); for (let eventID in fieldData) {     fieldData[eventID].wateredCount = 0; } $gameMessage.add("A new day begins. All crops need water again!"); 

🌦 Seasonal System

Every 28 days, the season will automatically change.
To force a season change, use:

FarmingSystem.changeSeason(); 

Current Seasons:

  • Spring 🌱: Turnip, Potato, Cucumber, Strawberry

  • Summer β˜€: Corn, Onion, Pepper, Tomato

  • Fall πŸ‚: Carrot, Potato, Corn, Yam

Crops cannot grow outside their designated season.

πŸ’‘ Troubleshooting

Problem: "Field is already occupied."

Fix: Remove the old crop before planting a new one.

Problem: "This crop cannot be planted in this season."

Fix: Check if the crop is allowed in the current season.

Problem: Crops are not growing

Fix: Ensure daily watering is applied.

Problem: Crops disappear before harvesting

Fix: Avoid missing too many watering days.

πŸ“Œ Summary of Key Script Calls

FunctionalityScript Call
Plant a crop FarmingSystem.plantCrop("cropType", eventID);
Water a crop FarmingSystem.waterField(eventID);
Harvest a crop FarmingSystem.harvestCrop(eventID);
Advance crop growth FarmingSystem.advanceGrowth();
Change the season FarmingSystem.changeSeason();


NOTE: You will need to make your own time system via common events to make the daily growth work, and also make sure where this._eventId is please put the number of the event ID of the field tile you are eventing!! If you have any questions, please contact me directly before rating and leaving bad comments! Thank you.

Please credit me as "PoniSama," "Ponimeimei," or "PoniSan". 

This is a pay-to-use plugin for RPG Maker MV using events mixed with script calls. I cannot provide visual assets, so please make your own or buy them from the Gotcha Gotcha Games store or on Steam! or even from others here on itch! 

It is a plug-and-play plugin, so again, if anyone has questions, please reach out without hesitation !

Published 2 days ago
StatusReleased
CategoryTool
AuthorPoni
Tagsmvplugin, plugin, RPG Maker, RPG Maker MV

Purchase

Buy Now$2.50 USD or more

In order to download this script you must purchase it at or above the minimum price of $2.50 USD. You will get access to the following files:

FarmingSystem.zip 2.9 kB

Leave a comment

Log in with itch.io to leave a comment.