You are viewing our Forum Archives. To view or take place in current topics click here.
advanced warfare rte tool help
Posted:
advanced warfare rte tool helpPosted:
Status: Offline
Joined: Jan 19, 20159Year Member
Posts: 261
Reputation Power: 11
Status: Offline
Joined: Jan 19, 20159Year Member
Posts: 261
Reputation Power: 11
do you guys know of any good tutorials to make a advanced warfare rte tool
#2. Posted:
Status: Offline
Joined: Jun 29, 201311Year Member
Posts: 211
Reputation Power: 13
Status: Offline
Joined: Jun 29, 201311Year Member
Posts: 211
Reputation Power: 13
>Get IDA
>Look through the relevant xex file using the xex plugin on IDA for PPC. I think it's default_mp.xex for multiplayer stuff on all cods. Might have changed since CoD4 though, lol.
>Look for values.
>Write command to XBDM over Xbox IP, port 730.
Like ermm, for RTE in Java it's like:
[spoiler]
[/spoiler]
or just use XDevKit's SetMemory for console since it's the same thing.
>Look through the relevant xex file using the xex plugin on IDA for PPC. I think it's default_mp.xex for multiplayer stuff on all cods. Might have changed since CoD4 though, lol.
>Look for values.
>Write command to XBDM over Xbox IP, port 730.
Like ermm, for RTE in Java it's like:
[spoiler]
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.InputStreamReader;
import java.net.Socket;
public class XBDM {
public static void main(String[] args) {
try {
Socket socket = new Socket("192.168.1.76", 730);
DataOutputStream out = new DataOutputStream(socket.getOutputStream());
BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
out.writeBytes("setmem addr=0x82104093 data=01" + "\r\n");
System.out.println(in.readLine());
socket.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
[/spoiler]
or just use XDevKit's SetMemory for console since it's the same thing.
- 1useful
- 2not useful
You are viewing our Forum Archives. To view or take place in current topics click here.