Post: JTAGRPC v0.2 Make your own App + return values!
07-16-2013, 01:25 PM #1
Kooax
Haxor!
(adsbygoogle = window.adsbygoogle || []).push({});
JTAGRPC v0.2


Lib DLL - Make your own C# Apps!
Return Value of Function (Will most likely always be uint like XDRPC)
Remote Procedure Calls
Easy to use UI
Compatible on RGH/JTAG/Devkit
Auto String Marshalling


How to use:


Connect

    if (cBox.Connect()) 
{
* cBox.dbgr();
}


Call Function

    [CENTER]uint returnValue = JtagRPC.Call(<function address>, <arg 1>, <arg 2>, <arg 3>,..); 
//Example Usage:
*
uint weapIndex = JtagRPC.Call(0x82210640, "ak47_mp");//Gets Weapon Index for AK-47
uint pstate = 0x830CBF80;//Player State ptr for Client 0
uint ent = 0x82F03600;//Entity ptr for Client 0
JtagRPC.Call(0x82210BC8, pstate, weapIndex, 0, 1);//Give the AK-47
JtagRPC.Call(0x821D4A00, ent, weapIndex, 0, 0);//Initialize The Ammo
[/CENTER]

Get memory


    byte[] result = cBox.GetMem(<address>,<numbytes>Winky Winky; 
//Example Usage
byte[] result = cBox.GetMem(0x82000000,12Cool Man (aka Tustin);//Returns the first 128 bytes of the title


Set memory


    cBox.SetMem(<address>,<data>Winky Winky; 
//Example Usage
byte[] test = new byte[]{0x01,0x02,0x03};
cBox.SetMem(0x82200004,test);




Need any help feel free to PM!

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo