Experienced Elementalist
Go to
Search for
The whole code should look like
Where i have put Welcome to explex 508 server replace it with your server name and feel free to change the message of the week bit XD
Have fun
Code:
src/palidino76/rs2/io
Search for
Code:
public void setWelcome(Player p) {
The whole code should look like
Code:
public void setWelcome(Player p) {
if (p == null || p.disconnected[0]) {
return;
}
setWindowPane(p, 549);
setInterface(p, 1, 549, 2, 378);
setInterface(p, 1, 549, 3, 17); // can use 15 - string 0 and 4, 17 - string 0 and 3, and 447 - string 0, 1 and 2.
setString(p, "Message of the Week:", 17, 0);
setString(p, "Want some help? - Head over to the forums at explex.info", 17, 3);
setString(p, "Welcome to Explex 508 Server", 378, 115);
}
Where i have put Welcome to explex 508 server replace it with your server name and feel free to change the message of the week bit XD
Have fun