You are viewing our Forum Archives. To view or take place in current topics click here.
Problem with laser tu16 prgram.
Posted:

Problem with laser tu16 prgram.Posted:

jtaghacks135
  • Junior Member
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
Does anyone have the bytes for the laser?
#2. Posted:
xChillest
  • TTG Addict
Status: Offline
Joined: Jul 30, 201211Year Member
Posts: 2,396
Reputation Power: 123
Status: Offline
Joined: Jul 30, 201211Year Member
Posts: 2,396
Reputation Power: 123
To my understanding they should be the same. Even if the offsets change, the bytes won't.
#3. Posted:
jtaghacks135
  • Junior Member
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
xChillest wrote To my understanding they should be the same. Even if the offsets change, the bytes won't.


What are the bytes then?

I can't seem to find the bytes so can you tell me?
#4. Posted:
jtaghacks135
  • Junior Member
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
xChillest wrote To my understanding they should be the same. Even if the offsets change, the bytes won't.


I mean for Call of Duty Ghost TU16.
#5. Posted:
vSmithy
  • TTG Natural
Status: Offline
Joined: Jan 30, 201014Year Member
Posts: 935
Reputation Power: 45
Status: Offline
Joined: Jan 30, 201014Year Member
Posts: 935
Reputation Power: 45
Pretty sure it's 0x1 for on and 0x0 for off ... if that's what you're asking?
#6. Posted:
jtaghacks135
  • Junior Member
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
vSmithy wrote Pretty sure it's 0x1 for on and 0x0 for off ... if that's what you're asking?


How do you type that in.

I have Ghost.SetMemory(0x8227ED90 = 0x10);
#7. Posted:
xChillest
  • TTG Addict
Status: Offline
Joined: Jul 30, 201211Year Member
Posts: 2,396
Reputation Power: 123
Status: Offline
Joined: Jul 30, 201211Year Member
Posts: 2,396
Reputation Power: 123

Jtag.SetMemory(offset, new byte[] { 0x01 });

Set it like that. To disable it:

Jtag.SetMemory(offset, new byte[] { 0x00 });
#8. Posted:
jtaghacks135
  • Junior Member
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
xChillest wrote

Jtag.SetMemory(offset, new byte[] { 0x01 });

Set it like that. To disable it:

Jtag.SetMemory(offset, new byte[] { 0x00 });


I don't think it is the same because the offset is 0x8227ED90 and i did what you said, but im on my jtag and it shows no laser on my gun
#9. Posted:
jtaghacks135
  • Junior Member
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 20149Year Member
Posts: 69
Reputation Power: 2
xChillest wrote

Jtag.SetMemory(offset, new byte[] { 0x01 });

Set it like that. To disable it:

Jtag.SetMemory(offset, new byte[] { 0x00 });


Oh ya and it crashes my jtag when I press the button on the tool
#10. Posted:
ip
  • TTG Contender
Status: Offline
Joined: Dec 30, 201211Year Member
Posts: 3,778
Reputation Power: 3016
Status: Offline
Joined: Dec 30, 201211Year Member
Posts: 3,778
Reputation Power: 3016
Try this.

SetMem(0x8227ED90, new byte[] { 0x1 }); // on
SetMem(0x8227ED90, new byte[] { 0x0 }); //off
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.