Hi there i have yet another problem i have tried to create a script which will turn a light on then after a second turn the light off and after another second loop round again to turn it on but whatever i try doesn't seem to work...
Heres my code so far i have used it as the main script of a dynamic light...
;Conjured Artificial Intelligence Script
;Written By Conjured Entertainment
;Multiple Timer Using Global Variables 71 to 75
;Header
desc = ceTimer
;Triggers
:state=0:state=1
;initialize timer variables to zero to reset all timers
:state=1:globalvar=71,setvar=0
:state=1:globalvar=72,setvar=0
:state=1:globalvar=73,setvar=0
:state=1:globalvar=74,setvar=0
:state=1:globalvar=75,setvar=0
:state=1:state=2
;reset global timer
:state=2:timerstart,state=3
;wait one second
:state=3,timergreater=1000:state=4,lighton
;increment timer variables
:state=4:globalvar=71,incvar=1,state=5
:state=5:globalvar=72,incvar=1,state=6
:state=6:globalvar=73,incvar=1,state=7
:state=7:globalvar=74,incvar=1,state=8
:state=8:globalvar=75,incvar=1,state=9
;reset global timer
:state=9:timerstart,state=10
;wait one second
:state=10,timergreater=1000:state=11,lightoff
;increment timer variables
:state=11:globalvar=71,incvar=1,state=12
:state=12:globalvar=72,incvar=1,state=13
:state=13:globalvar=73,incvar=1,state=14
:state=14:globalvar=74,incvar=1,state=15
:state=15:globalvar=75,incvar=1,state=16
;loop to reset global timer
:state=16:state=2
;End of Script
Hope someone can figure out whats wrong i have attached a picture of what the code comes out as its just an floating platform with a light in the middle and the light doesn't even come on at all...