Blaze.Server.GetStatsAsyncNotification.Notify C# (CSharp) Method

Notify() public static method

public static Notify ( Client client ) : void
client Client
return void
        public static void Notify(Client client)
        {
            var data = new List<Tdf>
            {

            };

            client.Notify(Component.Stats, 0x32, 0, data);
        }
    }

Usage Example

Example #1
0
        public static void HandleRequest(Request request)
        {
            Log.Info(string.Format("Client {0} requested stats by group", request.Client.ID));

            GetStatsAsyncNotification.Notify(request.Client);
        }
GetStatsAsyncNotification