Title says it pretty much. Ask me anything coding related, I'll give you an answer.
~I CAN refuse to answer questions about features
~I MOST LIKELY will NOT give out ANY source, but I will explain the concept behind something.
~No irl / personal life questions~
Begin!
is mid function hook detected ?
Do you know how people are doing Memory wallhacks? :O
I'm not sure, haven't looked into it because I don't use a mid function hook. Maybe it's just the bytes you're using for the patch? ( In general I would stay away from detours FYI )
---------- Post added at 12:38 PM ---------- Previous post was at 12:37 PM ----------
Originally Posted by JusCaus
Do you know how people are doing Memory wallhacks? :O
No I don't, but every game has it's own rendering functions for textures and such. Probably an exploit in one of them.
@ ~Fallen~ How are people watching which packets are being sent to the server? Wouldn't you have to have an xtrap bypass because a packet sniffer, etc is detected....
Originally Posted by JusCaus
@ ~Fallen~ How are people watching which packets are being sent to the server? Wouldn't you have to have an xtrap bypass because a packet sniffer, etc is detected....
There is a function called SendToServer, they're probably using that.
I might as well ask, too.
I don't really have knowledge of making hacks or so. But how long would someone need to spend learning C++ in order to start making hacks? Like legitly, not leeching and that sort of stuff.
Originally Posted by ~FALLEN~
There is a function called SendToServer, they're probably using that.
Oh, ok... Maybe i can look into that or something... Can't you get rid of the client error for stw if you mess with the packets or something like that?
whats the best way for hooking? & Say how to make it (in big lines)
Okay @~FALLEN~ Should I update detours with every patch of CF or does it sometimes dont need a update?
I don't really have knowledge of making hacks or so. But how long would someone need to spend learning C++ in order to make hacks?
It depends how dedicated the person is, and you never really stop learning there's always new things coming out, things to improve on, etc.
A good book to learn from would be the C++ for dummies 6th edition, all in one.
Originally Posted by JusCaus
@ ~Fallen~ How are people watching which packets are being sent to the server? Wouldn't you have to have an xtrap bypass because a packet sniffer, etc is detected....
Wireshark is not detected.
Originally Posted by [N.O]N.A.M.E
is mid function hook detected ?
Its not detected, but you have to hook after the first 5 bytes and dont use JMP and PUSH opcodes.
@~FALLEN~:
For the client error thing i will add u in msn later the week, but i have another question: Any idea how to get the NPC / Zombie list? I got some of the object pointers, but could not find the real list.
Originally Posted by JusCaus
Oh, ok... Maybe i can look into that or something... Can't you get rid of the client error for stw if you mess with the packets or something like that?
There's easier ways to get rid of the error for stw, but that could be one way to do it.
Originally Posted by Zacherl
Wireshark is not detected.
Its not detected, but you have to hook after the first 5 bytes and dont use JMP and PUSH opcodes.
@~FALLEN~:
For the client error thing i will add u in msn later the week, but i have another question: Any idea how to get the NPC / Zombie list? I got some of the object pointers, but could not find the real list.
So JNE and MOV would be fine? After the first 5 bytes?
Originally Posted by Zacherl
Wireshark is not detected.
Its not detected, but you have to hook after the first 5 bytes and dont use JMP and PUSH opcodes.
@~FALLEN~:
For the client error thing i will add u in msn later the week, but i have another question: Any idea how to get the NPC / Zombie list? I got some of the object pointers, but could not find the real list.
I haven't really looked into that too much. First thing that comes to the top of my head is entity iteration through clientfx, or hook setobjectpos grab the object pointer, trace it back to the class pointer, and trace that back to the list
---------- Post added at 12:51 PM ---------- Previous post was at 12:50 PM ----------
Originally Posted by CheatCreatorzz
whats the best way for hooking? & Say how to make it (in big lines)