Post: [Open Source] Multi CoD All Clients Mod Menu Base C#
11-11-2013, 03:18 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Yo Guys,

i dont really know where to release this source in which forum.
But i hope i havn´t made a mistake in this source so hopefully everything works if there any bugs please report.
So the lets go on to the main part.

    What u need :
C# skills
Hud Elements for you selected CoD
Button Monitoring for you selected CoD
Right offsets for you selected CoD
a brain


In my eyes best way for Button Monitoring
    
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PS3Lib;

namespace ChangeTextHere
{
class ChangeTextHere
{
public static PS3API DEX = new PS3API();
public class Buttons
{
public static UInt32
X = 1843200,
O = 147456,
Square = 4,
Triangle = 134217728,
L3 = 1088,
R3 = 32,
L2 = 131328,
R2 = 512,
L1 = 2147487744,
R1 = 128,
Crouch = 16384,
Prone = 32768,
StartButton = 67108864;
}
public static Boolean ButtonPressed(Int32 clientIndex, UInt32 Button)
{
if (DEX.Extensions.ReadUInt32((UInt32)0x000000+ ((uint)clientIndex * 0x0000) + 0x0000) == Button)
return true;
else return false;
}
public static Int32 G_Client(Int32 clientIndex)
{
return (Int32)0x000000+ (0x000 * clientIndex);
}
public static UInt32 ReadUInt32(uint offset)
{
Byte[] YoLo = GetMemory(offset, 4);
Array.Reverse(YoLo, 0, 4);
return BitConverter.ToUInt32(YoLo, 0);
}
public static byte[] GetMemory(uint address, int length)
{
byte[] buffer = new byte[length];
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, Bo1_Huds.Form1.PS3.ProcessID, 0L, (ulong)address, ref buffer);
return buffer;
}
public static byte[] BIND = new byte[4];
public static uint DetectButton(int clientID)
{
// Reverse Byte[] to UInt32 and detect them.
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, Bo1_Huds.Form1.PS3.ProcessID, 0, 0x0000000+ ((uint)clientID * 0x0000) + 0x0000, ref BIND);
return System.BitConverter.ToUInt32(BIND, 0);
}
}
}

Change this In My Source if you want :
    
public static Boolean IsButtonR2(Int32 client)
{
if (ChangeTextHere.DetectButton(client) == ChangeTextHere.Buttons.R2)
{
return true;
}
return false;
}
public static Boolean IsButtonSquare(Int32 client)
{
if (ChangeTextHere.DetectButton(client) == ChangeTextHere.Buttons.Square)
{
return true;
}
return false;
}


Thanks To seb5594 and iMCSx
DONT FORGET TO CHANGE ALL OFFSETS ALSO IN MY SOURCE!!!

But dont complain about the base if u dont understand anything, for me its easy to understand so hopefully for u too.
I think thats all that is possible to make this for all CoD's.
Hope You Enjoy it so leave a like and a comment and report some bugs.
Btw dont get scared of the 4 Menu Monitor's they just make the menu very smooth.

Download : You must login or register to view this content.

Over a small donation i would appreciate
Paypal: [email][email protected][/email]


Tool Picture :
[ATTACH=CONFIG]27921[/ATTACH]
You must login or register to view this content.

VirusTool : You must login or register to view this content.
Dont Know Why 2 say trojan.

Credits :
Me for creating this and make the base perfekt
seb5594 for the Button Monitoring
NGU-Bo for the main part/idea of the base
xYARDSALEx same like Bo
iMCSx For PS3Lib.dll, ps3tmapi_net.dll and Button Monitoring

#Peace im out

Any Problems or need Help?
Message me on Skype : sebastian.gerner2
Last edited by lollo1000 ; 11-11-2013 at 05:35 PM.

The following 12 users say thank you to lollo1000 for this useful post:

