ghostroy12
Platinian
Hello,
I was told to post the question here.
I have been following tutorials and modded some games using C#, but now i am looking into il2cpp encrypted games.
Game in example is archero.
I used dnspy to find the methods that i want to change, but they are encrypted with obscured values from the codestage anticheat kit.
Questions:
- The methods (eg. health) refer to an anticheat instruction, which turns the value into an obscured value. How do change or reverse this value?
- I've tried decompiling and then recompiling the apk, but it got stuck on a white screen (without changing any files)
Would there be some kind of function in anti cheat that is causing this?
I'm sorry if this sounds like a noob question, but i've been stuck here for several days and i really want to learn modding these kind of games.
Thanks in advance!
I was told to post the question here.
I have been following tutorials and modded some games using C#, but now i am looking into il2cpp encrypted games.
Game in example is archero.
I used dnspy to find the methods that i want to change, but they are encrypted with obscured values from the codestage anticheat kit.
Questions:
- The methods (eg. health) refer to an anticheat instruction, which turns the value into an obscured value. How do change or reverse this value?
Code:
// Token: 0x1700015B RID: 347
// (get) Token: 0x060018EF RID: 6383 RVA: 0x00005940 File Offset: 0x00003B40
// (set) Token: 0x060018F0 RID: 6384 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000109")]
public ObscuredLong CurrentEnergy
{
[Token(Token = "0x60015D5")]
[Address(RVA = "0x893FD8", Offset = "0x893FD8", VA = "0x893FD8")]
get
{
return default(ObscuredLong);
}
[Token(Token = "0x60015D6")]
[Address(RVA = "0x893FF8", Offset = "0x893FF8", VA = "0x893FF8")]
set
{
}
}
Would there be some kind of function in anti cheat that is causing this?
I'm sorry if this sounds like a noob question, but i've been stuck here for several days and i really want to learn modding these kind of games.
Thanks in advance!