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!

Message

Elite Diviner
Joined
Jan 11, 2008
Messages
405
Reaction score
0
Hey im trying to add a message for when people open an item but im stuck on this i need help.2 things where to add it it would go under the item id in entries.cs? o yea heres the line
World.SendMsgToAll(MessageId + " Has Open So And So" + MyChar.Name, "SYSTEM", 2011);
 
Experienced Elementalist
Joined
Apr 7, 2008
Messages
229
Reaction score
0
Yes it need to be added under the item, and i think the line is good,just add it under your item, on entries.cs
 
Experienced Elementalist
Joined
Jun 12, 2008
Messages
237
Reaction score
0
my solution is : go in client.cs and search for "case 4:"
before:
MyChar.Ready = true;
break;
add:
MyChar.MyClient.SendPacket(General.MyPackets.SendMsg(MyChar.MyClient.MessageId, "SYSTEM", MyChar.Name, "You used a " + TheItem + ".", 2005));

well...this says something like You used a XXXXXX-0-0-0-0-0. (Example)The name will come later XD!
 
Back
Top