
Originally Posted by
affe2626
Hello im starting with internals now instead of external and where is the best place to start? i,ve read some sdks and such but its seems a little bit to hard (maybe im just stupid and i just have to dedicate more time to it). and ive heard you can get banned on cs for injectors such as extreme injector.. i've my own injector (watched fleeps tutorial and edited it) so can i get a ban from it? it's a loadlibrary injector, so im just wondering where i can start, and what i should start with

and yes i know how to make external cheats (not so good but it works) and some c++ and a little c#.
Internal is no different than external.
Technically you can swap all your RPM and WPM calls with pointers, for example:
Code:
DWORD address = 0x...;
int x = ReadProcessMemory(address);
to
DWORD address = 0x...;
int x = *(int*)address;
All you are doing externally is reading structures and writing to structures.
When you are internal you can recreate those structures and you get what people call an SDK.
For example, an entity has the health at offset 0x4 and team number at offset 0xC (these aren't the real offsets obviously)
You could make a struct like this
Code:
struct Player{
char unknown_1[4];
int health;
char unknown_2[4];
int teamNum;
}
Now you can directly read all those values by getting your entity address and doing
Code:
Player* p = (Player*)address;