Josh's Tutorial to Project Insanity's Quest Tab
First off, here is the code of the quest tab that is (gasp), in order! (Minus one, which I cannot seem to find)
Code:
Only the registered members can see the link. Register here
I recommend that you place that under
Code:
Only the registered members can see the link. Register here
in Client.java
That was the 'meat' of the quest tab.
For the top part, (where most servers have a 'player count'), put this;
Code:
Only the registered members can see the link. Register here
If you would like a quest tab option that can update, like a constantly updating PlayerCount, place your quest tab sections under
Code:
Only the registered members can see the link. Register here
Remember, you don't have to place your WHOLE quest tab here, only things that you want to constantly update. The more that is down here, the higher chance that lag might exist.
You can obviously edit the contents to your liking.
Now for an actually tutorial;
Color list:
Code:
Only the registered members can see the link. Register here
To use these; here is an example:
Code:
Only the registered members can see the link. Register here
The last part;
Code:
Only the registered members can see the link. Register here
, inserts in an int. In this case, the playerName.
You can do that with out ints as well; here are a few examples:
Code:
Only the registered members can see the link. Register here
Code:
Only the registered members can see the link. Register here
Just remember the "+ +", and fill in the middle with the int that you chose. Then you are good to go. 
Now, if you would like to make your quest tab do something, figure out the case #, and go to ClickingButtons.java, and search to find the case. If there isn't one, add one!
It should look like this;
Code:
Only the registered members can see the link. Register here
Now, you can make it do things. For example; when I click my "EP: " part on my quest tab, I give a description of EP.
Code:
Only the registered members can see the link. Register here
Very simple, yet gets the job done.
Any questions? Post below.