Purpose:title 
Difficulty:1/10
Classes Modified:client.java (and) others
Tested On(if it applies):562
This is a very simple tutorial how to make your client ipchanger
with abilty to change ip and port
So lets start 
First open your client.java and after
Code:
public class client extends Applet_Sub1
{
put
Code:
public static String ip = "";
public static int port = 0;
!Don't change theese , because theese are setup later!
now search for
Code:
public static void main(String[] arg0) {
and after that put
Code:
ip = arg0[4];
port = arg0[5];
so we make that theese vars are set up on client startup with given params.
now find where your ip are
for me its in
Code:
Class131_Sub41_Sub20.anInt6436 = 43594;
Class131_Sub2_Sub7.aString5636 ="127.0.0.1";
and change them to
Code:
Class131_Sub41_Sub20.anInt6436 = this.port;
Class131_Sub2_Sub7.aString5636 =this.ip;
Your almost done 
Compile your client.
now we just need to make proper launcher for it
open your run.bat or whatever you have
and find line like
java -cp bin;lib/clientlibs.jar client 0 live english game0
you see the params are client 0 live english game0
but if you try to start it fails because we are now missing ip and port 
so it should look like
java -cp bin;lib/clientlibs.jar client 0 live english game0 127.0.0.1 43594
but it would be unconfortable to edit it so add theese lines on the top
set /p ip=Enter ip:
set /p port=Enter port:
and now your line
java -cp bin;lib/clientlibs.jar client 0 live english game0 %ip% %port%
Now Your Done 
Rep ++ if helped