As the title asks, I've been stomped on the for a while and so far, a lot of the tuts I have looked up haven't really steered me in the right direction.
Also I am scripting this inside of RPG Maker VX Ace.
With a specific system I am trying to create, I'm currently stuck using a mix of using events and scripting to try to get it work and be less confusing when driven by events.
Also please understand that I'm completely new to rgss scripting and have been trying to do a crash study course into scripting since two days ago. X_X
Lets say for example array 1 is like this:
$game_variables[24] = array = [tilled, crop_id, days, eventid = 12]
and array 2 is like this:
$game_variables[25] = array.new = [tilled, crop_id, days, eventid=13]
How would I do a search for what is called 'eventid' within the script?
I keep thinking either a do while loop or a while loop but I don't see how that would work. X_X
A point in the right direction would be a good start for me and for the love of RPGs please don't point me to a game tut download that has had too much traffic and has been shut down temporarily. X_X Ran into one already.
Also, long story short, I'm trying to create a farming system within my project that isn't so event heavy... and try to make it lighter using a set of script calls and event switches to do most of the work and so my eyes can read both easier.