Exemplo n.º 1
0
        //"Name<uid><wonid><team>" committed suicide with "weapon" [53]
        protected virtual void OnSuicide(DateTime Timestamp, string[] info)
        {
            SuicideEventArgs eventArgs = new SuicideEventArgs()
            {
                Timestamp = Timestamp,
                Player    = GetPlayerInfo(info[0]),
                Weapon    = info[2]
            };

            PlayerSuicided.Fire(ServerEndPoint, eventArgs);
        }
Exemplo n.º 2
0
 //"Name<uid><wonid><team>" committed suicide with "weapon" [53]
 protected virtual void OnSuicide(DateTime Timestamp, string[] info)
 {
     SuicideEventArgs eventArgs = new SuicideEventArgs()
     {
         Timestamp = Timestamp,
         Player = GetPlayerInfo(info[0]),
         Weapon = info[2]
     };
     PlayerSuicided.Fire(ServerEndPoint, eventArgs);
 }