├── .github ├── variables │ └── vars.env └── workflows │ └── documentation.yml ├── .gitignore ├── LICENSE ├── README.md ├── articles ├── audio.md ├── audio_filters.md ├── auto_reconnect.md ├── branches.md ├── bytecode_module.md ├── cdn.md ├── cdn_links.md ├── cef.md ├── changelogs │ ├── 10_0.md │ ├── 11_0.md │ ├── 12_0.md │ ├── 13_0.md │ ├── 14_0.md │ ├── 15_0.md │ ├── 2_2.md │ ├── 4_0.md │ ├── 6_0.md │ ├── 7_0.md │ ├── 8_0.md │ ├── 9_0.md │ ├── index.md │ ├── toc.yml │ └── upcoming.md ├── checkpoint.md ├── cloud_auth.md ├── commandlineargs.md ├── configs │ ├── client.md │ ├── index.md │ ├── resource.md │ ├── server.md │ ├── stream.md │ └── toc.yml ├── connection_queue.md ├── connectprotocol.md ├── console.md ├── contributing.md ├── customlauncher.md ├── dimensions.md ├── discord_oauth.md ├── earlyauth.md ├── external_voice_server.md ├── faq.md ├── index.md ├── logging.md ├── marker.md ├── master_list_api.md ├── meta_data.md ├── object.md ├── parachute_sync.md ├── ped.md ├── permissions.md ├── resources.md ├── rmlui │ ├── debugging.md │ ├── index.md │ ├── introduction.md │ └── nametags.md ├── search_help.md ├── serverspecs.md ├── setup_grafana.md ├── streamermode.md ├── synchronization.md ├── textlabel.md ├── toc.yml ├── troubleshooting │ ├── client-mods.md │ ├── client.md │ ├── server.md │ └── toc.yml ├── virtualentity.md └── voice.md ├── docfx.json ├── index.md ├── templates └── altmp │ ├── TypeScriptReference.extension.js │ ├── favicon.ico │ ├── logo.svg │ └── styles │ ├── main.css │ └── main.js └── toc.yml /.github/variables/vars.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/.github/variables/vars.env -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/README.md -------------------------------------------------------------------------------- /articles/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/audio.md -------------------------------------------------------------------------------- /articles/audio_filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/audio_filters.md -------------------------------------------------------------------------------- /articles/auto_reconnect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/auto_reconnect.md -------------------------------------------------------------------------------- /articles/branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/branches.md -------------------------------------------------------------------------------- /articles/bytecode_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/bytecode_module.md -------------------------------------------------------------------------------- /articles/cdn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/cdn.md -------------------------------------------------------------------------------- /articles/cdn_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/cdn_links.md -------------------------------------------------------------------------------- /articles/cef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/cef.md -------------------------------------------------------------------------------- /articles/changelogs/10_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/10_0.md -------------------------------------------------------------------------------- /articles/changelogs/11_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/11_0.md -------------------------------------------------------------------------------- /articles/changelogs/12_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/12_0.md -------------------------------------------------------------------------------- /articles/changelogs/13_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/13_0.md -------------------------------------------------------------------------------- /articles/changelogs/14_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/14_0.md -------------------------------------------------------------------------------- /articles/changelogs/15_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/15_0.md -------------------------------------------------------------------------------- /articles/changelogs/2_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/2_2.md -------------------------------------------------------------------------------- /articles/changelogs/4_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/4_0.md -------------------------------------------------------------------------------- /articles/changelogs/6_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/6_0.md -------------------------------------------------------------------------------- /articles/changelogs/7_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/7_0.md -------------------------------------------------------------------------------- /articles/changelogs/8_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/8_0.md -------------------------------------------------------------------------------- /articles/changelogs/9_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/9_0.md -------------------------------------------------------------------------------- /articles/changelogs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/index.md -------------------------------------------------------------------------------- /articles/changelogs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/toc.yml -------------------------------------------------------------------------------- /articles/changelogs/upcoming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/changelogs/upcoming.md -------------------------------------------------------------------------------- /articles/checkpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/checkpoint.md -------------------------------------------------------------------------------- /articles/cloud_auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/cloud_auth.md -------------------------------------------------------------------------------- /articles/commandlineargs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/commandlineargs.md -------------------------------------------------------------------------------- /articles/configs/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/configs/client.md -------------------------------------------------------------------------------- /articles/configs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/configs/index.md -------------------------------------------------------------------------------- /articles/configs/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/configs/resource.md -------------------------------------------------------------------------------- /articles/configs/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/configs/server.md -------------------------------------------------------------------------------- /articles/configs/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/configs/stream.md -------------------------------------------------------------------------------- /articles/configs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/configs/toc.yml -------------------------------------------------------------------------------- /articles/connection_queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/connection_queue.md -------------------------------------------------------------------------------- /articles/connectprotocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/connectprotocol.md -------------------------------------------------------------------------------- /articles/console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/console.md -------------------------------------------------------------------------------- /articles/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/contributing.md -------------------------------------------------------------------------------- /articles/customlauncher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/customlauncher.md -------------------------------------------------------------------------------- /articles/dimensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/dimensions.md -------------------------------------------------------------------------------- /articles/discord_oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/discord_oauth.md -------------------------------------------------------------------------------- /articles/earlyauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/earlyauth.md -------------------------------------------------------------------------------- /articles/external_voice_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/external_voice_server.md -------------------------------------------------------------------------------- /articles/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/faq.md -------------------------------------------------------------------------------- /articles/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/index.md -------------------------------------------------------------------------------- /articles/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/logging.md -------------------------------------------------------------------------------- /articles/marker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/marker.md -------------------------------------------------------------------------------- /articles/master_list_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/master_list_api.md -------------------------------------------------------------------------------- /articles/meta_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/meta_data.md -------------------------------------------------------------------------------- /articles/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/object.md -------------------------------------------------------------------------------- /articles/parachute_sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/parachute_sync.md -------------------------------------------------------------------------------- /articles/ped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/ped.md -------------------------------------------------------------------------------- /articles/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/permissions.md -------------------------------------------------------------------------------- /articles/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/resources.md -------------------------------------------------------------------------------- /articles/rmlui/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/rmlui/debugging.md -------------------------------------------------------------------------------- /articles/rmlui/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/rmlui/index.md -------------------------------------------------------------------------------- /articles/rmlui/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/rmlui/introduction.md -------------------------------------------------------------------------------- /articles/rmlui/nametags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/rmlui/nametags.md -------------------------------------------------------------------------------- /articles/search_help.md: -------------------------------------------------------------------------------- 1 | # This page isn't ready yet 2 | -------------------------------------------------------------------------------- /articles/serverspecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/serverspecs.md -------------------------------------------------------------------------------- /articles/setup_grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/setup_grafana.md -------------------------------------------------------------------------------- /articles/streamermode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/streamermode.md -------------------------------------------------------------------------------- /articles/synchronization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/synchronization.md -------------------------------------------------------------------------------- /articles/textlabel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/textlabel.md -------------------------------------------------------------------------------- /articles/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/toc.yml -------------------------------------------------------------------------------- /articles/troubleshooting/client-mods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/troubleshooting/client-mods.md -------------------------------------------------------------------------------- /articles/troubleshooting/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/troubleshooting/client.md -------------------------------------------------------------------------------- /articles/troubleshooting/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/troubleshooting/server.md -------------------------------------------------------------------------------- /articles/troubleshooting/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/troubleshooting/toc.yml -------------------------------------------------------------------------------- /articles/virtualentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/virtualentity.md -------------------------------------------------------------------------------- /articles/voice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/articles/voice.md -------------------------------------------------------------------------------- /docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/docfx.json -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/index.md -------------------------------------------------------------------------------- /templates/altmp/TypeScriptReference.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/templates/altmp/TypeScriptReference.extension.js -------------------------------------------------------------------------------- /templates/altmp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/templates/altmp/favicon.ico -------------------------------------------------------------------------------- /templates/altmp/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/templates/altmp/logo.svg -------------------------------------------------------------------------------- /templates/altmp/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/templates/altmp/styles/main.css -------------------------------------------------------------------------------- /templates/altmp/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/templates/altmp/styles/main.js -------------------------------------------------------------------------------- /toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altmp/altv-docs/HEAD/toc.yml --------------------------------------------------------------------------------