1. Wolf, please check the hook OnPlayerBanned [eac]. The argument "connection2" is NULL in code:

    Code:
    Interface.CallHook("OnPlayerBanned", new object[] {
                            connection2,
                            connection2.authStatus
    });
     
  2. The hook looks fine to me actually.
     
  3. Code:
    ulong ownerid =ulong.Parse(clientStatus.Client.OwnerGuid);
    Connection connection2;
    if(ownerid >0 && ownerid != steamid) {
    ...
    }
    
    connection2 is NULL, if ownerid == steamid
     
  4. Ah yes, missed that when checking it just now, updated the hook and should be fixed in the next build.
     
  5. Thank you