Added system message for successful buy item.

This commit is contained in:
MobiusDev
2017-05-02 08:06:12 +00:00
parent ab3398a006
commit 3dd4ddf46c
4 changed files with 8 additions and 0 deletions

View File

@ -12373,6 +12373,9 @@ public final class SystemMessageId
@ClientString(id = 4355, message = "Failed to apply the Soul Crystal effect because of abnormal circumstances.")
public static SystemMessageId FAILED_TO_APPLY_THE_SOUL_CRYSTAL_EFFECT_BECAUSE_OF_ABNORMAL_CIRCUMSTANCES;
@ClientString(id = 4358, message = "The trade was successful.")
public static SystemMessageId THE_TRADE_WAS_SUCCESSFUL;
@ClientString(id = 4601, message = "- Great P. Def. and skillful Shield Defense(br)- Increased P. Def. for the whole party(br)- Protect party members")
public static SystemMessageId GREAT_P_DEF_AND_SKILLFUL_SHIELD_DEFENSE_BR_INCREASED_P_DEF_FOR_THE_WHOLE_PARTY_BR_PROTECT_PARTY_MEMBERS;

View File

@ -275,5 +275,6 @@ public final class RequestBuyItem implements IClientIncomingPacket
client.sendPacket(new ExUserInfoInvenWeight(player));
client.sendPacket(new ExBuySellList(player, true));
player.sendPacket(SystemMessageId.THE_TRADE_WAS_SUCCESSFUL);
}
}