Пример #1
0
        public void AskYesNo(string Message)
        {
            if (mCharacter.NpcSession == null)
            {
                throw new Exception("NpcSession has been nulled already!!!!");
            }

            mState = 0;
            mRealState++;
            WaitingForResponse = true;
            NpcPacket.SendNPCChatTextYesNo(mCharacter, mID, Message);
        }
Пример #2
0
 public void AskYesNo(string Message)
 {
     mState = 0;
     mRealState++;
     NpcPacket.SendNPCChatTextYesNo(mCharacter, mID, Message);
 }