Two or more #IF checks

Funpire

Dedicated Member
Dedicated Member
Jan 21, 2007
29
0
28
I want to do more than one checks from text files. If I have the following, what do I need to change to fix it?

[@main]
#IF
CHECKNAMELIST check1.txt
#ACT
Goto @level1

#IF
CHECKNAMELIST check2.txt
#ACT
Goto @level2

#IF
CHECKNAMELIST check3.txt
#ACT
Goto @level3

#ELSEACT
Goto @nocheck

Thanks for any help.
 

Hany

Golden Oldie
Golden Oldie
Feb 28, 2005
917
119
180
Code:
[@main]
#IF
CHECKNAMELIST check1.txt
#ACT
Goto @level1
#ELSEACT
Goto @nocheck 

#IF
CHECKNAMELIST check2.txt
#ACT
Goto @level2
#ELSEACT
Goto @nocheck 

#IF
CHECKNAMELIST check3.txt
#ACT
Goto @level3
#ELSEACT
Goto @nocheck
this should work, i dunno if u'll need to threw some break command cause i dont know the whole script is about, if you need any more help provide the whole script please :p
 
Upvote 0