├── .gitattributes ├── .github └── workflows │ └── main.yml ├── LICENSE ├── gamedata └── eventfix.games.txt └── scripting ├── eventqueuefix.sp └── include ├── dhooks.inc └── eventqueuefix.inc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermansimensen/eventqueue-fix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermansimensen/eventqueue-fix/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermansimensen/eventqueue-fix/HEAD/LICENSE -------------------------------------------------------------------------------- /gamedata/eventfix.games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermansimensen/eventqueue-fix/HEAD/gamedata/eventfix.games.txt -------------------------------------------------------------------------------- /scripting/eventqueuefix.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermansimensen/eventqueue-fix/HEAD/scripting/eventqueuefix.sp -------------------------------------------------------------------------------- /scripting/include/dhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermansimensen/eventqueue-fix/HEAD/scripting/include/dhooks.inc -------------------------------------------------------------------------------- /scripting/include/eventqueuefix.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermansimensen/eventqueue-fix/HEAD/scripting/include/eventqueuefix.inc --------------------------------------------------------------------------------