| View previous topic :: View next topic |
| Author |
Message |
SlashOverflow How do I cheat?
Reputation: 0
Joined: 14 Jul 2011 Posts: 8
|
Posted: Thu Jul 14, 2011 12:45 am Post subject: C# help please |
|
|
Hello, I am new to these forums and I am asking for help with creating a trainer in c#, I am pretty new to c#, and I don' t know too much about it.
I have been following these tutorials two tutorials from a guy on youtube (sorry I am new I can not post urls yet).
Although he did not make a part three, so I don't really know how to inject an address into the application, could someone give me a tutorial on that or a whole new easy tutorial on making a trainer with cheat engine and c#?
Also can someone give me a link to xor's guide for godmode 2007 or another version, because with the game that I am playing, a headshot is an instant kill, and freezing your health wont work.
P.S Wow thats ironic look at my tag (which will probably change in the future its "How do I cheat")
|
|
| Back to top |
|
 |
AhMunRa Grandmaster Cheater Supreme
Reputation: 27
Joined: 06 Aug 2010 Posts: 1117
|
|
| Back to top |
|
 |
KryziK Expert Cheater
Reputation: 3
Joined: 16 Aug 2009 Posts: 199
|
Posted: Fri Jul 15, 2011 3:46 pm Post subject: |
|
|
You may also want to take a look at this.
It's a bit out-dated, but still very useful. I will be coming out with a newer version sooner or later. PM me if you need any extra help.
|
|
| Back to top |
|
 |
SlashOverflow How do I cheat?
Reputation: 0
Joined: 14 Jul 2011 Posts: 8
|
Posted: Sat Jul 16, 2011 3:00 am Post subject: |
|
|
The game that I am talking about is ace of spades, a headshot is an instant kill, and even if you freeze your health it wont work. There is no blinking or knockback, its a war game and even if you get hit by a bullet nothing happens except your health getting lost, also there are different ammount of health damage taken for where you get hit, ex. head instant kill/100, chest 40 etc. You might say freeze your health at 100 or make it more, but I have tried both and they have both failed. Google ace of spades wiki if you want to go check that out, also their web is ace-spades. you know what, I cant post urls yet.
(com)
|
|
| Back to top |
|
 |
AhMunRa Grandmaster Cheater Supreme
Reputation: 27
Joined: 06 Aug 2010 Posts: 1117
|
Posted: Sun Jul 17, 2011 10:53 am Post subject: |
|
|
A head shot may not follow the same bit of code IE: health is equal to 100, get shot in leg = health - value = newHealth, it may be
| Code: |
if !headshot:
newhealth = health - shotval;
else:
headshot = true; // headshot instant death
|
The code may jump to the headshot handler, assuming there is one. That would be one explanation why freezing the health is working for you but not for headshots.
_________________
<Wiccaan> Bah that was supposed to say 'not saying its dead' lol. Fixing >.> |
|
| Back to top |
|
 |
SlashOverflow How do I cheat?
Reputation: 0
Joined: 14 Jul 2011 Posts: 8
|
Posted: Sun Jul 17, 2011 11:09 am Post subject: |
|
|
| Ya, so how would I counter this?
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sun Jul 17, 2011 1:49 pm Post subject: |
|
|
You will need to find the routine that determines where the bullet is hitting the player, or when it is determined to be a headshot, and prevent it from happening.
_________________
- Retired. |
|
| Back to top |
|
 |
SlashOverflow How do I cheat?
Reputation: 0
Joined: 14 Jul 2011 Posts: 8
|
Posted: Mon Jul 18, 2011 1:06 am Post subject: |
|
|
| By the way the trainer that dark john made is only for the tutorial of cheat engine, I need a whole tutorial on how to apply memory addresses to my trainer and make every button apply the hack. Once I am able to post urls, I will show you the tutorial that I am following on youtube.
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Mon Jul 18, 2011 7:24 am Post subject: |
|
|
| SlashOverflow wrote: | | By the way the trainer that dark john made is only for the tutorial of cheat engine, I need a whole tutorial on how to apply memory addresses to my trainer and make every button apply the hack. Once I am able to post urls, I will show you the tutorial that I am following on youtube. |
If you want a small tip, don't follow YouTube tutorials at all. They are just made by kids that copy and pasted code and are basically just explaining how to copy and paste it for you too. If you want to learn how to program, look at websites that are based on actually teaching you, or buy some books.
Google for C# tutorials, the majority of the first page is all valid sites. Also don't get into programming just to make trainers, or at least don't just try to jump straight into coding them. Actually take your time to learn the basics of the language so you aren't constantly having to ask basic questions just because you skipped and went straight into a specific project.
_________________
- Retired. |
|
| Back to top |
|
 |
|