Purpose: So you don't have to continuously change detail options...
Time to Complete: 2 seconds...(literally)
Credits: Guthan (me)
Procedure:
Import the swing package:
Code:
import javax.swing.*;
Find the main void in client.java (Should look something like the following):
Code:
public static final void main(String args[])
{
try
{
anInt957 = 0;
anInt958 = 0;
method52(false);//highmem
aBoolean959 = true;//members
signlink.storeid = 32;
signlink.startpriv(InetAddress.getLocalHost());
client client1 = new client();
client1.method1(503, false, 765);
setserver(args[0], "43594");
return;
}
catch(Exception exception)
{
return;
}
}
You should see this in the main void:
Change the previous code [method52(false);] to the following:
Code:
String detail = JOptionPane.showInputDialog(null, "Please state the detail type you prefer:", "Detail Value", JOptionPane.PLAIN_MESSAGE);
if(detail == "high") method52(true); else if(detail == "low") method52(false); //Detail Type Specification
When starting your client, you must type in "high" (without quotations) for High Detail and "low" (without quotations) for Low Detail.
Enjoy!