Jump to content
  • 0

Find XOR values - LUA script


Joker0

Question

Hey

I'm trying to hack the xp value in a game, and I did it manually by changing some XOR encrypted values.

The problem I'm facing is that I cannot find a command to change a normal value to an encrypted XOR value, because I wanna add it to a script.

I'm wondering if there is any command that would allow me to do that

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

5 hours ago, Joker0 said:

Hey

I'm trying to hack the xp value in a game, and I did it manually by changing some XOR encrypted values.

The problem I'm facing is that I cannot find a command to change a normal value to an encrypted XOR value, because I wanna add it to a script.

I'm wondering if there is any command that would allow me to do that

Use Record script and preform a Xor search that should give you the run through on syntax

Link to comment
Share on other sites

use the command 

convert = bit32.bxor(string [value], int [xor key])

 

 

[added 3 minutes later]

For example if i want to search 50 but the xor encryption is 444444 i will do like this 

value = bit32.bxor('50', 444444)
gg.searchNumber(value, 4, false, gg.SIGN_EQUAL, 0, -1, 0)

 

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.