Jump to content

Search the Community

Showing results for tags 'licenseplate'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News
    • News
    • Development Announcements
    • Official TruckersMP Events
  • Q&A
    • Q&A 2024
  • Information & Support
    • TruckersMP Rules
    • Guides
    • Help
    • Suggestions
    • Recruitment
  • Community
    • Discussion
    • Q&A
    • VTC System
    • Event System
    • Discord
    • Developer Portal
    • Unofficial tools
    • Media
  • International Community
    • Other Languages
  • Archive
    • Archive
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Location


Interests


Known languages


VTC Name


Twitch


Twitter


Facebook


World Of Trucks


YouTube

Found 7 results

  1. This guide will help show you how to customise your license plate I first discovered this through learning how to get simple logos onto the plates, such as the Instagram and Facebook logo. After realising that all the code does is pull the image from the game files, I decided to dig into the files to try and find examples of textures that could be used as a plate background. I have provided a step-by-step guide which explains in detail two different options of styles you can use as a background for your plate and what each line of the final code means and how it affects the plate, however, if you are after the final code and don't want to spend the time reading through the guide, then skip to Option 1 - Step 6 or Option 2 - Step 4 and copy the final line of code there or choose any of the other options to quickly copy and use. STEP 1: First of all, you need to choose the truck/car you want to change the plate of. You can stay in-game for this entire process as you are simply editing a save and then loading a new one up. Once you have the truck/car you want to use, save the game. STEP 2: Access the new game save through the game.sii in Euro Truck Simulator 2/profiles/ProfileNumber/SaveNumber/game.sii (ProfileNumber and SaveNumber will be different depending on how many game saves you have and the name of your profile. STEP 3: Once you have opened your game.sii file, you can search for it two different ways. The best way I find is to search for your truck by using its current license plate which is Option A. However, you can use Option B to search for the truck you are currently using if you do not know the registration or cannot search for it. Option A: Search by Registration Option B: Search by Current Truck STEP 4: In this step, you can begin choosing which style you are wanting to use for your plate. There are two ways to do this; You can choose either Option 1 or Option 2. Option 1 is the most customisable way to make your plate by choosing any background colour and text with any country font you would like. Option 2 provides specific fading coloured backgrounds (Either Black or Blue) with a surrounding border which make the plate look more realistic and will allow you to tint it slightly for a cooler result. Option 1 - Standard coloured background for basic custom plates If you do not want to build your code, you can skip to Step 6 and copy the final code Step 1: Choosing the background colour To first build how you want your plate to be, you need to start customising values. To begin, we start by choosing the colour value which has to be written in the format <color value=######> I have chosen Blue for this example which will be written as the following: <color value=FFCCA72D> Step 2: Choosing either with country flag and lettering or without Once the colour is in place, we need to move onto how we will position the background on top of the plate which has to be written in the format <margin left=##>. The default to have a full coloured plate will be -15, however if you would like your plate to display the country flag and lettering on the side, then use 0 as the value. I have chosen to have the background cover the entire plate so I will use -15 as the value. Place this text next to the color value text leaving no spaces. <margin left=-15> Step 3: Inserting the dimensions of the background so that it fits onto the plate Now we need to insert the background as an image onto the plate and give it the necessary details to make sure it is aligned properly. To do this, we need to begin the code with <img src= and then link the background along with the relevant code to ensure its aligned properly. To do this we use xscale=stretch yscale=stretch><ret><margin left=0>align hstyle=center vstyle=center> to ensure the background is aligned in the correct position. This is the full code to use for the background and this needs to then be place after the margin left value leaving no spaces. <img src=/material/ui/white.mat xscale=stretch yscale=stretch><ret><margin left=0><align hstyle=center vstyle=center> Step 4: Font Size You can now choose how big you want your font to be, here are some examples of some sizes: Font Size 1.0 Font Size 1.1 Font Size 1.2 Font Size 1.3 Font Size 1.4 Font Size 1.5 These are just a few examples, however, feel free to experiment with the x and y scale values if you prefer to have the text stretched out more. For this example, I will choose 1.2 which will look like this in the code which then needs to be placed after the previous code value leaving no spaces. <font xscale=1.2 yscale=1.2> Step 5: Adding Text and Text Colour Now similar to how we put in the code for our background colour, we now need to define the colour for our plate text. For this example, I've chosen black so this is what I will put into the code <color value=FF000000> Once we've decided the colour, we can now put in the text we want our plate to say. Make sure this is after the > on the colour value text Step 6: Adding the Region Code To finish off we need to now add the region code in the format |country so that the game knows which font to use from the associated country. As I want the UK plate text, I will use |uk at the end of my code which then can be finished with ending quotation marks. So this will be our final result: license_plate: "<color value=FFCCA72D><margin left=-15><img src=/material/ui/white.mat xscale=stretch yscale=stretch><ret><margin left=0><align hstyle=center vstyle=center><font xscale=1.2 yscale=1.2><color value=FF000000>OLIOAK|uk" which will now look like this in-game: Once you've finished your code and ensured that it is surrounded by quotation marks, save the file and then load the save in-game to see your plate! Option 2 - Fading background and borders with tint options If you do not want to build your code, you can skip to Step 4 and copy the final code Step 1: Choosing the background From here, you can use this following image path to put the black license plate image onto the plate. /material/ui/lp/turkey/duty_rear.mat As it acts like any regular image on a license plate, it needs to include the <img src= at the beginning of it and have > at the end of the code. You can also then choose whether to have the country flag and lettering on the left hand side of the plate. If you do not want this, put the code listed below before the <img src= code <margin left=-15> Step 1a: Choosing the tint (Optional) Then the outline/tint colour has to be given which is usually White, so the following needs to be placed after the previous code but before the > at the end: color=FFFFFFFF This can be changed to any hex code to change the tint of the image Here are some examples of using different tints on the black background Blue tinted background with no country flag using Font Size 1.2 Pink tinted background with no country flag using Font Size 0.9 Step 2: Inserting the dimensions of the background so that it fits onto the plate Now we need to insert the background as an image onto the plate and give it the necessary details to make sure it is aligned properly. To do this, we need to begin the code with <img src= and then link the background along with the relevant code to ensure its aligned properly. To do this we use xscale=stretch yscale=stretch><ret><margin left=0>align hstyle=center vstyle=center> to ensure the background is aligned in the correct position. This is the full code to use for the background and this needs to then be place after the margin left value leaving no spaces. xscale=stretch yscale=stretch><ret><margin left=0><align hstyle=center vstyle=center> Step 3: Text colour To finish, we then set the colour of the text (which is optional but it is recommended to be able to actually see the plate as the default is FF000000 which is Black). This is set by using this: <color value=FF999999> Step 4: Region code Now the code part of it is complete, you must then write the text of your license plate which in this case was GN17 NBM and then finish up with the |country code to complete. The final code for this example is: license_plate: "<img src=/material/ui/lp/turkey/duty_rear.mat color=FFFFFFFF xscale=stretch yscale=stretch><ret><margin left=0><align hstyle=center vstyle=center><color value=FF999999>GN17 NBM|uk" Which looks like this in-game: Option 2 - Other Styles Blue Background: The blue Turkish plate background uses this code: /material/ui/lp/turkey/police_rear.mat and looks like this: The entire line of code for this is: license_plate: "<img src=/material/ui/lp/turkey/police_rear.mat color=FFFFFFFF xscale=stretch yscale=stretch><ret><margin left=0><align hstyle=center vstyle=center><color value=FFFFFFFF>GN17 NBM|uk" Different Countries: An example of using a different country is this example of Luxembourg: |luxembourg and looks like this: The entire line of code for this is: license_plate: "<img src=/material/ui/lp/turkey/duty_rear.mat color=FFFFFFFF xscale=stretch yscale=stretch><ret><margin left=0><align hstyle=center vstyle=center><color value=FF999999>OLIOAK|luxembourg" Other Backgrounds: Option 1 is aimed at using a basic simple white image to create a basic background whereas Option 2 is aimed at using the two coloured Turkish plates with the plate fading background and border which are already in the game files, however, it is possible to use any .mat image found in the game files as long as you use the correct file path after '<img src=' meaning it is therefore possible to dig into the game files and find textures that allow for even more different colours. Thank you for taking the time to read this guide and feel free to share any comments you have about this guide or any additional textures you've found that work well and I would LOVE to see screenshots of your creations you've made with the help of this guide! ? I do hope this guide helped and provided a better understanding of how the license plates work in-game and the ability to customise them further. I understand that this guide could've been simpler by providing the final code for those who are not bothered and just want the final result, however, I wanted to provide a step by step instruction to actually help readers have a better understanding of how it exactly works line by line.
  2. Hey, In this guide I will show you how to create a custom licenseplate from a normal licenseplate. What exactly do I mean? Just look at the picture below this text: 1. First of all go in the game and save the game. It is better to save the game twice (on two saves) so that you have a backup before your save is broken. 2. Now go to the correct folder (as shown in the screenshot) and take the game.sii file and drag it to the Decrypt.exe. Then open the game.sii file by double-clicking on it. 3. We are pressing ctrl and f and search for my_truck, now we are copy the nameless and search for the nameless. Thats now the truck which you have Ingame. 4. Now you are scrolling down to "license_plate" 5. Now you can create your Licenseplate with the following command: 5.1 I like to have a License plate where the background is Blue and the Text White "<color value=FF725025><margin left=-15><img src=/material/ui/white.mat xscale=stretch yscale=stretch><ret><margin left=0><align hstyle=center vstyle=center><font xscale=1.2 yscale=1.2><color value=FFFFFFFF>TEST</align></margin>|uk" Legend: The Orange Number is the background. The Red Number is the Text-color on the plate. The Green Word is the Text on the plate. 6. Now take the command you have just adapted to your taste and insert it after license_plate. 7. Save the file and go Ingame 8. Load the save and enjoy your new custom license_plate. I wish you an amazing rest day, see you in my next guide. Kind regards, berechtigter
  3. [Sorry for my bad English] Hello! Today I was trying to put icon into license plate on my truck. The problems is...I cant understand where are they located. Earlier I found this topic where guy has the same problem as me and he got the answer that icons (.mat files) are located in base.scs/material/ui/ I extracted that file and cant find any .mat files but ones on folder font and I am not sure that's what I wanted. All I want is a Scania or YouTube logo in my license plate as I saw these on other players. So can someone please help me to get those files or just tell me where are they located? Thanks for reading and I hope ill get the answer soon!
  4. Hello ^_^ I see this licence plate yesterday. I really wish to know how to get the color to be black like this one ->License plate color I would like please I tried editing dds file and mat file and tobj file but it does not work ? Please. Someone can help me? Tysm!
  5. Guest

    Plakanın Rengini Değiştirme

    Selamlar. Bu benim ilk forumum, daha önce bu konu hakkında yazılmamış sanırım. Dün TMP kurallarını okudum ve kurallarda plakanın rengini değiştirmekle alakalı bir ceza göremedim. Ben de hem tırımın hem dorsemin plaka rengini fotoğraftaki gibi mor yaptım daha hoş oldu. Ama bir arkadaşım plakasını mavi renk yaptığı için 2 gün ban yediğini söyledi. Sorum ise şu. Plakanın rengini değiştirmek mi yoksa mavi renk yapmak mı ban sebebi? Bilenler cevaplarsa memnun olurum.
  6. Доброго часу доби, далекобійники! Багато хто задається питанням - "Як мені змінити номерний знак на вантажівці?". Тут ви дізнаєтеся, що потрібно зробити для зміни автомобільного номера. Для початку необхідно перейти на офіційний сайт "World Of Trucks" ( https://www.worldoftrucks.com/en/ ). Після переходу на сайт натискаємо кнопку зверху "Join Now". Після цього вибираємо колонку "New steam user registration" і натискаємо на кнопку, показану нижче: Потім вам потрібно підключити ваш аккаунт Steam до сайту World Of Trucks. Після створення облікового запису World of Trucks вам потрібно aвторизуватися на сайті. Для цього натискаємо кнопку "Sign Up", вводимо дані від аккаунта "World Of Trucks" і тиснемо "Sign Up". Чудово! Тепер ви зареєстровані на офіційному сайті "World Of Trucks" ! Залишилася справа за малим ? Переходимо до основного етапу - це зміна номерного знака. Для цього переходимо в свій профіль, натиснувши на кнопку "My Page". Тут ви можете переглядати свою статистику по зовнішніх вантажоперевезень в грі. Тепер вибираємо вкладку "Profile Customization". Нижче ми бачимо вікно кастомного номерного знака. Вибираємо одну з 21 представлених країн і вписуємо придуманий номерний знак. Після цього натискаємо кнопку "Upload". Увага! На номері може бути як і стандартний формат, так і будь-набір букв і/або цифр. Це означає, що ви можете вписати будь-яке слово, наприклад свій ігровий нікнейм! Залишилося тільки підключити ваш профіль World Of Trucks к профілю в Euro Truck Simulator 2. Для цього заходимо в гру і у вікні вибору профілю вибираємо вкладку "Підключити профіль до World of Trucks". Далі вводимо дані від аккаунта World Of Trucks і натискаємо кнопку "Застосувати зміни". Тепер ви маєте індивідуальний номер на вантажівці! Всі гравці в мультіплеере будуть також його бачити. На жаль, поки що неможливо змінити номерний знак на особистому причепі, але ви можете зробити номерний знак однієї з ігрових країн, переставивши причіп в гараж потрібної країни. Всього доброго і рівних доріг, далекобійники! P.S. Якщо у вас є питання, можете запитати про це тут, я відповім на ваше запитання.
  7. So when i go on WOT (world of trucks) Changing plate name nothing happens i waited for like an hour still no change... anyone know what the problem could be? Thanks ) EDIT: I fixed it forget this
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.