Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > General Coding
You last visited: Today at 18:53

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Wanting to learn to make cheats

Discussion on Wanting to learn to make cheats within the General Coding forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2024
Posts: 9
Received Thanks: 1
Wanting to learn to make cheats

I want to learn how to make video game cheats primarily just esp and later on aimbot for

Apex/rust and fn

Where do I start ? Am I too late to learn in 2026?
jiaqi is offline  
Old 02/14/2026, 00:54   #2
 
elite*gold: 0
Join Date: Aug 2025
Posts: 4
Received Thanks: 0
It isn't about making the cheat it's self. It's about finding ways to bypass the anti cheat. Which takes a lot of trial and error. That is what makes a good cheat developer. Anyone can code or just paste a old cheat but it self is finding how to get it into the game without the anti cheat finding it. If you would want mentor ship add me on discord. "itsstep"
StepIsKing is offline  
Old 02/14/2026, 01:00   #3



 
Draacox's Avatar
 
elite*gold: 0
Join Date: Sep 2013
Posts: 482
Received Thanks: 134
Learning code language helps in addition is to know how to reverse engineer A/C and watch how they update and patch stuff.. There is alot to it. A mentor can help, alot of trial and error along with patience. I would start with learning code, then the A/C with the games you want to cheat on. Believe in your self, do alot of research and im sure you can make it! Stay focused.
Draacox is offline  
Old 02/20/2026, 16:25   #4
 
elite*gold: 0
Join Date: Feb 2024
Posts: 9
Received Thanks: 1
Quote:
Originally Posted by Draacox View Post
Learning code language helps in addition is to know how to reverse engineer A/C and watch how they update and patch stuff.. There is alot to it. A mentor can help, alot of trial and error along with patience. I would start with learning code, then the A/C with the games you want to cheat on. Believe in your self, do alot of research and im sure you can make it! Stay focused.
which lang is preferred ? C+?
jiaqi is offline  
Old 02/20/2026, 18:14   #5

 
nÂsty.'s Avatar
 
elite*gold: 30
The Black Market: 158/0/0
Join Date: Feb 2013
Posts: 1,473
Received Thanks: 783
Quote:
Originally Posted by jiaqi View Post
which lang is preferred ? C+?
yes
nÂsty. is offline  
Old 02/20/2026, 18:56   #6



 
Draacox's Avatar
 
elite*gold: 0
Join Date: Sep 2013
Posts: 482
Received Thanks: 134
Quote:
Originally Posted by jiaqi View Post
which lang is preferred ? C+?
C+ C++ python.
Draacox is offline  
Thanks
1 User
Old 02/23/2026, 01:33   #7
 
normality.cc's Avatar
 
elite*gold: 0
Join Date: Feb 2026
Posts: 23
Received Thanks: 3
Post You’re not too late.

Quote:
Originally Posted by jiaqi View Post
I want to learn how to make video game cheats primarily just esp and later on aimbot for

Apex/rust and fn

Where do I start ? Am I too late to learn in 2026?
You’re not too late.

Start with C++. Learn the basics properly, especially memory, pointers, and how Windows processes work. That foundation is what really matters.

Get strong at the fundamentals first. Everything else builds on that.
normality.cc is offline  
Old 03/13/2026, 00:21   #8
 
Dev7's Avatar
 
elite*gold: 0
Join Date: Nov 2023
Posts: 259
Received Thanks: 80
Quote:
Originally Posted by normality.cc View Post
You’re not too late.

Start with C++. Learn the basics properly, especially memory, pointers, and how Windows processes work. That foundation is what really matters.

Get strong at the fundamentals first. Everything else builds on that.
I disagree. You should start with the actual reverse engineering aspect rather than jumping straight into C++. If he learns C++ first, he’ll only know how to write parts of a cheat, but he won’t understand how cheats are actually discovered or built. At best, he’ll learn functions and basic programming concepts, but without understanding the underlying mechanisms, that knowledge has limited value.

