| | |
| | |
|
| | | #region 组队邀请
|
| | | private const string INVITE_IDENTIFY = "<i>";
|
| | | private static Regex InviteRegex = new Regex(@INVITE_IDENTIFY, RegexOptions.Singleline);
|
| | | public static Regex InviteRegex = new Regex(@INVITE_IDENTIFY, RegexOptions.Singleline);
|
| | | public void SendInvite(string msg)
|
| | | {
|
| | | SendChatInfo(ChatInfoType.World, StringUtility.Contact(msg, INVITE_IDENTIFY));
|
| | |
| | | #endregion
|
| | |
|
| | | #region 好友私聊
|
| | | public static Regex KillRegex = new Regex(@KILL_IDENTIFY, RegexOptions.Singleline);
|
| | | public const string KILL_IDENTIFY = "<k>";
|
| | | public void SendFriendChat(string msg, int player)
|
| | | {
|