ϟ c0rruption ϟ, Authority Modz, EliteHackzPS3, Beats, ImAzazel, InfinityISB4CK, Mango_Knife, TeRmiiMoDz, ThePaaqoHD, worrorfight, Fatality
11-11-2013, 04:22 PM #2
ItsMagiicsz
Bounty hunter
nice post
11-11-2013, 04:35 PM #3
Nice Post Smile
11-11-2013, 04:47 PM #4
InfinityISB4CK
Do a barrel roll!
Nice Release Bro Drack
11-11-2013, 07:14 PM #5
Originally posted by InfinityISB4CK View Post
Nice Release Bro Drack


Thanks Happy
11-11-2013, 08:27 PM #6
Nice!
11-12-2013, 01:27 PM #7
Originally posted by AuthorityModz View Post
Nice!


thanks Happy
11-12-2013, 02:15 PM #8
RMAD
Keeper
Originally posted by lollo1000 View Post
Yo Guys,

i dont really know where to release this source in which forum.
But i hope i havn´t made a mistake in this source so hopefully everything works if there any bugs please report.
So the lets go on to the main part.

    What u need :
C# skills
Hud Elements for you selected CoD
Button Monitoring for you selected CoD
Right offsets for you selected CoD
a brain


In my eyes best way for Button Monitoring
    
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PS3Lib;

namespace ChangeTextHere
{
class ChangeTextHere
{
public static PS3API DEX = new PS3API();
public class Buttons
{
public static UInt32
X = 1843200,
O = 147456,
Square = 4,
Triangle = 134217728,
L3 = 1088,
R3 = 32,
L2 = 131328,
R2 = 512,
L1 = 2147487744,
R1 = 128,
Crouch = 16384,
Prone = 32768,
StartButton = 67108864;
}
public static Boolean ButtonPressed(Int32 clientIndex, UInt32 Button)
{
if (DEX.Extensions.ReadUInt32((UInt32)0x000000+ ((uint)clientIndex * 0x0000) + 0x0000) == Button)
return true;
else return false;
}
public static Int32 G_Client(Int32 clientIndex)
{
return (Int32)0x000000+ (0x000 * clientIndex);
}
public static UInt32 ReadUInt32(uint offset)
{
Byte[] YoLo = GetMemory(offset, 4);
Array.Reverse(YoLo, 0, 4);
return BitConverter.ToUInt32(YoLo, 0);
}
public static byte[] GetMemory(uint address, int length)
{
byte[] buffer = new byte[length];
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, Bo1_Huds.Form1.PS3.ProcessID, 0L, (ulong)address, ref buffer);
return buffer;
}
public static byte[] BIND = new byte[4];
public static uint DetectButton(int clientID)
{
// Reverse Byte[] to UInt32 and detect them.
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, Bo1_Huds.Form1.PS3.ProcessID, 0, 0x0000000+ ((uint)clientID * 0x0000) + 0x0000, ref BIND);
return System.BitConverter.ToUInt32(BIND, 0);
}
}
}

Change this In My Source if you want :
    
public static Boolean IsButtonR2(Int32 client)
{
if (ChangeTextHere.DetectButton(client) == ChangeTextHere.Buttons.R2)
{
return true;
}
return false;
}
public static Boolean IsButtonSquare(Int32 client)
{
if (ChangeTextHere.DetectButton(client) == ChangeTextHere.Buttons.Square)
{
return true;
}
return false;
}


Thanks To seb5594 and iMCSx
DONT FORGET TO CHANGE ALL OFFSETS ALSO IN MY SOURCE!!!

But dont complain about the base if u dont understand anything, for me its easy to understand so hopefully for u too.
I think thats all that is possible to make this for all CoD's.
Hope You Enjoy it so leave a like and a comment and report some bugs.
Btw dont get scared of the 4 Menu Monitor's they just make the menu very smooth.

Download : You must login or register to view this content.

Over a small donation i would appreciate
Paypal: [email][email protected][/email]


Tool Picture :
[ATTACH=CONFIG]27921[/ATTACH]
You must login or register to view this content.

VirusTool : You must login or register to view this content.
Dont Know Why 2 say trojan.

Credits :
Me for creating this and make the base perfekt
seb5594 for the Button Monitoring
NGU-Bo for the main part/idea of the base
xYARDSALEx same like Bo
iMCSx For PS3Lib.dll, ps3tmapi_net.dll and Button Monitoring

#Peace im out

Any Problems or need Help?
Message me on Skype : sebastian.gerner2




n!ce job <33
11-12-2013, 03:16 PM #9
INSAN3LY_D34TH
INSAN3LY GAMING
Originally posted by lollo1000 View Post
Yo Guys,

i dont really know where to release this source in which forum.
But i hope i havn´t made a mistake in this source so hopefully everything works if there any bugs please report.
So the lets go on to the main part.

    What u need :
C# skills
Hud Elements for you selected CoD
Button Monitoring for you selected CoD
Right offsets for you selected CoD
a brain


In my eyes best way for Button Monitoring
    
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PS3Lib;

namespace ChangeTextHere
{
class ChangeTextHere
{
public static PS3API DEX = new PS3API();
public class Buttons
{
public static UInt32
X = 1843200,
O = 147456,
Square = 4,
Triangle = 134217728,
L3 = 1088,
R3 = 32,
L2 = 131328,
R2 = 512,
L1 = 2147487744,
R1 = 128,
Crouch = 16384,
Prone = 32768,
StartButton = 67108864;
}
public static Boolean ButtonPressed(Int32 clientIndex, UInt32 Button)
{
if (DEX.Extensions.ReadUInt32((UInt32)0x000000+ ((uint)clientIndex * 0x0000) + 0x0000) == Button)
return true;
else return false;
}
public static Int32 G_Client(Int32 clientIndex)
{
return (Int32)0x000000+ (0x000 * clientIndex);
}
public static UInt32 ReadUInt32(uint offset)
{
Byte[] YoLo = GetMemory(offset, 4);
Array.Reverse(YoLo, 0, 4);
return BitConverter.ToUInt32(YoLo, 0);
}
public static byte[] GetMemory(uint address, int length)
{
byte[] buffer = new byte[length];
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, Bo1_Huds.Form1.PS3.ProcessID, 0L, (ulong)address, ref buffer);
return buffer;
}
public static byte[] BIND = new byte[4];
public static uint DetectButton(int clientID)
{
// Reverse Byte[] to UInt32 and detect them.
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, Bo1_Huds.Form1.PS3.ProcessID, 0, 0x0000000+ ((uint)clientID * 0x0000) + 0x0000, ref BIND);
return System.BitConverter.ToUInt32(BIND, 0);
}
}
}

Change this In My Source if you want :
    
public static Boolean IsButtonR2(Int32 client)
{
if (ChangeTextHere.DetectButton(client) == ChangeTextHere.Buttons.R2)
{
return true;
}
return false;
}
public static Boolean IsButtonSquare(Int32 client)
{
if (ChangeTextHere.DetectButton(client) == ChangeTextHere.Buttons.Square)
{
return true;
}
return false;
}


Thanks To seb5594 and iMCSx
DONT FORGET TO CHANGE ALL OFFSETS ALSO IN MY SOURCE!!!

But dont complain about the base if u dont understand anything, for me its easy to understand so hopefully for u too.
I think thats all that is possible to make this for all CoD's.
Hope You Enjoy it so leave a like and a comment and report some bugs.
Btw dont get scared of the 4 Menu Monitor's they just make the menu very smooth.

Download : You must login or register to view this content.

Over a small donation i would appreciate
Paypal: [email][email protected][/email]


Tool Picture :
[ATTACH=CONFIG]27921[/ATTACH]
You must login or register to view this content.

VirusTool : You must login or register to view this content.
Dont Know Why 2 say trojan.

Credits :
Me for creating this and make the base perfekt
seb5594 for the Button Monitoring
NGU-Bo for the main part/idea of the base
xYARDSALEx same like Bo
iMCSx For PS3Lib.dll, ps3tmapi_net.dll and Button Monitoring

#Peace im out

Any Problems or need Help?
Message me on Skype : sebastian.gerner2


No offense but that menu coding is terrible. Make it cleaner and alot smaller. You dont need different timers for one menu or an if statement for every single option

The following user thanked INSAN3LY_D34TH for this useful post:

Whos Your Host

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo