├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── data └── demos │ └── .gitkeep ├── gamedata └── autodemo_events.txt ├── scripting ├── AutoDemo.sp ├── AutoDemo_EventManager.sp ├── AutoDemo_FTPUpload.sp ├── AutoDemo_Notify.sp ├── AutoDemo_TF2.sp └── include │ └── AutoDemo.inc └── translations └── autodemo_notifications.phrases.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/README.md -------------------------------------------------------------------------------- /data/demos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamedata/autodemo_events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/gamedata/autodemo_events.txt -------------------------------------------------------------------------------- /scripting/AutoDemo.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/scripting/AutoDemo.sp -------------------------------------------------------------------------------- /scripting/AutoDemo_EventManager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/scripting/AutoDemo_EventManager.sp -------------------------------------------------------------------------------- /scripting/AutoDemo_FTPUpload.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/scripting/AutoDemo_FTPUpload.sp -------------------------------------------------------------------------------- /scripting/AutoDemo_Notify.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/scripting/AutoDemo_Notify.sp -------------------------------------------------------------------------------- /scripting/AutoDemo_TF2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/scripting/AutoDemo_TF2.sp -------------------------------------------------------------------------------- /scripting/include/AutoDemo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/scripting/include/AutoDemo.inc -------------------------------------------------------------------------------- /translations/autodemo_notifications.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyHackGUT/sm-autodemo/HEAD/translations/autodemo_notifications.phrases.txt --------------------------------------------------------------------------------