need help to found value of skills XP , Super Man and Cyclone
Discord
CapoDark#6428
Discord
CapoDark#6428
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);
}
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 functionQuote:
What exactly are you trying to do? Trigger XP skills via client hook?
but what is the offset for itQuote:
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); }
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.Quote:
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
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:Quote:
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.