mob
proc
test()
if(src.test1 == 1)
if(src.test2 == 1)
if(src.test3 == 1)
//keeps going etc.
else
src.test3 = 1
else
src.test2 = 1
else
src.test1 = 1
Is there a more easier way to do this? It will check if certing tests are available or not, if they are not it will go check the next, and so on.