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!

[REL]] Money bags for coemu v2

Junior Spellweaver
Joined
Jan 14, 2007
Messages
140
Reaction score
5
Code: Goes in UseItem.cs:

Code:
#region MoneyBags
case 723713: //Class1MoneyBag
{
Money(300000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class1MoneyBag and obtained 300,000 silvers", Struct.ChatType.Top));
break;
}
case 723714: //Class2MoneyBag
{
Money(800000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class2MoneyBag and obtained 800,000 silvers", Struct.ChatType.Top));
break;
}
case 723715: //Class3MoneyBag
{
Money(1200000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class3MoneyBag and obtained 1,200,000 silvers", Struct.ChatType.Top));
break;
}
case 723716: //Class4MoneyBag
{
Money(1800000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class4MoneyBag and obtained 1,800,000 silvers", Struct.ChatType.Top));
break;
}
case 723717: //Class5MoneyBag
{
Money(5000000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class5MoneyBag and obtained 5,000,000 silvers", Struct.ChatType.Top));
break;
}
case 723718: //Class6MoneyBag
{
Money(20000000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class6MoneyBag and obtained 20,000,000 silvers", Struct.ChatType.Top));
break;
}
case 723719: //Class7MoneyBag
{
Money(25000000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class7MoneyBag and obtained 25,000,000 silvers", Struct.ChatType.Top));
break;
}
case 723720: //Class8MoneyBag
{
Money(80000000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class8MoneyBag and obtained 80,000,000 silvers", Struct.ChatType.Top));
break;
}
case 723721: //Class9MoneyBag
{
Money(100000000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class9MoneyBag and obtained ****000,000 silvers", Struct.ChatType.Top));
break;
}
case 723722: //Class10MoneyBag
{
Money(300000000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the Class10MoneyBag and obtained 300,000,000 silvers", Struct.ChatType.Top));
break;
}
case 723723: //TopMoneyBag
{
Money(500000000, CSocket);
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You opened the TopMoneyBag and obtained 500,000,000 silvers", Struct.ChatType.Top));
break;
}
#endregion
Hope it helps.
 
Initiate Mage
Joined
Jun 22, 2012
Messages
1
Reaction score
0
Not to bump an old thread, but in the future please make sure to credit me when copy-pasting my code! You didn't do bad crediting me with my other releases, just forgot on this one.
 
Back
Top