Code: Select all
get FILES long
get HEADER long
for i = 0 < FILES
get ID long
get TEST long
if TEST == -1
next i
endif
get SIZE long
get DUMMY long
get OFFSET long
log ID OFFSET SIZE
next i
what is the problem now? it really clear. when i run this script QuickBMS will always going to next i and dont read if and just do next i. but just have to do it when TEST == -1.
its wrong. QuickBMS just will find next i text in script and not matter there is a if option!
note: i am sure this problem never solve too
{
for i
if
next i
endif
next i
}