0xFFFFFFFF gives -1
I want it to give 4294967295 though.
How do I do that?
Code: Select all
math temp = 0xFFFFFFFF
math temp = 4294967295

Code: Select all
math temp = 0xFFFFFFFF
math temp = 4294967295

Code: Select all
set temp longlong 0xFFFFFFFF

Code: Select all
math MYVAR /= 1234Code: Select all
math MYVAR u/= 1234