Пример #1
0
        private static void EventSink_AccountRequest(AccountRequestCreate info)
        {
            if (string.IsNullOrEmpty(info.GamespyCode))
            {
                info.HandleFailure("002"); // no gsbrcd!
                return;
            }
            Account a = GetOrCreateAccountFromInfo(info);

            LoginAccount(a);
            info.HandleSuccess(a);
        }