(adsbygoogle = window.adsbygoogle || []).push({});
If anyone finds any bugs, please feel free to contact me. (This is my first library (.dll), so i feel their is a possibility of bugs/errors.)
CDRPC =
CexDexRPC
This is CEX and DEX compatible. [/CENTER]
CREDITS:
OBVIOUSLY CHOCO :p
and iMCSx
and BadLuckBrian
This is Choco's RPC converted for CEX compatibilty, with some extra functions all in a library.dll 
I have converted Choco's RPC from TMAPI to Ps3lib, and added a few extra things to beef it up.
This has Everything Chocos RPC has, and more.
To use, just use CDRPC.(then the extensions will go here)
Includes:
SV_GameSendServerCommand
iPrintin
iPrintinBold
Cbuf_Addtext
GiveWeapon
SetWeapon
SetModel
Set Vision
FOV
Offsets
To Enable:
CDRPC.Enable();
Few Perks:
CDRPC.CEX or CDRPC.DEX or CDRPC.CRPC for Get/Set Memory
CDRPC.CEX.Shutdown/ResetToXMB or CDRPC.DEX.Shutdown/PowerOn (rebootps3/shutdown/TurnOn)
etc.
Also use offsets already in .dll
EXAMPLES:
(CEX ONLY)
byte[] namechange = Encoding.ASCII.GetBytes("^1BaSs_HaXoR");
Array.Resize(ref namechange, namechange.Length + 1);
CDRPC.CEX.SetMemory(CDRPC.Offsets.ChangeName, namechange);
(DEX ONLY)
byte[] namechange = Encoding.ASCII.GetBytes("^1BaSs_HaXoR");
Array.Resize(ref namechange, namechange.Length + 1);
CDRPC.DEX.SetMemory(CDRPC.Offsets.ChangeName, namechange);
or
(BOTH CEX/DEX)
byte[] namechange = Encoding.ASCII.GetBytes("^1BaSs_HaXoR");
Array.Resize(ref namechange, namechange.Length + 1);
CDRPC.CRPC.SetMemory(CDRPC.Offsets.ChangeName, namechange);
or
(BOTH CEX/DEX)
byte[] basshaxor = new byte[] { 0x5E, 0x31, 0x42, 0x61, 0x53, 0x73, 0x5f, 0x48, 0x61, 0x58, 0x6f, 0x52, 0x0d, 0a }
CDRPC.CRPC.SetMemory(CDRPC.Offsets.ChangeName, basshaxor);
(BOTH CEX/DEX, Using Offsets like 'ping', 'ammo' etc.)
byte[] showping = new byte[] { 0x01, };
CDRPC.CRPC.SetMemory(CDRPC.Offsets.ShowPing, showping);
What does this have?
This has all the MAIN functions of Ps3lib, so no need for ps3lib really, just plop this in your refrences.
This has Hudelements, gamesendservercommand, iprintin, iprintinbold, Cbuf_Addtext, SetModel,
SetWeapon, GiveWeapon
Examples for PS3lib (cex/dex) setmemory/getmemory:
CDRPC.Setmemory(OFFSET, BYTE);
CDRPC.Getmemory(OFFSET, BYTE);
(In other words, CDRPC = PS3Libs Current Selected API (CEX/DEX)
[SUP][/SUP]
Download: You must login or register to view this content.
Source: You must login or register to view this content.