plz post item codes here to help us all out
{THIS IS FOR COEmu}
3 in 1 pots
Easy but i did not see any one post it yet
{THIS IS FOR COEmu}
3 in 1 pots
Code:
case 720011://Panacea 3 in 1
{
if (CSocket.Client.Inventory.Count <= 37)
{
for (int i = 0; i < 3; i++)
{
AddItem(1002000, 0, 0, 0, 0, 0, 0, 0, 0, CSocket);
}
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You used the Panacea 3 in 1 and obtained 3 Ginsenes.", Struct.ChatType.Top));
}
else
{
Delete = false;
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "Not enough space in inventory.", Struct.ChatType.Top));
}
break;
}
case 720012://Ginseng 3 in 1
{
if (CSocket.Client.Inventory.Count <= 37)
{
for (int i = 0; i < 3; i++)
{
AddItem(1002010, 0, 0, 0, 0, 0, 0, 0, 0, CSocket);
}
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You used the Ginseng 3 in 1 and obtained 3 Ginsenes.", Struct.ChatType.Top));
}
else
{
Delete = false;
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "Not enough space in inventory.", Struct.ChatType.Top));
}
break;
}
case 720013://Vabukka 3 in 1
{
if (CSocket.Client.Inventory.Count <= 37)
{
for (int i = 0; i < 3; i++)
{
AddItem(1002020, 0, 0, 0, 0, 0, 0, 0, 0, CSocket);
}
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "You used the Vabukka 3 in 1 and obtained 3 Vabukkaes.", Struct.ChatType.Top));
}
else
{
Delete = false;
CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "Not enough space in inventory.", Struct.ChatType.Top));
}
break;
}