├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.MD ├── include └── timerfix.inc ├── lib └── sdk │ ├── amx │ ├── amx.h │ ├── amx2.h │ ├── getch.c │ ├── getch.h │ └── sclinux.h │ ├── amxplugin.cpp │ ├── amxplugin2.cpp │ └── plugincommon.h ├── pawn.json ├── src ├── CFreeSlotManager.h ├── COSTime.cpp ├── COSTime.h ├── CServerHooks.cpp ├── CServerHooks.h ├── CSingleton.h ├── CStorage.cpp ├── CStorage.h ├── CTimer.cpp ├── CTimer.h ├── CTimerManager.cpp ├── CTimerManager.h ├── exports.def ├── natives.cpp ├── natives.h ├── plugin.cpp └── plugin.h └── tests └── receiving_error.pwn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/README.MD -------------------------------------------------------------------------------- /include/timerfix.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/include/timerfix.inc -------------------------------------------------------------------------------- /lib/sdk/amx/amx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/lib/sdk/amx/amx.h -------------------------------------------------------------------------------- /lib/sdk/amx/amx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/lib/sdk/amx/amx2.h -------------------------------------------------------------------------------- /lib/sdk/amx/getch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/lib/sdk/amx/getch.c -------------------------------------------------------------------------------- /lib/sdk/amx/getch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/lib/sdk/amx/getch.h -------------------------------------------------------------------------------- /lib/sdk/amx/sclinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/lib/sdk/amx/sclinux.h -------------------------------------------------------------------------------- /lib/sdk/amxplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/lib/sdk/amxplugin.cpp -------------------------------------------------------------------------------- /lib/sdk/amxplugin2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/lib/sdk/amxplugin2.cpp -------------------------------------------------------------------------------- /lib/sdk/plugincommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/lib/sdk/plugincommon.h -------------------------------------------------------------------------------- /pawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/pawn.json -------------------------------------------------------------------------------- /src/CFreeSlotManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CFreeSlotManager.h -------------------------------------------------------------------------------- /src/COSTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/COSTime.cpp -------------------------------------------------------------------------------- /src/COSTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/COSTime.h -------------------------------------------------------------------------------- /src/CServerHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CServerHooks.cpp -------------------------------------------------------------------------------- /src/CServerHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CServerHooks.h -------------------------------------------------------------------------------- /src/CSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CSingleton.h -------------------------------------------------------------------------------- /src/CStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CStorage.cpp -------------------------------------------------------------------------------- /src/CStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CStorage.h -------------------------------------------------------------------------------- /src/CTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CTimer.cpp -------------------------------------------------------------------------------- /src/CTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CTimer.h -------------------------------------------------------------------------------- /src/CTimerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CTimerManager.cpp -------------------------------------------------------------------------------- /src/CTimerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/CTimerManager.h -------------------------------------------------------------------------------- /src/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/exports.def -------------------------------------------------------------------------------- /src/natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/natives.cpp -------------------------------------------------------------------------------- /src/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/natives.h -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/src/plugin.h -------------------------------------------------------------------------------- /tests/receiving_error.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaamouii/Timer-Fix-plugin/HEAD/tests/receiving_error.pwn --------------------------------------------------------------------------------