You are viewing our Forum Archives. To view or take place in current topics click here.
[Question Answered] MW3 TU23 Offsets?
Posted:

[Question Answered] MW3 TU23 Offsets?Posted:

J17
  • Powerhouse
Status: Offline
Joined: Jan 08, 201212Year Member
Posts: 430
Reputation Power: 21
Status: Offline
Joined: Jan 08, 201212Year Member
Posts: 430
Reputation Power: 21
Question Has Been Answered. Thank You.

Ok so im trying to develop a XRPC tool for MW3. For example if I want to enable super jump.
I know the offset for jump height is 0x82001D68. Now how would I change that to make it super jump? In C# would it be like
Jtag.SetMemory(0x82001D68, new byte[] { 0x44, 0x79, 0xc0, 0 }); (I don't know what to put in the { 0x44, 0x79, 0xc0, 0}). If somebody could help I would greatly appreciate it.


Last edited by J17 ; edited 1 time in total
#2. Posted:
NBC
  • TTG Addict
Status: Offline
Joined: Dec 24, 201112Year Member
Posts: 2,859
Reputation Power: 99
Status: Offline
Joined: Dec 24, 201112Year Member
Posts: 2,859
Reputation Power: 99
I think ZZ9_I_haxxorz posted them a while ago
#3. Posted:
droseum20
  • TTG Senior
Status: Offline
Joined: Apr 25, 201113Year Member
Posts: 1,601
Reputation Power: 116
Status: Offline
Joined: Apr 25, 201113Year Member
Posts: 1,601
Reputation Power: 116
What you're really doing is changing the default float value of jump_height from 39.0 to something higher. Most people use 999 for "super" jump, but you can use whatever you want. Here are some values for you to try:

999 - 0x44, 0x79, 0xC0, 0x00
39 (default) - 0x42, 0x1C, 0x00, 0x00
999999 (crazy) - 0x49, 0x74, 0x23, 0xF0
#4. Posted:
Wilez
  • TTG Addict
Status: Offline
Joined: Apr 29, 201113Year Member
Posts: 2,192
Reputation Power: 99
Status: Offline
Joined: Apr 29, 201113Year Member
Posts: 2,192
Reputation Power: 99
droseum20 wrote What you're really doing is changing the default float value of jump_height from 39.0 to something higher. Most people use 999 for "super" jump, but you can use whatever you want. Here are some values for you to try:

999 - 0x44, 0x79, 0xC0, 0x00
39 (default) - 0x42, 0x1C, 0x00, 0x00
999999 (crazy) - 0x49, 0x74, 0x23, 0xF0

isn't there a tool that converts the floats for you?
#5. Posted:
Strippers
  • TTG Senior
Status: Offline
Joined: Sep 26, 201211Year Member
Posts: 1,375
Reputation Power: 59
Status: Offline
Joined: Sep 26, 201211Year Member
Posts: 1,375
Reputation Power: 59
Wilez wrote
droseum20 wrote What you're really doing is changing the default float value of jump_height from 39.0 to something higher. Most people use 999 for "super" jump, but you can use whatever you want. Here are some values for you to try:

999 - 0x44, 0x79, 0xC0, 0x00
39 (default) - 0x42, 0x1C, 0x00, 0x00
999999 (crazy) - 0x49, 0x74, 0x23, 0xF0

isn't there a tool that converts the floats for you?

well you could just use your windows calculator and convert it to hex.
or use peek pokers converter
#6. Posted:
J17
  • Powerhouse
Status: Offline
Joined: Jan 08, 201212Year Member
Posts: 430
Reputation Power: 21
Status: Offline
Joined: Jan 08, 201212Year Member
Posts: 430
Reputation Power: 21
droseum20 wrote What you're really doing is changing the default float value of jump_height from 39.0 to something higher. Most people use 999 for "super" jump, but you can use whatever you want. Here are some values for you to try:

999 - 0x44, 0x79, 0xC0, 0x00
39 (default) - 0x42, 0x1C, 0x00, 0x00
999999 (crazy) - 0x49, 0x74, 0x23, 0xF0

Thanks! I really appreciate it.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.