You are viewing our Forum Archives. To view or take place in current topics click here.
MW2 XRPC Tool Help
Posted:
MW2 XRPC Tool HelpPosted:
Status: Offline
Joined: May 07, 201113Year Member
Posts: 492
Reputation Power: 20
I'm trying to make my first XRPC Tool. Can someone tell me the offsets for super jump and laser please ;)
#2. Posted:
Status: Offline
Joined: Dec 25, 201311Year Member
Posts: 248
Reputation Power: 10
Status: Offline
Joined: Dec 25, 201311Year Member
Posts: 248
Reputation Power: 10
not trying to be mean, but google mw2 tu8 offsets. 7s has a community codes list. Look around and do some research for it. I bet you would find it if you google "mw2 tu8 super jump (or laser) offset"
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Feb 28, 201410Year Member
Posts: 664
Reputation Power: 37
Mildot wrote not trying to be mean, but google mw2 tu8 offsets. 7s has a community codes list. Look around and do some research for it. I bet you would find it if you google "mw2 tu8 super jump (or laser) offset"
The guys just asking, give him a break
Here's a tut with the offsets incl
Tutorials/id=6833/how-to-make-a-t...mw2-3.html
- 0useful
- 1not useful
#4. Posted:
Status: Offline
Joined: Dec 25, 201311Year Member
Posts: 248
Reputation Power: 10
Status: Offline
Joined: Dec 25, 201311Year Member
Posts: 248
Reputation Power: 10
pl0xr wroteMildot wrote not trying to be mean, but google mw2 tu8 offsets. 7s has a community codes list. Look around and do some research for it. I bet you would find it if you google "mw2 tu8 super jump (or laser) offset"
The guys just asking, give him a break
Here's a tut with the offsets incl
Tutorials/id=6833/how-to-make-a-t...mw2-3.html
i wasnt trying to be mean but i mean come on, i found like 5+ links when i googled it when making my tool.
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Nov 08, 201212Year Member
Posts: 498
Reputation Power: 19
Super Jump:
0x8200183C
So you would add something like this...
0x8200183C
So you would add something like this...
{
Jtag.WriteFloat(0x8200183C, 999f);//Super Jump
Jtag.WriteFloat(0x82000858, 999f);//No Fall Damage
Jtag.Call(SV, -1, 1, "c \"^6Super Jump ^2ON!\"");
}
To Turn It Off You Can Do This...
{
Jtag.WriteFloat(0x8200183C, 39f);//39f is the default value
Jtag.Call(SV, -1, 1, "c \"^6Super Jump ^1OFF!\"");
}
Laser:
0x82104093
To Add It Do something like this
0x82104093
To Add It Do something like this
private void button8_Click(object sender, EventArgs e)//Laser On
{
Jtag.WriteByte(0x82104093, 0x1);
Jtag.Call(SV, 0, 1, "c \"^6Laser ^2ON! \"");
}
To Turn It Off Exactly the Same
private void button8_Click(object sender, EventArgs e)//Laser On
{
Jtag.WriteByte(0x82104093, 0x0);//Change 0x1 to 0x0
Jtag.Call(SV, 0, 1, "c \"^6Laser ^1OFF! \"");
}
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.