update shared guid kick plugin

script plugins reload without error using the correct file share mode when opening
increase socket timeout to 10 seconds
This commit is contained in:
RaidMax
2018-10-09 20:19:06 -05:00
parent 7caee55a7e
commit b5e9519f0c
4 changed files with 14 additions and 5 deletions

View File

@ -1,6 +1,6 @@
var plugin = {
author: 'RaidMax',
version: 1.0,
version: 1.1,
name: 'Shared GUID Kicker Plugin',
onEventAsync: function (gameEvent, server) {
@ -10,8 +10,7 @@ var plugin = {
}
// connect or join event
if (gameEvent.Type === 3 ||
gameEvent.Type === 4) {
if (gameEvent.Type === 3) {
// this GUID seems to have been packed in a IW4 torrent and results in an unreasonable amount of people using the same GUID
if (gameEvent.Origin.NetworkId === -805366929435212061) {
gameEvent.Origin.Kick('Your GUID is generic. Delete players/guids.dat and rejoin', _IW4MAdminClient);