The core concepts behind this field come from assembly and low-level programming. Those are what teach you how programs operate in memory, how instructions execute, and how software truly works under the hood. High-level code like C++ is just an abstraction over those lower-level operations.

You can even generate basic C++ code with AI in seconds, but that doesn’t mean you understand what’s happening internally. AI cannot realistically analyze and reverse complex game processes or drivers in a meaningful way, especially when security mechanisms and protections are involved.

You should always learn the lowest level possible before moving up. What’s the point of learning C++ if you don’t understand how the operating system works or what’s happening in memory? What about anti-cheat systems, bypass techniques, reversing functions, identifying signatures, analyzing call chains, or dealing with encrypted data? None of that is properly learned through C++ alone.

He needs to learn C > assembly first. C++ should come absolutely last, once he understands the underlying systems. He won’t be able to make anything without copying and pasting as he wouldn’t actually understand anything. Unless that’s what you guys encourage but jumping into c++ is stupid and it upsets me when I see people comment this because when I 1st started. I fell for this and it really delayed my learning path. C++, yeah we use it for driver creation and cheat logic but apart from that. That’s all it teaches you. You need to learn assembly so you can actually reverse at least one architecture x64-x8 and reverse .sys and actually understanding what it’s checking and not playing the make and guess or trial and error.

Not to mention people these days are extremely lazy and don’t actually learn system processes and architectures. So it’d be greatly advantageous to just solely learn assembly. Get hired or hire someone to write c++ logic. The Expensive part is the bypass, not the cheat logic. You can easily just pay someone $500 to make cheat logic but the bypass would be worth $10,000

Quote:
Originally Posted by jiaqi View Post
I want to learn how to make video game cheats primarily just esp and later on aimbot for

Apex/rust and fn

Where do I start ? Am I too late to learn in 2026?
Do absolutely nothing apart from learn assembly, do NOT listen to these people saying c++. These are the type of people who copy and paste. These are the people who make random shit and see if they get banned. If you actually want to learn you need to learn the absolute lowest of the low. CPU & GPU instructions and absolutely anything related to assembly. When reversing you won’t read it in c or whatever you’ll read it in assembly and c will slightly help you understand what’s happening because behind assembly you can roughly convert or translate the instructions into code

Int b = 7;
Float c = 7.8;

Printf(“hello %d/f, b/c”);

Into assembly: (CHATGPT GENERATED AS A EXAMPLE)

section .data
msg db "hello %d", 0

section .text
global main
extern printf

main:
mov dword [b], 7 ; int b = 7
mov dword [c], 0x40F9999A ; float c = 7.8

mov eax, [b] ; load b
mov esi, eax ; argument for %d
lea rdi, [msg] ; pointer to format string
xor eax, eax ; required for variadic functions
call printf ; printf("hello %d", b)

ret
Dev7 is offline  
Thanks
3 Users
Old 03/13/2026, 04:43   #9
 
elite*gold: 0
Join Date: Feb 2024
Posts: 9
Received Thanks: 1
Quote:
Originally Posted by Dev7 View Post
I disagree. You should start with the actual reverse engineering aspect rather than jumping straight into C++. If he learns C++ first, he’ll only know how to write parts of a cheat, but he won’t understand how cheats are actually discovered or built. At best, he’ll learn functions and basic programming concepts, but without understanding the underlying mechanisms, that knowledge has limited value.

The core concepts behind this field come from assembly and low-level programming. Those are what teach you how programs operate in memory, how instructions execute, and how software truly works under the hood. High-level code like C++ is just an abstraction over those lower-level operations.

You can even generate basic C++ code with AI in seconds, but that doesn’t mean you understand what’s happening internally. AI cannot realistically analyze and reverse complex game processes or drivers in a meaningful way, especially when security mechanisms and protections are involved.

