PDA

View Full Version : How Do I



XxBryantD
June 26th, 2010, 20:01
How do i add a welcome screen that appears when u log on not messages in chatbox but custom interface

gilles
June 26th, 2010, 22:09
How do i add a welcome screen that appears when u log on not messages in chatbox but custom interface

Search your Login message like:


sM("Welcome to SERVERNAME");

Then add under it:


loginscreen();

Then search:


public void

You will find a random public void ...()
{

Then add under the last '}':


public void loginscreen() {
sendQuest("TITLE", 8144);
clearQuestInterface();
sendQuest("TEXT", 8147);
sendQuest("TEXT", 8148);
sendQuest("TEXT", 8149);
sendQuest("TEXT", 8150);
sendQuest("TEXT", 8151);
sendQuest("TEXT", 8152);
sendQuest("TEXT", 8153);
sendQuest("TEXT", 8154);
sendQuest("TEXT", 8155);
sendQuest("TEXT", 8156);
sendQuest("TEXT", 8157);
sendQuest("TEXT", 8158);
sendQuest("TEXT", 8159);
sendQuest("TEXT", 8160);
sendQuestSomething(8143);
showInterface(8134);
flushOutStream();
}

Change every TITLE and TEXT to the Title and Text you want.

XxBryantD
June 27th, 2010, 02:37
thanks