Difference between revisions of "Tutorials/Beginners/Truck accessory/1. How to configure new truck accessory mod"

From SCS Modding Wiki
Jump to navigation Jump to search
Line 54: Line 54:
 
# The price is a price of your accessory in game base currency (€ for ETS2, $ for ATS).
 
# The price is a price of your accessory in game base currency (€ for ETS2, $ for ATS).
 
# The icon is a image that is displayed in truck configuration screen. We will leave the image at the moment as '''f_grill_09'''.
 
# The icon is a image that is displayed in truck configuration screen. We will leave the image at the moment as '''f_grill_09'''.
# The exterior_model is a model of the grill. It must a path to the '''.pmd''' file you will get after converting the data. So for this it will be: '''"/vehicle/trucl/upgrade/frontgrill/renault_magnum_2009/custom_grill.pmd"'''.
+
# The exterior_model is a model of the grill. It must a path to the '''.pmd''' file you will get after converting the data. So for this it will be: '''"/vehicle/truck/upgrade/frontgrill/renault_magnum_2009/custom_grill.pmd"'''.
 +
|- style="vertical-align:top"
 +
| width="10px" | '''5'''
 +
| width="500px" | IMG
 +
| Inside '''mod_accessory''' create folders:
 +
* '''vehicle'''
 +
** '''truck'''
 +
*** '''upgrade'''
 +
***** '''frontgrill'''
 +
****** '''renault_magnum_2009'''
 +
|- style="vertical-align:top"
 +
| width="10px" | '''6'''
 +
| width="500px" | IMG
 +
|
  
 
|}
 
|}

Revision as of 15:11, 26 February 2016

1 IMG Create folder called 02_truck_accessory.
2 IMG Inside 02_truck_accessory create folders:
  • mod_accessory - where you will put the new resources
  • base - for existing game resources which you will use
3 IMG Inside mod_accessory create folders:
  • def
    • vehicle
      • truck
        • renault.mangnum
          • accessory
            • f_grill
4 IMG Inside /02_truck_accessory/mod_accessory/def/vehicle/truck/renault.magnum/accessory/f_grill create file called custom_g.sii which will contain definition of the grill.

And paste there the following example definition:

SiiNunit
{
accessory_addon_data : unit.name
{
    name: "My front grill"
    price: 1
    unlock: 0
    icon: "f_grill_09"
    exterior_model: "model path"
}
}

And keep the file opened.

4 IMG Now change definition as you want:
  1. "unit.name" must be set to some unique value - each component divided by dot can have max 12 characters. For example the good name will be custom.amazing.renault.f_grill
  2. The name is the name of the accessory in truck configuration screen. You can call it in any way.
  3. The price is a price of your accessory in game base currency (€ for ETS2, $ for ATS).
  4. The icon is a image that is displayed in truck configuration screen. We will leave the image at the moment as f_grill_09.
  5. The exterior_model is a model of the grill. It must a path to the .pmd file you will get after converting the data. So for this it will be: "/vehicle/truck/upgrade/frontgrill/renault_magnum_2009/custom_grill.pmd".
5 IMG Inside mod_accessory create folders:
  • vehicle
    • truck
      • upgrade
          • frontgrill
            • renault_magnum_2009
6 IMG

See also