KTimers XP
Version 1.2.0
by Kyonides​
Introduction
This script should let you create events like growing plants. The benefits are interesting, you won't find any timer on screen and the corresponding timers will keep running even if you're on another map. Don't worry about them running forever, they'll stop right after they reach their "ripe stage". Only a player hitting the OK button while standing right in front of the event could reset the timers.
Instructions
Create a multi-page event with its graphics.
On the first page leave a comment like this one:
That means the event will use a timer with x stages and will count till 15 seconds before the next stage begins (that means it will change to the next page on the event list).
On the last page add a script call:
That will help you reset the growing plant event. It will be activated once the player hits the OK button while standing right in front of the event.
Also take a look at the script and search for the STAGES Constant and edit it at your will.
Example:
Ruby:
STAGES = {1 => 2, 2 => 3, 3 => 5}
# Timer Type => Number of stages (that means Number of event pages - 1)
As you might have figured it out by now, the timer ID on the comment you left at the growing plant event corresponds to some kind of Timer Type of the STAGES Constant.
Exclusive For Version 1.1.0 Onwards
It also brings an interesting feature, the failing crops!
Nope, there's no need to hire a witch to destroy your crops.
You just need to pass a condition and it will determine whether or not you will get your crop or byproduct.
The Default Script Call:
The New Script Calls:
Ruby:
reset_timer(:item, 1, 5)
reset_timer(:weapon, 1, 1)
reset_timer(:armor, 1, 1)
reset_timer(:switch, 100)
Exclusive For Version 1.2.0
The New Script Call:
Ruby:
set_timer(TimerID, Seconds)
Example:
And that's all, forumers!
Download DEMO​
Term of Use & Conditions
Free for non-commercial games.
Donations aka voluntary payments are accept if going commercial.
Due credit is not optional but a must.
That's it!
Free for non-commercial games. Donations aka voluntary payments are accept if going commercial. Due credit is not optional but a must. That's it!