├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── forcemapend_redux.sp ├── include ├── fys.bans.inc ├── fys.pupd.inc ├── mapchooser_redux.inc ├── shop.inc ├── smutils.inc └── store.inc ├── mapchooser ├── cmds.sp ├── cvars.sp ├── data.sp ├── events.sp ├── natives.sp └── stocks.sp ├── mapchooser_redux.sp ├── maplister_redux.sp ├── maptimelimit_redux.sp ├── nominations_redux.sp ├── portdata.sp ├── rockthevote_redux.sp └── translations ├── com.kxnrl.mcr.translations.txt ├── da └── com.kxnrl.mcr.translations.txt ├── lv └── com.kxnrl.mcr.translations.txt ├── pt └── com.kxnrl.mcr.translations.txt └── ru └── com.kxnrl.mcr.translations.txt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/README.md -------------------------------------------------------------------------------- /forcemapend_redux.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/forcemapend_redux.sp -------------------------------------------------------------------------------- /include/fys.bans.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/include/fys.bans.inc -------------------------------------------------------------------------------- /include/fys.pupd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/include/fys.pupd.inc -------------------------------------------------------------------------------- /include/mapchooser_redux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/include/mapchooser_redux.inc -------------------------------------------------------------------------------- /include/shop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/include/shop.inc -------------------------------------------------------------------------------- /include/smutils.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/include/smutils.inc -------------------------------------------------------------------------------- /include/store.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/include/store.inc -------------------------------------------------------------------------------- /mapchooser/cmds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/mapchooser/cmds.sp -------------------------------------------------------------------------------- /mapchooser/cvars.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/mapchooser/cvars.sp -------------------------------------------------------------------------------- /mapchooser/data.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/mapchooser/data.sp -------------------------------------------------------------------------------- /mapchooser/events.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/mapchooser/events.sp -------------------------------------------------------------------------------- /mapchooser/natives.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/mapchooser/natives.sp -------------------------------------------------------------------------------- /mapchooser/stocks.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/mapchooser/stocks.sp -------------------------------------------------------------------------------- /mapchooser_redux.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/mapchooser_redux.sp -------------------------------------------------------------------------------- /maplister_redux.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/maplister_redux.sp -------------------------------------------------------------------------------- /maptimelimit_redux.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/maptimelimit_redux.sp -------------------------------------------------------------------------------- /nominations_redux.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/nominations_redux.sp -------------------------------------------------------------------------------- /portdata.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/portdata.sp -------------------------------------------------------------------------------- /rockthevote_redux.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/rockthevote_redux.sp -------------------------------------------------------------------------------- /translations/com.kxnrl.mcr.translations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/translations/com.kxnrl.mcr.translations.txt -------------------------------------------------------------------------------- /translations/da/com.kxnrl.mcr.translations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/translations/da/com.kxnrl.mcr.translations.txt -------------------------------------------------------------------------------- /translations/lv/com.kxnrl.mcr.translations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/translations/lv/com.kxnrl.mcr.translations.txt -------------------------------------------------------------------------------- /translations/pt/com.kxnrl.mcr.translations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/translations/pt/com.kxnrl.mcr.translations.txt -------------------------------------------------------------------------------- /translations/ru/com.kxnrl.mcr.translations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kxnrl/Mapchooser-Redux/HEAD/translations/ru/com.kxnrl.mcr.translations.txt --------------------------------------------------------------------------------