HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Timer Trigger

03-21-2005, 07:42 PM#1
Meister_Li
Hi!
My Problem is: I want to make a Tigger that increases a specific Value by a specific Value but not once!
I want it to be increases over a time period (maybe 20 Secounds)

Like this:
Value + 1 * eclapsed time

How can I make this?
Thanks,
Meister_Li
03-21-2005, 10:52 PM#2
johnfn
How's this
Code:
Increase
    Events
//whatever.
    Conditions
    Actions
        For each (Integer A) from 1 to 20, do (Actions)
            Loop - Actions
                Wait 1.00 seconds
                Set Value = (Value + 1)
03-22-2005, 09:15 AM#3
Meister_Li
Hey! Big thanks! It helped! ;)