Jump to content
  • 0

Xor X4 + Xor X4 = Value code


MasterC

Question

Hi guys, i need help with a Colman for make a script.

 

Need make a Command for calculate Xor X4 + Xor X4 = Value code in TYPE_WORD

EX: 4 Address in  X4 + X4  = value code 

does anyone know how to create a script command with this Xor?

I Will try send vídeo.

 

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

--2ed address value = 29414
--4th address value = 29217
-- use ' ~ ' to get the XOR value of 2ed address and the 4th

print(29414 ~ 29217) --output : 199
print(29414~199) -- output : 29217 ( 4th address value )
print(29217~199) -- output : 29414 ( 2ed address value )

 

Link to comment
Share on other sites

On 4/3/2023 at 3:49 PM, XEKEX said:
--2ed address value = 29414
--4th address value = 29217
-- use ' ~ ' to get the XOR value of 2ed address and the 4th

print(29414 ~ 29217) --output : 199
print(29414~199) -- output : 29217 ( 4th address value )
print(29217~199) -- output : 29414 ( 2ed address value )

 

 

but values change each time found again

how i make an script fot it command?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.