├── README.md ├── bot.js ├── commands ├── admin │ ├── add-role.js │ ├── announcement.js │ ├── ban.js │ ├── kick.js │ ├── purge.js │ └── remove-role.js ├── misc │ ├── binfo.js │ ├── help.js │ ├── ping.js │ ├── steam.js │ └── u-info.js ├── server │ ├── info.js │ ├── players.js │ └── rules.js └── system │ ├── bug.js │ ├── opentik.js │ └── report.js ├── config └── config.json ├── functions ├── actUpdater.js └── checkVersion.js ├── handlers └── command.js ├── install-depend.bat ├── local ├── dan.json ├── de.json ├── en.json ├── fr.json ├── supported.json └── swe.json ├── package.json ├── setup.txt ├── start-bot.bat └── tx-admin ├── Where-do-these-go.txt ├── configDb └── config.json ├── discordBot.js ├── login-matrix.html └── login.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/bot.js -------------------------------------------------------------------------------- /commands/admin/add-role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/admin/add-role.js -------------------------------------------------------------------------------- /commands/admin/announcement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/admin/announcement.js -------------------------------------------------------------------------------- /commands/admin/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/admin/ban.js -------------------------------------------------------------------------------- /commands/admin/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/admin/kick.js -------------------------------------------------------------------------------- /commands/admin/purge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/admin/purge.js -------------------------------------------------------------------------------- /commands/admin/remove-role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/admin/remove-role.js -------------------------------------------------------------------------------- /commands/misc/binfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/misc/binfo.js -------------------------------------------------------------------------------- /commands/misc/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/misc/help.js -------------------------------------------------------------------------------- /commands/misc/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/misc/ping.js -------------------------------------------------------------------------------- /commands/misc/steam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/misc/steam.js -------------------------------------------------------------------------------- /commands/misc/u-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/misc/u-info.js -------------------------------------------------------------------------------- /commands/server/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/server/info.js -------------------------------------------------------------------------------- /commands/server/players.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/server/players.js -------------------------------------------------------------------------------- /commands/server/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/server/rules.js -------------------------------------------------------------------------------- /commands/system/bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/system/bug.js -------------------------------------------------------------------------------- /commands/system/opentik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/system/opentik.js -------------------------------------------------------------------------------- /commands/system/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/commands/system/report.js -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/config/config.json -------------------------------------------------------------------------------- /functions/actUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/functions/actUpdater.js -------------------------------------------------------------------------------- /functions/checkVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/functions/checkVersion.js -------------------------------------------------------------------------------- /handlers/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/handlers/command.js -------------------------------------------------------------------------------- /install-depend.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/install-depend.bat -------------------------------------------------------------------------------- /local/dan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/local/dan.json -------------------------------------------------------------------------------- /local/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/local/de.json -------------------------------------------------------------------------------- /local/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/local/en.json -------------------------------------------------------------------------------- /local/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/local/fr.json -------------------------------------------------------------------------------- /local/supported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/local/supported.json -------------------------------------------------------------------------------- /local/swe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/local/swe.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/package.json -------------------------------------------------------------------------------- /setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/setup.txt -------------------------------------------------------------------------------- /start-bot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/start-bot.bat -------------------------------------------------------------------------------- /tx-admin/Where-do-these-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/tx-admin/Where-do-these-go.txt -------------------------------------------------------------------------------- /tx-admin/configDb/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/tx-admin/configDb/config.json -------------------------------------------------------------------------------- /tx-admin/discordBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/tx-admin/discordBot.js -------------------------------------------------------------------------------- /tx-admin/login-matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/tx-admin/login-matrix.html -------------------------------------------------------------------------------- /tx-admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelikespy/Ice-Fivem-js/HEAD/tx-admin/login.html --------------------------------------------------------------------------------