Quote:
Originally Posted by Nesox yes that's what i had in mind, so but i cant seem to get it to work when i add 2 of them the result is 0 ie. Code: case 666:
int tracking = 0x04;
tracking &= 0x20;
Memory.WriteMemory(hProcess, Memory.ReadUInt(hProcess, (Memory.ReadUInt(hProcess, (Memory.ReadUInt(hProcess,
(Memory.ReadUInt(hProcess, 0x0127E014)) + 0x30)) + 0x28)) + 0x08) + 0x576 * 4, tracking);
break;
@Cypher: I dun no hav to do da hukz yet. But in a while maybe, i once did a tramopline for the datetime function in notepad  |
Thats because you are using the bitmask AND operator &, you want the bitmask OR operator instead. use something like:
int tracking = 0x04;
int tracking |= 0x20;
It will make tracking 0x24, ORing the two values together.