I have a problem with the objectives-system, I can only use the objectives in one level, courld something be incorrect with the level scripts? In the huds folder I use folder level1-3 (with .png pictures) I have nothing yet in the level1 folder. but when I use level3s picture1, the level2s picture1 is shown instead?
Is there anyway to fix this problem? Here is the script:
desc = MAIN TRIGGER Display Using Variables
;Triggers
:state=0:dimvar=objective,setvar=objective 0
:state=0:hudreset,hudx=50,hudy=50,hudimagefine=languagebank\english\gamecore\huds\level3\objectives1.png,hudname=objectives1,hudhide=1,hudmake=display
:state=0:hudreset,hudx=50,hudy=50,hudimagefine=languagebank\english\gamecore\huds\level3\objectives2.png,hudname=objectives2,hudhide=1,hudmake=display
:state=0:hudreset,hudx=50,hudy=50,hudimagefine=languagebank\english\gamecore\huds\level3\objectives3.png,hudname=objectives3,hudhide=1,hudmake=display,state=10
:state=10,scancodekeypressed=24:state=2
:state=2,varequal=objective 0:hudunshow=objectives1,hudunshow=objectives2,hudunshow=objectives3,state=5
:state=2,varequal=objective 1:hudshow=objectives1,state=3
:state=2,varequal=objective 2:hudshow=objectives2,state=3
:state=2,varequal=objective 3:hudshow=objectives3,state=3
:state=3,scancodekeypressed=0:state=4
:state=4,scancodekeypressed=24:hudunshow=objectives1,hudunshow=objectives2,hudunshow=objectives3,state=5
:state=5,scancodekeypressed=0:state=10
;End of Script