Jump to content

Olioak

Retired Team Member
 TruckersMP Profile
  • Posts

    242
  • Joined

  • Last visited

Everything posted by Olioak

  1. After some discussion about lack of options in this guide, I have now updated everything and provided two different options to customise your plate with easier steps to follow and loads of new examples to quickly copy the code across. I took some time to make this edit so I hope everyone will appreciate it and I can't wait to see even more customised plates around the game
  2. Realops ?️‍♂️ @Krewlex @Mangiskills @MaverickTD 

    unknown.png

    unknown.png

    unknown.png

    @Bosuball @Swen_Tha_Mastah 

     

    + A little accident :kappa:

     

    unknown.png

  3. Ah yes never experimented with the Russian one so not sure how that works. I assume because the way the text changes sizes might mean it isn't usually edited the way the rest of the plates. As for the driver name plate, I did attempt this however in the tests I made with the driver plate, it seemed that no one else except myself could see the plate and to everyone else it was blank unless that has been changed recently. But I guess if you like to see it in your own pictures then its not a bad idea. ?
  4. Iveco Night ? @Patriot Trucking @Kiv.

    unknown.png

    unknown.png

    unknown.png

    Although not the most appealing to look at, definitely the most fun to drive

  5. A nice little convoy to congratulate Critical ?

    unknown.png

    unknown.png

    unknown.png

    with @Patriot Trucking @Kiv. @Haulvoc and lil_kroket

  6. C o n g r a t s ?‍♀️

  7. 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.
  8. :wub:

    unknown.png

    unknown.png

    1. Dylаn

      Dylаn

      That man in the bottom right seems to look very weird?? Oh it’s just his arms?

  9. It has almost been one whole year since I joined the team back on September 19th, 2018. Even though I've had my ups and downs, I'd have to sum up the past year as one of the most incredible experiences I've ever had. Meeting so many new people from the community and learning how to manage the servers has been so much fun! Back in March, I left the team originally as I no longer had time for the role, but after leaving I didn't realise how much I missed doing the job I love, causing my sudden return to the team, back in April. However, this time, my reasons for leaving are not because I don't have the time, but it is truly because I have lost the motivation to do my job, and I no longer enjoy it the way I used to. I cannot say that I've got bored with my role, as every day brings so many different challenges, most I enjoy doing. However, I would have to admit that over the past few months, my performance has gotten worse, and doing the job I once loved, became more of a chore than something I wanted to do. Despite this, I could never say that it was a terrible decision to join the team, as it has completely transformed my life and the way I think about things, which I'm so grateful for. I promise not to write my whole life story, but I felt like I wanted to say this so people understand my reasons for leaving the team.

     

    Thank you for everyone in and out of the team who has helped make me enjoy working for TMP. You still won't get rid of me though, I'll still be on every so often cruising up and down my favourite road :LUL:.

     

    Here's a nice little pic to end this on a happy note - THANK YOU ❤️

    unknown.png

    1. Show previous comments  12 more
    2. AshlynsGaming

      AshlynsGaming

      I will miss you bud and all our memories and time spent on the roads. You have definitely changed me as a friend to become a better person. 

       

      - Arctic wolf

    3. Flindix

      Flindix

      I will really miss you olioak. I will miss driving with you and your blue lights. :(
      It was a very sad day today. Hopefully you still come back.

      P.s I'll still stalk you.

    4. .Andy.

      .Andy.

      I'm late as per usual but damn man! Reading that hit me a bit with the amount of drives we did and on every one you have the tendency to crash. Imma miss you a lot man. Definitely my Favourite GM by far! 

      Gonna miss you Oliak ❤️ Take care of yourself!

  10. Sunrise :P

     

    unknown.png

    unknown.png

     

     

    1. Show previous comments  3 more
    2. Matt #CarLadMatt

      Matt #CarLadMatt

      Nice sunrise, great start to the day:lol:

    3. legobrammetje

      legobrammetje

      finally changed the skin of the sscania? Or did you buy a cheaky new one?

    4. Olioak

      Olioak

      @legobrammetje Haha I bought a new one which is exactly the same :lol:

  11. Midsummer Madness 2019

     

    Photos with the Event Staff after the convoy: 

     
     
     
    Spoiler

    Other pictures around the event:

    Spoiler

    @willians1002 @Newo

    unknown.png

    unknown.png

    unknown.png

    unknown.png

    unknown.png

     Thanks to everyone who took part and helped out <3

     

    1. Show previous comments  5 more
    2. Velo

      Velo

      Great photos @Olioak:love:

    3. Guest

      Guest

      nice photo:wub:

    4. davidd.

      davidd.

      Thanks for helping out, Oli. Hope you enjoyed yourself! :wub:

  12. Thanks for all the laughs we've had :wub: 

     

    Come back soon! ;) gonnamissu

  13. Another great month now over. I've made some great new memories and even new friends. :lol:

    Here's some of my favourite shots from this past month <3

    Spoiler

    Joined Prime Logistics and had some pretty interesting drives with @Savage. & @Ali.

    unknown.png

    Should've slowed down for the corner, tut tut

    unknown.png

    unknown.png

    unknown.png

    Fun (and SLOW) drives with @Flindix

    unknown.png

    And some unexpected meetups with @Andy_

    unknown.png

    Then some more random shots I've taken of my own trucks this month:

    Spoiler

    unknown.png

    unknown.png

    unknown.png

    unknown.png

    unknown.png

    unknown.png

    unknown.png

     

    Here's to June! ;)

     

    1. Show previous comments  2 more
    2. Flindix

      Flindix

      Oi I'm not that slow :(

    3. Killua  // Ireland ^_^
    4. Guest

      Guest

      It's a beautiful picture.

  14. A great event to celebrate TMP's 5th Birthday! Glad I could be a part of it :wub:

    Had great fun driving around with @CrackPrewier & @Ali.

    unknown.png

    unknown.png

    and also a beautiful pic with @Moh_ :D

    unknown.png

     

    1. Show previous comments  4 more
    2. Moh_

      Moh_

      So rude, your driving is lovely Oli :kappa:

       

  15. From the other month but still one of my favourite drives ever with my favourite people <3 @Ali. @Savage. :wub:

    unknown.png

  16. YAAAAAAAAAAAAAAY I cannot contain my excitement :wub: Congrats <33

    1. Savage.

      Savage.

      Thank you OLIIIII :love:

  17. Scanias in the Sunset :wub: @t_bag @PatriotTrucking 

    ets2_20190413_033343_00.png

    1. Ady Man

      Ady Man

      Nice Photo:love:

    2. [MCG] Kien Giang
    3. legobrammetje

      legobrammetje

      The blue one is tired, he almost falls asleep.

  18. Back with the bois @Savage. @Ali. :ph34r:

    unknown.png

    1. Savage.

      Savage.

      <333 me and Ali's paintjobs :(( 

  19. It is finally the time for me to have a long break from the job I absolutely love. I am leaving my role for quite a while and I wanted to post this to show how much fun I've had since October last year. First of all, I want to say how incredibly friendly the whole staff team and community are. I never expected to make friends at all, but I was completely wrong! I will definitely miss the fun drives and events that I've done along with the many friends I've shared it with. I wanted to create a little photo album of all of my favourite memories I've had over these past months, so I hope you enjoy ;)

     

    https://docs.google.com/document/d/1dekZmsFGOMkDkN8Q14d6cBip0SmlRE5u_nWlntEi8qo

     

    Mentions: (Aka my favourite people <3)

     

    1. Show previous comments  34 more
    2. Amber Rose
    3. DodoC

      DodoC

      hm little late but great you're back :P

       

×
×
  • 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.