I'm trying to setup a Call function.
In the main script i have the following:
Call aaTimeKeeper refName
My function scipt is
scn aaTimeKeeperfloat Hasfloat Needfloat Timerstring_var refNameBegin Function { refName } let Timer := 0 ;aaioo01.HasReadFor[refName]; let Need := aaioo01.Thymaneded[refName] label set Timer to Timer + GetSecondsPassed ; let aaioo01.HasReadFor[refName] := Timer debugprint "inside goto loop: %0.f" Timer if ( Timer >= 30 ) ;Need Message "I have finished reading this book." else goto endif debugprint " timekeeper function completed"end
If I leave the commented lines out, it seems to work. Mostly. Some stuff I need to figure out still.
But If I uncomment the lines and replace the integers with the vars, it doesn't work.
As far as I can determine, the string_var it not being passed to the function to validate the arrays.
I've even tried setting the vars in the main script then passing the values with
Call aaTimeKeeper Has Need
Obviously I don't understand and am mucking it up. Can someone explain or correct my script?
Also, notice in the middle of the goto loop, I'm trying to set the current value. This is to keep track if the player closes the book before the 'Need' value is reached. Will it work if the script is correct?
Thanks.