When you log on it sends you whatever lines as your welcome message..
If you don't know where it is, it's in Client.GetPacket() and its above the following lines:
Code:
SendPacket(General.MyPackets.GeneralData(MyChar.UID, 0, 0, 0, 75));
There = true;
Code:
System.IO.StreamReader tr = new System.IO.StreamReader(System.Windows.Forms.Application.StartupPath + @"\MOTD.txt");
string A = null;
while((A = tr.ReadLine()) != null ) {
SendPacket(General.MyPackets.SendMsg(MessageId, "System", MyChar.Name, A, 2000));
}
tr.Close();
Simple, I know, but I have had a look at several sources and none of them do this; so there you have it.






