root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/network/aion/serverpackets/SM_SYSTEM_MESSAGE.java

14331512
831
		return new SM_SYSTEM_MESSAGE(1390221, nameId);
831
		return new SM_SYSTEM_MESSAGE(1390221, nameId);
832
	}
832
	}
833
833
834
	/**
835
	 * Deny messages
836
	 */
837
	public static SM_SYSTEM_MESSAGE STR_MSG_REJECTED_WATCH(String charName)
838
	{
839
		return new SM_SYSTEM_MESSAGE(1390114, charName);
840
	}
841
842
	public static SM_SYSTEM_MESSAGE STR_MSG_REJECTED_TRADE(String charName)
843
	{
844
		return new SM_SYSTEM_MESSAGE(1390115, charName);
845
	}
846
847
	public static SM_SYSTEM_MESSAGE STR_MSG_REJECTED_INVITE_PARTY(String charName)
848
	{
849
		return new SM_SYSTEM_MESSAGE(1390116, charName);
850
	}
851
852
	public static SM_SYSTEM_MESSAGE STR_MSG_REJECTED_INVITE_FORCE(String charName)
853
	{
854
		return new SM_SYSTEM_MESSAGE(1390117, charName);
855
	}
856
857
	public static SM_SYSTEM_MESSAGE STR_MSG_REJECTED_INVITE_GUILD(String charName)
858
	{
859
		return new SM_SYSTEM_MESSAGE(1390118, charName);
860
	}
861
862
	public static SM_SYSTEM_MESSAGE STR_MSG_REJECTED_FRIEND(String charName)
863
	{
864
		return new SM_SYSTEM_MESSAGE(1390119, charName);
865
	}
866
867
	public static SM_SYSTEM_MESSAGE STR_MSG_REJECTED_DUEL(String charName)
868
	{
869
		return new SM_SYSTEM_MESSAGE(1390120, charName);
870
	}
871
834
	private final int		code;
872
	private final int		code;
835
	private final Object[]	params;
873
	private final Object[]	params;
836
874