| View previous topic :: View next topic |
| Author |
Message |
reavenz Newbie cheater
Reputation: 0
Joined: 24 Apr 2012 Posts: 11
|
Posted: Sun May 13, 2012 10:15 pm Post subject: C# Game Trainer Undetect Module |
|
|
how to make undetect module in C# like WritePointer, WriteProcessMemory, Open Process, etc.
i found some Program thats name is "VB.Net Undetect Module Maker by PheNix"
But, thats for VB.. not C#..
Anybody can help me?
thanks  |
|
| Back to top |
|
 |
Chris12 Expert Cheater
Reputation: 1
Joined: 27 Apr 2012 Posts: 103
|
Posted: Mon May 14, 2012 4:39 am Post subject: |
|
|
1. undetected for which anti-cheat?
2. its still .net languge, you can decompile it to C# (if you have the source its even easier) |
|
| Back to top |
|
 |
661089799107 Expert Cheater
Reputation: 3
Joined: 25 Jan 2009 Posts: 186
|
Posted: Mon May 14, 2012 6:02 am Post subject: |
|
|
| You could try using ZwReadVirtualMemory, and ZwOpenProcess. |
|
| Back to top |
|
 |
reavenz Newbie cheater
Reputation: 0
Joined: 24 Apr 2012 Posts: 11
|
Posted: Mon May 14, 2012 10:36 am Post subject: |
|
|
| Chris12 wrote: | 1. undetected for which anti-cheat?
2. its still .net languge, you can decompile it to C# (if you have the source its even easier) |
1. X-Trap.. in VB6 i can make it.. but im newbie in C#
2. i mean. i want to make cheat with undetect module in C#.. i have application called "VB.Net Undetect Module Maker by PheNix" thats can Generate Undetect Module. but in VB.net not in C#
| Blacknight wrote: | | You could try using ZwReadVirtualMemory, and ZwOpenProcess. |
Teach me please  |
|
| Back to top |
|
 |
NotReallySureWhatGoesHere Expert Cheater
Reputation: -1
Joined: 20 Feb 2012 Posts: 110
|
Posted: Mon May 14, 2012 11:23 am Post subject: |
|
|
| reavenz wrote: | | Chris12 wrote: | 1. undetected for which anti-cheat?
2. its still .net languge, you can decompile it to C# (if you have the source its even easier) |
1. X-Trap.. in VB6 i can make it.. but im newbie in C#
2. i mean. i want to make cheat with undetect module in C#.. i have application called "VB.Net Undetect Module Maker by PheNix" thats can Generate Undetect Module. but in VB.net not in C#
| Blacknight wrote: | | You could try using ZwReadVirtualMemory, and ZwOpenProcess. |
Teach me please  |
http://www.developerfusion.com/tools/convert/vb-to-csharp/ |
|
| Back to top |
|
 |
reavenz Newbie cheater
Reputation: 0
Joined: 24 Apr 2012 Posts: 11
|
Posted: Mon May 14, 2012 2:30 pm Post subject: |
|
|
hmm.. okay,, thanks..
Module done.
but new problem about code in form,,
because if code form C# --> VB.Net is invalid
==a |
|
| Back to top |
|
 |
NotReallySureWhatGoesHere Expert Cheater
Reputation: -1
Joined: 20 Feb 2012 Posts: 110
|
Posted: Mon May 14, 2012 4:48 pm Post subject: |
|
|
| reavenz wrote: | hmm.. okay,, thanks..
Module done.
but new problem about code in form,,
because if code form C# --> VB.Net is invalid
==a |
Please post about your error(s). |
|
| Back to top |
|
 |
reavenz Newbie cheater
Reputation: 0
Joined: 24 Apr 2012 Posts: 11
|
Posted: Mon May 14, 2012 8:38 pm Post subject: |
|
|
| One Bored Motherfucka wrote: | | reavenz wrote: | hmm.. okay,, thanks..
Module done.
but new problem about code in form,,
because if code form C# --> VB.Net is invalid
==a |
Please post about your error(s). |
| Code: | myMemory.ReadProcess = myProcess[0];
myMemory.Open();
int pointerAddress = HexToDec(AmmoPointer);
int [] pointerOffset = AmmoOffset;
int bytesWritten;
byte[] valueToWrite = BitConverter.GetBytes(AmmoToFill);
string writtenAddress = myMemory.PointerWrite((IntPtr)pointerAddress, valueToWrite, pointerOffset, out bytesWritten);
myMemory.CloseHandle(); |
-- line 1 col 1: EOF expected |
|
| Back to top |
|
 |
|