Jump to content

hungvi0610

Member
  • Posts

    22
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone 13 Pro Max
  • iOS Version
    15.1
  • Jailbroken
    No
  • Rooted
    No
  • Gender
    Male
  • Location
    Viet Nam

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

hungvi0610's Achievements

Apprentice

Apprentice (3/14)

  • One Year In
  • Conversation Starter
  • Collaborator
  • Mega Dedicated
  • Super Dedicated

Recent Badges

0

Reputation

  1. Hi guys, I have this Unity code [Address(RVA = "0x2DFB948", Offset = "0x2DFB948", VA = "0x2DFB948")] public void SendAdjustEvent(string adjustEventToken) { } and another function to work as a pointer [Address(RVA = "0x2E11424", Offset = "0x2E11424", VA = "0x2E11424")] private void InitScore() { } Then I tried to pass some string as adjustEventToken params like this in Ted2 menu mod: #import "Macros.h" #include <string> /*********************************************************** INSIDE THE FUNCTION BELOW YOU'LL HAVE TO ADD YOUR SWITCHES! ***********************************************************/ void (*SendAdjustEvent)(void *self, const char *event); void new_SendAdjustEvent(void *self, const char *event){ SendAdjustEvent(self, event); } void (*InitScore)(void *self); void new_InitScore(void *self){ InitScore(self); std::string gay = "laaa32"; const char* param = gay.c_str(); SendAdjustEvent(self, param); } void setup() { HOOK(0x2DFB948, new_SendAdjustEvent, SendAdjustEvent); HOOK(0x2E11424, new_InitScore, InitScore); // Empty switch - usefull with hooking [switches addSwitch:NSSENCRYPT("name") description:NSSENCRYPT("des") ]; } But it keeping crash the app when InitScore is called. Can you show me what I was wrong and how to fix it?
  2. I tried to decrypt an app using iGDecrypt, then use Il2cpp Dumper online to get the source code but the problem is not all the function's names are decrypted. There are still a lot of functions I can't read clearly as you can see in the screenshot. How can I solve this issue to read the code? https://ibb.co/8Kbc4my
  3. In Assembly-CSharp.dll I have a function like this. How can I call this function in Theos with modified (int points) [Token(Token = "0x6000194")] [Address(RVA = "0x1EE89A0", Offset = "0x1EE89A0", VA = "0x1EE89A0")] public void AddPoints(int points, bool instant = true) { }
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines