Example #1
0
        //Started map "map" (CRC "crc") [003.2]
        protected virtual void OnMapStart(DateTime Timestamp, string[] info)
        {
            MapStartEventArgs eventArgs = new MapStartEventArgs()
            {
                Timestamp = Timestamp,
                MapName   = info[1],
                MapCRC    = info[3]
            };

            MapStarted.Fire(ServerEndPoint, eventArgs);
        }
Example #2
0
 //Started map "map" (CRC "crc") [003.2]
 protected virtual void OnMapStart(DateTime Timestamp, string[] info)
 {
     MapStartEventArgs eventArgs = new MapStartEventArgs()
     {
         Timestamp = Timestamp,
         MapName = info[1],
         MapCRC = info[3]
     };
     MapStarted.Fire(ServerEndPoint, eventArgs);
 }