Joker0 Posted May 5, 2021 Posted May 5, 2021 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
Sedurin Posted May 6, 2021 Posted May 6, 2021 read the docs about searchNumber(), there should be everything you need
AKidWithMidgetFriend Posted May 6, 2021 Posted May 6, 2021 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
MAARS Posted May 6, 2021 Posted May 6, 2021 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)
Question
Joker0
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
3 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.