0 Members and 1 Guest are viewing this topic.
:.AATEST:ClrHome:4→X:For(Y,1,255):If X and Y:Disp "Yes",Y►Dec,i:Else:Disp "No",Y►Dec,i:End:End
to do what you want:If X != 0 and (Y != 0)
...If X≠0 and (Y≠0)...
...!If X or Y...
HoMM: [==--------] Project 'resumed': I'm suffering overwhelming new ideas being popped up in my dreams :PtiDE: [----------] Explored and understood the main part of the code: just started writing a Tokenizer.
Axe boolean checks only the last bit of the byte pointed to I found out. to you get Yes only for odd numbers, and No for the even numbers so b10101 And b0110 will be 0 And 0 for Axe, and b0101 And b0110 will be 1 and 0 for . so both numbers have to be odd. Bool is just only the last bit of a byte!correct me if I'm wrong, but this is what I thought based on my experiences with trying Bool-using statements as they all are...