├── LICENSE.md ├── README.md ├── client ├── carmenu.lua └── main.lua ├── config.lua ├── fxmanifest.lua ├── locales ├── en.json ├── et.json ├── fr.json ├── hu.json └── pl.json ├── server.lua └── vendor └── freecam ├── INFO.txt ├── LICENSE.txt ├── camera.lua ├── config.lua ├── main.lua └── utils.lua /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ox_commands 2 | -------------------------------------------------------------------------------- /client/carmenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/client/carmenu.lua -------------------------------------------------------------------------------- /client/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/client/main.lua -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/config.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/locales/en.json -------------------------------------------------------------------------------- /locales/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/locales/et.json -------------------------------------------------------------------------------- /locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/locales/fr.json -------------------------------------------------------------------------------- /locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/locales/hu.json -------------------------------------------------------------------------------- /locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/locales/pl.json -------------------------------------------------------------------------------- /server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/server.lua -------------------------------------------------------------------------------- /vendor/freecam/INFO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/vendor/freecam/INFO.txt -------------------------------------------------------------------------------- /vendor/freecam/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/vendor/freecam/LICENSE.txt -------------------------------------------------------------------------------- /vendor/freecam/camera.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/vendor/freecam/camera.lua -------------------------------------------------------------------------------- /vendor/freecam/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/vendor/freecam/config.lua -------------------------------------------------------------------------------- /vendor/freecam/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/vendor/freecam/main.lua -------------------------------------------------------------------------------- /vendor/freecam/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overextended/ox_commands/HEAD/vendor/freecam/utils.lua --------------------------------------------------------------------------------