You are viewing our Forum Archives. To view or take place in current topics click here.
I Need Help Creating a XRPC tool for ghosts
Posted:
I Need Help Creating a XRPC tool for ghostsPosted:
Status: Offline
Joined: Aug 09, 201410Year Member
Posts: 6
Reputation Power: 0
Hey, I was wondering if anyone can help me. This is what I have so far:
I think my problem is that I don't have JRCP.dll, I have the JRCP.xex but not the dll.
If someone can please help me then that would make my day thanks.
Last edited by HaxCodes ; edited 1 time in total
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using XRPCLib;
using XDevkit;
using System.Threading;
namespace WindowsFormsApplication1
{
public partial class Form1 : DevComponents.DotNetBar.Metro.MetroForm
{
XRPC Jtag = new XRPC();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
Jtag.Connect();
if (Jtag.activeConnection)
{
Jtag.Notify(XRPC.XNotiyLogo.FLASHING_DOUBLE_SIDED_HAMMER, "XeLTpF XRPC Tool Made By HaxCodes");
System.Windows.Forms.MessageBox.Show("XeLTpF XRPC Tool Connected");
label1.Text = ("Connected");
}
else
{
System.Windows.Forms.MessageBox.Show("XeLTpF XRPC Tool Not Connected");
label1.Text = ("Failed");
}
}
private void label1_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
if (button2.Text == "No Recoil")
{
label4.Text = "On";
button2.Text = "No Recoil ";
Jtag.Call(0x822C8864, new byte[] { 0x60, 0x00, 0x00, 0x00 });
Jtag.Call(0x824D7AE8, 0, -1, "c""No Recoil = On");
}
else if (button2.Text == "No Recoil ")
{
label4.Text = "Off";
button2.Text = "No Recoil";
Jtag.Call(0x824D7AE8, 0, -1, "c""No Recoil = Off");
}
}
private void label4_Click(object sender, EventArgs e)
{
}
}
}
I think my problem is that I don't have JRCP.dll, I have the JRCP.xex but not the dll.
If someone can please help me then that would make my day thanks.
I have XRPC.xex and added XRPC.dll as a referance.
Last edited by HaxCodes ; edited 1 time in total
#2. Posted:
Status: Offline
Joined: Jan 30, 201014Year Member
Posts: 935
Reputation Power: 45
Status: Offline
Joined: Jan 30, 201014Year Member
Posts: 935
Reputation Power: 45
What exactly do you need help with?
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Aug 09, 201410Year Member
Posts: 6
Reputation Power: 0
Well, It can connect to the Jtag but the "Jtag.Notify" doesn't come up, also I don't think the offsets are the right offsets for ghosts. I honestly think that I need JRCP.dll so I can add it as a reference in VB.
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Aug 11, 201410Year Member
Posts: 66
Reputation Power: 3
Status: Offline
Joined: Aug 11, 201410Year Member
Posts: 66
Reputation Power: 3
HaxCodes wrote Well, It can connect to the Jtag but the "Jtag.Notify" doesn't come up, also I don't think the offsets are the right offsets for ghosts. I honestly think that I need JRCP.dll so I can add it as a reference in VB.yes you need jrpc and you should convet the hole tool to jrpc because it will work so much better
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Aug 09, 201410Year Member
Posts: 6
Reputation Power: 0
Thanks guys for the support, I now have JRPC.dll and I hope that I this will help :3
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Feb 05, 201311Year Member
Posts: 2,216
Reputation Power: 98
Status: Offline
Joined: Feb 05, 201311Year Member
Posts: 2,216
Reputation Power: 98
HaxCodes wrote Thanks guys for the support, I now have JRPC.dll and I hope that I this will help :3
Well downloading it won't do much. Of course you need to add it as a reference. Lol.
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.