Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[DELTA] How to add login message [IN THE CHAT BOX]

Newbie Spellweaver
Joined
Jul 21, 2008
Messages
21
Reaction score
2
A few things to note when you do this. Make sure that if the sources ORIGINAL is in the welcome notes to give at least some credit. for instance "Original Source By: (NAME)"

Base: Delta
Difficulty: 1/10
Time: 5-10 minutes MAX
Credits: Delta and I

Step 1: Open Your Client JAVA
Open your Client.java and search for
Code:
l33thax(7499);
Right under that add this
Code:
sM("TEXT");
The reason that you look for the l33thax is because this is a void that runs during login. (SOMEONE PLEASE TELL ME IF I AM WRONG)

Anyways, sM("TEXT") sends a message in the chat box when people login that says "Welcome to RuneScape" or whatever you what it to say.

To add more than one line of text just add the Code. Like so.
Code:
sM("TEXT");
sM("TEXT");
sM("TEXT");
sM("TEXT");
sM("TEXT");/CODE]

Yeah this is just an easy tut to show people how to edit, create a welcome message.

Creds above^^
 
Back
Top