You should always learn the lowest level possible before moving up. What’s the point of learning C++ if you don’t understand how the operating system works or what’s happening in memory? What about anti-cheat systems, bypass techniques, reversing functions, identifying signatures, analyzing call chains, or dealing with encrypted data? None of that is properly learned through C++ alone.

He needs to learn C > assembly first. C++ should come absolutely last, once he understands the underlying systems. He won’t be able to make anything without copying and pasting as he wouldn’t actually understand anything. Unless that’s what you guys encourage but jumping into c++ is stupid and it upsets me when I see people comment this because when I 1st started. I fell for this and it really delayed my learning path. C++, yeah we use it for driver creation and cheat logic but apart from that. That’s all it teaches you. You need to learn assembly so you can actually reverse at least one architecture x64-x8 and reverse .sys and actually understanding what it’s checking and not playing the make and guess or trial and error.

Not to mention people these days are extremely lazy and don’t actually learn system processes and architectures. So it’d be greatly advantageous to just solely learn assembly. Get hired or hire someone to write c++ logic. The Expensive part is the bypass, not the cheat logic. You can easily just pay someone $500 to make cheat logic but the bypass would be worth $10,000



Do absolutely nothing apart from learn assembly, do NOT listen to these people saying c++. These are the type of people who copy and paste. These are the people who make random shit and see if they get banned. If you actually want to learn you need to learn the absolute lowest of the low. CPU & GPU instructions and absolutely anything related to assembly. When reversing you won’t read it in c or whatever you’ll read it in assembly and c will slightly help you understand what’s happening because behind assembly you can roughly convert or translate the instructions into code

Int b = 7;
Float c = 7.8;

Printf(“hello %d/f, b/c”);

Into assembly: (CHATGPT GENERATED AS A EXAMPLE)

section .data
msg db "hello %d", 0

section .text
global main
extern printf

main:
mov dword [b], 7 ; int b = 7
mov dword [c], 0x40F9999A ; float c = 7.8

mov eax, [b] ; load b
mov esi, eax ; argument for %d
lea rdi, [msg] ; pointer to format string
xor eax, eax ; required for variadic functions
call printf ; printf("hello %d", b)

ret
so is this a good road map :

1. Learn C and ASM
2.Set up a lab to download tools/work and learn tools and what is a good way to set up a lab without affecting my main machine
3. watch and learn Reverse Engineering/Tutorials cheat engine and x64dbg
4. learn about anticheats specifically for ones i want to make esp/aimbot for eg(Apex legends, marvel rivals and valorant)?

please feel free to add or tell me if im wrong and if you have time a better road map for me. thank you in advance
jiaqi is offline  
Old 03/13/2026, 05:29   #10
 
Dev7's Avatar
 
elite*gold: 0
Join Date: Nov 2023
Posts: 259
Received Thanks: 80
Quote:
Originally Posted by jiaqi View Post
so is this a good road map :

1. Learn C and ASM
2.Set up a lab to download tools/work and learn tools and what is a good way to set up a lab without affecting my main machine
3. watch and learn Reverse Engineering/Tutorials cheat engine and x64dbg
4. learn about anticheats specifically for ones i want to make esp/aimbot for eg(Apex legends, marvel rivals and valorant)?

please feel free to add or tell me if im wrong and if you have time a better road map for me. thank you in advance
There is no roadmap for cheat development. Either you're hungry for it or you're not. This isn’t something you learn in a year. It takes a massively extended period of time. We're probably talking around the 5year mark before you can realistically start making money or reaching whatever your goal is.

But realistically, it depends on you as a person. Are you smart? Can you absorb knowledge quickly? It varies from person to person. A general timeframe would be at least 2+ years, and those two years would likely mean studying around 8 hours a day. This is just to get to the point where you can open something and actually understand what you're looking at, what you're doing, and what is happening.

To put it simply, there is no roadmap. Think of cheat development like a computer. The motherboard is assembly, the GPU could be C++, and the CPU is common sense. You can't just learn one thing and expect everything to work. That said, the main component is assembly. If you learn assembly and truly understand it, the rest becomes much easier.

If you master assembly, you could probably learn C++ in around 5 months. From that point on, it becomes a matter of how well you can optimize your code. Things like rendering in ESP

My advice would actually be to have no roadmap. Just learn assembly. If you truly understand assembly, the rest will come easier. At the same time, don't get your hopes up too much, but also don't get discouraged.

You will not make a cheat for Apex, Valorant, or similar games within a year. You need to set smaller goals for yourself. Start with a small game. If you start with extremely high expectations, you'll only end up demotivating yourself.

I don't know what your goal is. Maybe it's just making a cheat once and calling it a day. If that's the case, that could definitely be done in a year or even less. I'm speaking more about creating an undetected cheat that could be sold or used long-term.

download IDA64 and start your journey my friend.


If you don’t want to read all the waffle:
Learn assembly through games or whatever it may be that doesn’t have protection. Learn the interfacing aspect first, then move on to reversing and decrypting. Only then you move onto a game with a kernel anti-cheat and start understanding what its doing.
Dev7 is offline  
Thanks
2 Users
Old 03/13/2026, 05:36   #11
 
elite*gold: 0
Join Date: Feb 2024
Posts: 9
Received Thanks: 1
Quote:
Originally Posted by Dev7 View Post
There is no roadmap for cheat development. Either you're hungry for it or you're not. This isn’t something you learn in a year. It takes a massively extended period of time. We're probably talking around the 5year mark before you can realistically start making money or reaching whatever your goal is.

But realistically, it depends on you as a person. Are you smart? Can you absorb knowledge quickly? It varies from person to person. A general timeframe would be at least 2+ years, and those two years would likely mean studying around 8 hours a day. This is just to get to the point where you can open something and actually understand what you're looking at, what you're doing, and what is happening.

To put it simply, there is no roadmap. Think of cheat development like a computer. The motherboard is assembly, the GPU could be C++, and the CPU is common sense. You can't just learn one thing and expect everything to work. That said, the main component is assembly. If you learn assembly and truly understand it, the rest becomes much easier.

If you master assembly, you could probably learn C++ in around 5 months. From that point on, it becomes a matter of how well you can optimize your code. Things like rendering in ESP

My advice would actually be to have no roadmap. Just learn assembly. If you truly understand assembly, the rest will come easier. At the same time, don't get your hopes up too much, but also don't get discouraged.

You will not make a cheat for Apex, Valorant, or similar games within a year. You need to set smaller goals for yourself. Start with a small game. If you start with extremely high expectations, you'll only end up demotivating yourself.

I don't know what your goal is. Maybe it's just making a cheat once and calling it a day. If that's the case, that could definitely be done in a year or even less. I'm speaking more about creating an undetected cheat that could be sold or used long-term.

download IDA64 and start your journey my friend.


If you don’t want to read all the waffle:
Learn assembly through games or whatever it may be that doesn’t have protection. Learn the interfacing aspect first, then move on to reversing and decrypting. Only then you move onto a game with a kernel anti-cheat and start understanding what its doing.
Thank you boss i appreciate it and yes my goal is to one day may a good product to sell later later on once i know everything and can do everything with ease. Thank you once agian
jiaqi is offline  
Thanks
1 User
Old 03/16/2026, 01:41   #12
 
Dev7's Avatar
 
elite*gold: 0
Join Date: Nov 2023
Posts: 259
Received Thanks: 80
Quote:
Originally Posted by jiaqi View Post
Thank you boss i appreciate it and yes my goal is to one day may a good product to sell later later on once i know everything and can do everything with ease. Thank you once agian

Hey man. I was closing tabs and saw this one still open, and I wanted to add one more thing. What I said earlier was pretty vague, and I prefer finishing my thoughts instead of leaving them hanging. I’m also a pretty opinionated and sometimes arrogant person, so I just want to share my perspective. After that, you can decide your own roadmap and choose what works best for your learning path. This is simply what I’d recommend.


Your mindset NEEDS TO BE Ignore “Cheats” at the Beginning

Don’t worry about cheats at all. Don’t even think about the word. Instead, focus on learning the operating system itself and separate anything related to cheats from your thinking for now. Treat it like a proper computer science course.

Focus on things like:

• Memory management
• Drivers
• Windows internal API calls
• Security functions
• General computer science fundamentals

I didn’t approach it this way when I started, but I wish I had. It would have made the learning process much easier and more structured.

I went straight into C++, but then I found myself stuck. I knew C++, but I was sitting there thinking:

How do I know what the anti-cheat is doing?
How do I find a bypass?
How do I decrypt certain memory regions?
How do I make a driver?
How do I even load and map the driver?
How do I make the driver undetected?

That’s where assembly and deeper system knowledge come in. I wish I had started there first, because skipping that step and jumping straight into C++ makes everything extremely confusing.


Learning Operating System Fundamentals

After deciding to learn the OS properly, spend serious time on it. This will take a while, so don’t just watch random YouTube videos. Actually buy a book and study consistently for several months.

Spend around six months learning the fundamentals so you truly understand what’s happening behind the scenes.

Once you have a solid grasp of:

• Memory
• Processes
• System calls
• Kernel vs usermode
• Windows internals

you’ll be in a much better position to understand everything that comes later.


Learning Cheat Engine (Understanding Memory)

After learning the OS fundamentals, you can move toward the practical side using Cheat Engine.

Use it on a random game and explore it extensively. The goal here isn’t to make cheats it’s to understand what you’re actually looking at.

A lot of people jump straight into cheat development without understanding the underlying concepts. Even some experienced people in the scene struggle to explain the backend of what they’re doing.

Spend time learning:

• What values represent in memory
• Pointer scanning
• Structure dissection
• What instructions modify values
• How memory changes during gameplay

This stage builds intuition about how programs behave in memory.



Learning C and Basic Assembly

Before moving into reversing tools, you should know:

• C programming
• Basic assembly

You’ll usually pick up the fundamentals of assembly naturally while studying computer science and operating system internals.

You don’t need to be an assembly expert, but you should at least be able to read and understand basic instructions.



Learning IDA64 (Interface and Tooling)

After that, download IDA64 and focus on learning the interface and tooling first.

This part is extremely important. There’s no point starting serious reverse engineering if you don’t understand the tools you’re using.

Learn things like:

• What different windows and views do
• Navigation shortcuts
• What Ctrl+C, Ctrl+F12, etc. actually do
• How cross-references work
• How functions and structures are represented

Basically, learn everything about the tool itself before trying to reverse complex programs. You need to fully utilize the entire tool suite available to you.



Practicing on Simple Games (AssaultCube)

Once you’re comfortable with the interface, download a simple game like AssaultCube.

Start exploring things that interest you, such as:

• Player position
• Health values
• Other gameplay structures

Try to rely less on Cheat Engine and more on reversing tools like IDA64 and plugins. Modern games often detect Cheat Engine immediately, so learning to work without relying on it is important.

The goal here is simply learning how to locate values and understand game structures.



Moving to Unity Games

After getting comfortable with basic reversing, move to Unity games.

Unity is a good place to start because:

• Many games have weak or no anti-cheat
• Code is often easier to analyze
• Systems like Mono make things easier to inspect

Technically this is usually obfuscation rather than true encryption, but it still teaches you how developers hide values and structures.

You’ll also start encountering things like:

• Metadata protection
• Encrypted structures
• Blocked memory regions

This gives you exposure to real-world techniques used to hide game data.



Learning About Encryption and Protection

At this stage, spend time studying different encryption or protection techniques.

For example, if you hear about something like CR3-based protections, don’t jump into something like Valorant and try to reverse it. Instead, research the concept itself.

Understand:

• What the protection does
• Why it exists
• How it works internally

The goal is simply knowledge, not bypassing anything specific.



Building Your First Cheat (No Anti-Cheat)

After roughly 6+ months of learning, try building something simple for a game that does not have anti-cheat.

By now you should have a basic understanding of:

• Reversing
• Memory structures
• C++
• Basic assembly

Create a simple project and see what’s possible. During this stage you’ll learn a lot through experimentation.

You’ll also start realizing that sometimes things aren’t named clearly, or values are stored in unusual ways. Learning how to figure these things out is part of the process.

Start building things in C++ in usermode first.



Learning Driver Development

Once you’re comfortable with usermode development, move toward driver development.

At this stage you’ll start learning:

• How drivers are loaded
• What driver mapping is
• What happens behind the scenes during driver loading

There are tools like kdmapper, but personally I believe building things yourself from scratch teaches you far more.

This step helps you understand:

• How drivers operate
• How they interact with the kernel
• How they can be loaded safely and hidden



Kernel Communication (Ring0 - Usermode)

After understanding driver loading, the next step is learning communication between:

• Ring0 (kernel space)
• Usermode applications

At this point you’ll typically read memory from kernel space instead of usermode.

This requires building communication systems between your driver and your usermode application.


Reality of Anti-Cheats

Eventually you’ll combine everything you’ve learned into a full project.

This is usually where things become difficult for beginners. You’ll run into anti-cheats and start getting banned frequently.

At this stage you’ll probably need to learn about:

• Hardware spoofing
• System identifiers
• Detection methods

You can either continue practicing on smaller games or invest serious time learning how these systems work.



My Personal Experience

I’m still learning myself.

My first project was for a Unity game. I spent about three months just finding and building a bypass.

During that time I encountered multiple protection systems, including a kernel-level anti-cheat that monitored memory reads. It could detect when certain addresses were accessed too frequently and flag them.

For example, similar systems to what Valorant uses will flag repeated reads of sensitive memory regions.

I had to figure out ways to:

• Avoid reading certain addresses too frequently
• Decrypt protected memory regions
• Locate signatures for hidden data
• Fix logic errors in my own code that were triggering flags

I also discovered three different encryption layers designed to push you away from the actual values you’re targeting.

Eventually I managed to make it work, but the project only lasted about two months before the developers started patching it.

Because I spent three months building a single bypass only for it to be patched quickly, things became extremely stressful. I had customers waiting on me, and as an honest developer you don’t want to leave customers hanging or risk getting them banned.

A ban wave eventually happened, and it put a lot of pressure on me. I didn’t want to rush another bypass and cause more bans, but at the same time I was getting hundreds of DMs every day.

So I tried hiring external developers to help speed things up. Unfortunately, I got scammed multiple times. One developer disappeared with the money, and another sent rushed, low-quality work.

Yes, it might look bad saying it out loud, but the goal at the time was just to have something basic running while I worked on a proper solution myself.

Eventually I realized that approach wasn’t sustainable. In the end, I had to shut everything down completely and start from scratch.

After that, I rebuilt everything privately and focused on doing things properly. Since then, I haven’t had any major issues.

Right now I make roughly $1200 a month with a very small client base, and I keep things extremely controlled.

Even today I still go back into the game and analyze it further. I keep reversing and studying it until I fully understand it. I won’t move on to the next project unless I’m confident I can completely reverse the game and understand how everything works internally.

What I’m trying to say is: knuckle down and learn everything properly. Don’t skip steps.

You need knowledge of every part of the computer, just like you need knowledge of every part of cheat development. If you only understand one piece of the system, you’ll eventually hit bottlenecks.

It’s the same idea as a physical computer: if one component is weak, the entire system suffers. Development works the same way if your knowledge is limited in one area, it will eventually hold you back.

