{"id":139089,"date":"2024-05-22T11:36:00","date_gmt":"2024-05-22T09:36:00","guid":{"rendered":"https:\/\/hifivem.com\/?p=139089"},"modified":"2025-06-12T15:06:52","modified_gmt":"2025-06-12T13:06:52","slug":"so-installieren-sie-fivem-add-on-autos","status":"publish","type":"post","link":"https:\/\/fivemx.com\/de\/how-to-install-fivem-addon-cars\/","title":{"rendered":"So installieren Sie FiveM Addon Cars"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Adding new vehicles to your FiveM server can significantly enhance the gameplay experience. There are two main types of vehicles you can add: Addon vehicles and Replacement vehicles.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Addon Vehicles vs. Replacement Vehicles<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Addon Vehicles:<\/strong> These do not replace any existing GTA 5 vehicles. They are recommended for adding multiple cars to your server without affecting the default vehicles.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Replacement Vehicles:<\/strong> These replace existing GTA 5 vehicles with new ones. While less common, some players prefer this method for specific purposes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Add an Addon Vehicle<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step-by-Step Instructions<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Find and Download the Vehicle Pack<\/strong>\n<ul class=\"wp-block-list\">\n<li>Locate a vehicle or vehicle pack you wish to add (e.g., LSPD Mega Pack 229).<\/li>\n\n\n\n<li>Download the pack, ensuring you choose the latest ADDON version if given an option.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Prepare Your Server Directory<\/strong>\n<ul class=\"wp-block-list\">\n<li>Decide where to place the vehicles in your server directory. A common practice is to use a <code>[cars]<\/code> folder within the FiveM directory.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Add the Vehicle Files<\/strong>\n<ul class=\"wp-block-list\">\n<li>Drag and drop the main folder containing the <code>stream<\/code> folder and <code>fxmanifest.lua<\/code> into your chosen directory.<\/li>\n\n\n\n<li>If the pack uses <code>__resource.lua<\/code> instead of <code>fxmanifest.lua<\/code>, you may need to create an <code>fxmanifest.lua<\/code>. Use the example below as a template:<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>fx_version 'cerulean'<br>author 'CAR PACK CREATOR'<br>description '&lt;Department&gt; Vehicle Pack, created by &lt;Creator&gt;!'<br>game 'gta5'<br><br>files {<br>    'data\/**\/*.meta',<br>}<br><br>data_file 'HANDLING_FILE'            'data\/**handling*.meta'<br>data_file 'VEHICLE_METADATA_FILE'    'data\/**\/vehicles*.meta'<br>data_file 'CARCOLS_FILE'             'data\/**\/carcols*.meta'<br>data_file 'VEHICLE_VARIATION_FILE'   'data\/**\/carvariations*.meta'<br><\/code><\/pre>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li><strong>Update Your Server Configuration<\/strong>\n<ul class=\"wp-block-list\">\n<li>Navigate to your <code>server.cfg<\/code> file and add the following lines to ensure the vehicle pack is loaded:<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-preformatted\">plaintextCode kopieren<code># Vehicle Pack(s)\nensure [cars]\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example <code>server.cfg<\/code><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>#  Server Information  #<br>########################<br>endpoint_add_tcp \"0.0.0.0:30120\"<br>endpoint_add_udp \"0.0.0.0:30120\"<br>sv_maxclients 64<br>sv_enforceGameBuild 2802<br>load_server_icon logo.png<br>sv_licenseKey \"CHANGEME\"<br>sv_hostname \"CHANGEME\"<br>set steam_webApiKey \"CHANGEME\"<br>sets sv_projectName \"CHANGEME\"<br>sets sv_projectDesc \"CHANGEME\"<br>sets locale \"en-US\"<br>sets tags \"roleplay, standalone, vMenu, Modded-Vehicles, Modded-EUP\"<br>sets Discord \"https:\/\/discord.gg\/&lt;link&gt;\"<br>sets Website \"CHANGEME\"<br>sets banner_detail \"&lt;Image&gt;\"<br><br>########################<br>#    Default Files     #<br>########################<br>ensure mapmanager<br>ensure chat<br>ensure spawnmanager<br>ensure sessionmanager<br>ensure basic-gamemode<br>ensure hardcap<br>ensure RageUI<br>ensure NativeUI<br><br>########################<br>#    Vehicle Files     #<br>########################<br>ensure [cars]<br><br>########################<br>#    System Admins     #<br>########################<br>add_ace group.admin command allow<br>add_ace group.admin command.quit deny<br>add_principal identifier.fivem:&lt;ID&gt; group.admin<br><br>sv_maxclients 64<br><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">How to Add a Replacement Vehicle<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step-by-Step Instructions<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Find and Download the Vehicle Pack<\/strong>\n<ul class=\"wp-block-list\">\n<li>Locate a vehicle or vehicle pack you wish to add (e.g., LSPD Legacy Pack 81).<\/li>\n\n\n\n<li>Download the pack, ensuring you choose the latest REPLACEMENT version if given an option.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Prepare Your Server Directory<\/strong>\n<ul class=\"wp-block-list\">\n<li>Decide where to place the vehicles in your server directory. A common practice is to use a <code>[cars]<\/code> folder within the FiveM directory.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Add the Vehicle Files<\/strong>\n<ul class=\"wp-block-list\">\n<li>Drag and drop the main folder containing the <code>stream<\/code> folder and <code>fxmanifest.lua<\/code> into your chosen directory.<\/li>\n\n\n\n<li>If the pack uses <code>__resource.lua<\/code> instead of <code>fxmanifest.lua<\/code>, you may need to create an <code>fxmanifest.lua<\/code>. Use the example below as a template:<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>fx_version 'cerulean'<br>author 'CAR PACK CREATOR'<br>description '&lt;Department&gt; Vehicle Pack, created by &lt;Creator&gt;!'<br>game 'gta5'<br><br>files {<br>    'data\/**\/*.meta',<br>}<br><br>data_file 'HANDLING_FILE'            'data\/**handling*.meta'<br>data_file 'VEHICLE_METADATA_FILE'    'data\/**\/vehicles*.meta'<br>data_file 'CARCOLS_FILE'             'data\/**\/carcols*.meta'<br>data_file 'VEHICLE_VARIATION_FILE'   'data\/**\/carvariations*.meta'<br><\/code><\/pre>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li><strong>Update Your Server Configuration<\/strong>\n<ul class=\"wp-block-list\">\n<li>Navigate to your <code>server.cfg<\/code> file and add the following lines to ensure the vehicle pack is loaded:<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-preformatted\">plaintextCode kopieren<code># Vehicle Pack(s)\nensure [cars]\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example <code>server.cfg<\/code><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">plaintextCode kopieren<code>########################\n#  Server Information  #\n########################\nendpoint_add_tcp \"0.0.0.0:30120\"\nendpoint_add_udp \"0.0.0.0:30120\"\nsv_maxclients 64\nsv_enforceGameBuild 2802\nload_server_icon logo.png\nsv_licenseKey \"CHANGEME\"\nsv_hostname \"CHANGEME\"\nset steam_webApiKey \"CHANGEME\"\nsets sv_projectName \"CHANGEME\"\nsets sv_projectDesc \"CHANGEME\"\nsets locale \"en-US\"\nsets tags \"roleplay, standalone, vMenu, Modded-Vehicles, Modded-EUP\"\nsets Discord \"https:\/\/discord.gg\/&lt;link&gt;\"\nsets Website \"CHANGEME\"\nsets banner_detail \"&lt;Image&gt;\"\n########################\n#    Default Files     #\n########################\nensure mapmanager\nensure chat\nensure spawnmanager\nensure sessionmanager\nensure basic-gamemode\nensure hardcap\nensure RageUI\nensure NativeUI\n########################\n#    Vehicle Files     #\n########################\nensure [cars]\n########################\n#    System Admins     #\n########################\nadd_ace group.admin command allow\nadd_ace group.admin command.quit deny\nadd_principal identifier.fivem:&lt;ID&gt; group.admin\nsv_maxclients 64\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Why Use a <code>[cars]<\/code> Folder?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Using a <code>[cars]<\/code> folder simplifies server management. When you ensure a folder with brackets via <code>server.cfg<\/code>, everything within that folder is automatically started on server startup. This method is more efficient and organized, especially when adding multiple vehicles.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Additional Notes<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Extra Files:<\/strong> Some vehicle packs may contain additional files. Always check the README.txt or README.md files within the downloaded zip for specific instructions.<\/li>\n\n\n\n<li><strong>Need Help?<\/strong> If you encounter any issues or need further assistance, feel free to seek help by replying to community posts or joining relevant forums.<\/li>\n<\/ul>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Adding new vehicles to your FiveM server can significantly enhance the gameplay experience. There are two main types of vehicles you can add: Addon vehicles and Replacement vehicles. Addon Vehicles vs. Replacement Vehicles Addon Vehicles: These do not replace any existing GTA 5 vehicles. They are recommended for adding multiple cars to your server without [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":135975,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1899],"tags":[],"class_list":["post-139089","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/posts\/139089","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/comments?post=139089"}],"version-history":[{"count":0,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/posts\/139089\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/media\/135975"}],"wp:attachment":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/media?parent=139089"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/categories?post=139089"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/tags?post=139089"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}