Reply to Re: Variable Isolation
If you don't have an account, just leave the password field blank.
You can use the fact that variables are integers. The largest value for an integer is 2,147,483,647 so you have 10 digits to work with. So you'll do something like this: (Note: I haven't looked this up, so this isn't guaranteed to work...)
<number you want> is the number you want counted from the right. So in this example this would be 3.
EDIT: This script does look a bit ugly... I wonder if there's an easier way...
&trunk = 126532485; int &temp1 = &trunk; int &temp2 = &trunk; int &loopvar1 = 1000000000; int &loopvar2 = 11; loop: &loopvar2 -= 1; &temp1 / &loopvar; if (&loopvar2 = <number you want> ) { &bomb = &temp1; } &temp2 -= &temp1; &temp1 = &temp2; &loopvar1 / 10; if (&loopvar2 > 0) goto loop;
<number you want> is the number you want counted from the right. So in this example this would be 3.
EDIT: This script does look a bit ugly... I wonder if there's an easier way...