You are viewing our Forum Archives. To view or take place in current topics click here.
Mw3 Teleport All? [C#]
Posted:

Mw3 Teleport All? [C#]Posted:

Mildot
  • Resident Elite
Status: Offline
Joined: Dec 25, 201310Year Member
Posts: 248
Reputation Power: 10
Status: Offline
Joined: Dec 25, 201310Year Member
Posts: 248
Reputation Power: 10
Looking to find out how to teleport players to me or other clients. Anyone help? I will give credit in my tool.
#2. Posted:
IGoogleclanmodz
  • Powerhouse
Status: Offline
Joined: Feb 09, 201311Year Member
Posts: 411
Reputation Power: 18
Status: Offline
Joined: Feb 09, 201311Year Member
Posts: 411
Reputation Power: 18
client call(0x80,00,00,00) new byte (0x0,11,0A,29,00);
#3. Posted:
IDA
  • Powerhouse
Status: Offline
Joined: Sep 21, 201310Year Member
Posts: 454
Reputation Power: 26
Status: Offline
Joined: Sep 21, 201310Year Member
Posts: 454
Reputation Power: 26
Mess around with this to get what you want

Set Coords

void SetCoords(int client, float x, float y, float z)
{
Jtag.WriteFloat(getClientState(client) + 0x20, x);     
Jtag.WriteFloat(getClientState(client) + 0x1c, y);   
Jtag.WriteFloat(getClientState(client) + 0x24, z);
}

Get Coords

public float x = 0;
public float y = 0;
public float z = 0;
void GetCoords(int Player)
{
x = Jtag.ReadFloat(getClientState(client) + 0x20);
y = Jtag.ReadFloat(getClientState(client) + 0x1c);   
z = Jtag.ReadFloat(getClientState(client) + 0x24);
}


then to put GetCoords to textBox lets say...


textBox1.Text = Convert.ToString(x) + " " + Convert.ToString(y) + " " + Convert.ToString(z);


and if you need getCS

 public uint getClientState(int client)
        {
            return (uint)(0x82f99580 + (client * 0x3980));
        }
#4. Posted:
Mildot
  • Resident Elite
Status: Offline
Joined: Dec 25, 201310Year Member
Posts: 248
Reputation Power: 10
Status: Offline
Joined: Dec 25, 201310Year Member
Posts: 248
Reputation Power: 10
IDA wrote Mess around with this to get what you want

Set Coords

void SetCoords(int client, float x, float y, float z)
{
Jtag.WriteFloat(getClientState(client) + 0x20, x);     
Jtag.WriteFloat(getClientState(client) + 0x1c, y);   
Jtag.WriteFloat(getClientState(client) + 0x24, z);
}

Get Coords

public float x = 0;
public float y = 0;
public float z = 0;
void GetCoords(int Player)
{
x = Jtag.ReadFloat(getClientState(client) + 0x20);
y = Jtag.ReadFloat(getClientState(client) + 0x1c);   
z = Jtag.ReadFloat(getClientState(client) + 0x24);
}


then to put GetCoords to textBox lets say...


textBox1.Text = Convert.ToString(x) + " " + Convert.ToString(y) + " " + Convert.ToString(z);


and if you need getCS

 public uint getClientState(int client)
        {
            return (uint)(0x82f99580 + (client * 0x3980));
        }


Thanks Alot IDA! +Rep
20202020
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.