I’ve been learning for about two years now, and just like you I want to move into more challenging projects.

My goal for this year is to build something for COD, and after that eventually move on to VGK.



More yap

Don’t rush the process. Focus on understanding the system first, not just making something that works. If you skip core knowledge, you’ll eventually hit bottlenecks that stop you from progressing. Learn every layer of the computer properly how the OS works, how memory works, how programs execute, and how protections are implemented.

Treat it like a long-term skill, not something you rush for quick results. The more complete your knowledge is, the easier everything becomes later.



Roadmap (Step-by-Step)

1. Operating System Fundamentals
• Study Windows internals
• Memory management
• Processes and threads
• System calls
• Kernel vs usermode
• Drivers and security functions

2. Programming Foundations
• Learn C
• Learn C++
• Learn basic x86/x64 assembly
• Understand how compiled code translates to assembly

3. Memory Analysis with Cheat Engine
• Practice scanning values
• Pointer scanning
• Structure dissection
• Understanding instructions modifying memory
• Observe how programs behave in memory

4. Reverse Engineering Tools
• Learn IDA64 interface
• Navigation shortcuts
• Cross references
• Function analysis
• Structure reconstruction
• Fully understand the tool before serious reversing

5. Practice on Simple Games
• Start with games like AssaultCube
• Find player position
• Find health values
• Understand game structures

6. Move to Unity Games
• Analyze Mono/IL2CPP structures
• Learn about obfuscation
• Practice locating hidden values
• Understand metadata and structure layouts

7. Study Protection & Encryption Concepts
• Research memory protection techniques
• Learn how data may be hidden or obfuscated
• Understand system concepts like CR3 and memory translation

8. Build a Basic Project (Usermode)
• Create something simple in C++
• Work in usermode first
• Learn how to read program memory and process data structures

9. Driver Development
• Learn Windows driver architecture
• Understand driver loading
• Learn how kernel components interact with the OS

10. Kernel ↔ Usermode Communication
• Build communication between kernel components and user applications
• Understand how data moves between system layers

11. Long-Term Practice
• Continue analyzing software deeply
• Study protection systems and detection methods
• Improve reversing and low-level knowledge over time
Dev7 is offline  
Reply


Similar Threads Similar Threads
Silkroad Online Sever Files - Wanting To Learn Myself!
05/10/2021 - Silkroad Online - 3 Replies
I'm not here to say im going to make the next big server and throw out a clone pserver and act like ive created something insane lol, but i would love to have access to the latest/best version of the silkroad pserver files and learn how to work with it and have a shot at creating something, which maybe one day could be released publicly. I'm a web developer so have an understanding of code and can learn fast anything new like this, but nothing as far as what silkroad would use, but honestly...
Someone learn me how to make CF hack and i make it every week!
02/05/2016 - CrossFire Hacks, Bots, Cheats & Exploits - 14 Replies
Teach me how to make crossfire hacks if its detected i will make a new one and so on.
[Selling] learn 2 learn (Kurs)
08/24/2015 - Trading - 1 Replies
Hey, da in vielen Teilen Deutschlands langsam wieder die Schulzeit beginnt (und ich das heute erfahren durfte), damit auch die Lernezeit wieder beginnt, wollte ich euch folgendes Vorstellen. Und zwar ist das Lernen heute überall notwendig. Vom Leben als Schüler, zum Auszubildenden oder Studenten, bis hin zum Beruf -überall muss gerlernt werden. Meistens ist es aber dann so, dass es schwer ist, die ganzen Infos in seinen Schädel zu bekommen. Dafür ist dieser Kurs. Ich bin...
wanting to learn
03/28/2009 - Dekaron - 11 Replies
was wondering if any one could pass their hacking skills to me tired of just getting codes from others n such wanna make something of my own n stuff if not i understand if so msn is [email protected]



All times are GMT +1. The time now is 18:54.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.