CheatEngine Auto Hunt

10/24/2021 00:39 capodark#1
need help to found value of skills XP , Super Man and Cyclone
Discord
CapoDark#6428
10/24/2021 17:01 Relic#2
What client version?
10/24/2021 19:05 capodark#3
7296
10/24/2021 20:33 Relic#4
What exactly are you trying to do? Trigger XP skills via client hook?
10/24/2021 20:59 capodark#5
yeah

Quote:
Originally Posted by Relic View Post
What exactly are you trying to do? Trigger XP skills via client hook?
come discord
CapoDark#6428
10/24/2021 22:14 Relic#6
Message type 0x37 triggers XP spell.

Code:
typedef void(__cdecl* _PostCmd)(WPARAM wparam, LPARAM lparam);
_PostCmd PostCmd = (_PostCmd)0x0090f4d4;

void TriggerXpSpell(int spellId)
{
  PostCmd(0x37, spellId);
}

int main() 
{
   int cycloneId = 1110;
   int supermanId = 1025;
   TriggerXpSpell(cycloneId);
}
11/13/2021 19:58 bhopo#7
Quote:
Originally Posted by Relic View Post
What exactly are you trying to do? Trigger XP skills via client hook?
I tried using the hook internally injecting my dll and make a condition to check if the xp counter is on if it's on so i call the trigger function

the problem is that the game close immediately once the xp counter comes, I think the function pointer(0090f4d4) is old and i don't know how it comes so i could update :(

Client version is 7307
01/04/2022 07:42 alis959#8
Quote:
Originally Posted by Relic View Post
Message type 0x37 triggers XP spell.

Code:
typedef void(__cdecl* _PostCmd)(WPARAM wparam, LPARAM lparam);
_PostCmd PostCmd = (_PostCmd)0x0090f4d4;

void TriggerXpSpell(int spellId)
{
  PostCmd(0x37, spellId);
}

int main() 
{
   int cycloneId = 1110;
   int supermanId = 1025;
   TriggerXpSpell(cycloneId);
}
but what is the offset for it

here i have code to get xpskill but its cannot use it if u can fix it and send it to me will be thanks
01/09/2022 17:00 OELABOELA#9
Quote:
Originally Posted by alis959 View Post
but what is the offset for it

here i have code to get xpskill but its cannot use it if u can fix it and send it to me will be thanks
What if you opened up conquer with any debugger yourself and learned to reverse it? Asking for something and throwing a 'pls thanks' on the end will not miraculously make it happen.

Put in the work, get it done.

To whomever reads this, PMing me about 'where to start' -> Just friggin' start somewhere, that's how everyone started.
01/10/2022 23:50 Spirited#10
Quote:
Originally Posted by OELABOELA View Post
What if you opened up conquer with any debugger yourself and learned to reverse it? Asking for something and throwing a 'pls thanks' on the end will not miraculously make it happen.

Put in the work, get it done.

To whomever reads this, PMing me about 'where to start' -> Just friggin' start somewhere, that's how everyone started.
Posting and pinning a tutorial to the section on how to do that, like what tools and what prerequisites you need, might be beneficial. Something that shows how to get started and get around debugger protections that builds on these maybe:

[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]