Page 1 of 1

Bug: ~ does not display

PostPosted: Thu Dec 06, 2007 10:03 pm
by Fuzzy
~ does not display in the script editor, although it functions correctly.

I also vote for this as the most obscure and least obtrusive bug ever.

Re: Bug: ~ does not display

PostPosted: Fri Dec 07, 2007 8:18 am
by summer_goth
:D

It's impressive that you picked it up.

Re: Bug: ~ does not display

PostPosted: Fri Dec 07, 2007 8:34 am
by Kalladdolf
wow, i would've never realized that!!!

what does it actually do?
~

Re: Bug: ~ does not display

PostPosted: Fri Dec 07, 2007 9:51 am
by Fuzzy
I like to explore the deep dark corners of GE.

~ is 'ones compliment'. if you wish to see what it does, make a text actor and in script put this:

Code: Select all
textNumber = ~63;


Of course, try some other numbers too. and try:

Code: Select all
textNumber = ~~63;


As for what its good for... well, you'll have to figure that out yourself. But its a lot faster than multiplying.

Re: Bug: ~ does not display

PostPosted: Fri Dec 07, 2007 11:05 am
by Spidy
hmm..ok ill try it!