Unsolved how do i add more engines to one engine jbeam file

Discussion in 'Mod Support' started by devo343, Jun 15, 2019.

  1. devo343

    devo343
    Expand Collapse

    Joined:
    Jan 24, 2017
    Messages:
    78
    wanna add some diseal automation engines to the d series and h series and so on but idk how to add multiple engines to the single engine jbeam file. i also dont know how to get the automation engines into beam ng drive without exporting a car for them any help?
     
  2. Alex_Farmer557

    Alex_Farmer557
    Expand Collapse

    Joined:
    Dec 28, 2016
    Messages:
    3,541
    export the car and then modify the jbeam file and make a separate file for them
     
  3. devo343

    devo343
    Expand Collapse

    Joined:
    Jan 24, 2017
    Messages:
    78
    how would i do that? i looked in the t series jbeam file bc i made some automation engines for that first do i just copy and paste the engines into that or?
     
  4. Alex_Farmer557

    Alex_Farmer557
    Expand Collapse

    Joined:
    Dec 28, 2016
    Messages:
    3,541
    modify the automation jbeam
     
  5. devo343

    devo343
    Expand Collapse

    Joined:
    Jan 24, 2017
    Messages:
    78
    how?
     
  6. Alex_Farmer557

    Alex_Farmer557
    Expand Collapse

    Joined:
    Dec 28, 2016
    Messages:
    3,541
    modify the slot and the slots

    if my engine (from automation) looks like this
    Code:
    {
        "merano_Engine": {
            "information":{
                "authors":"Camshaft Software",
                "name":"Lycoming 5.0L F4 Engine",
            }
            "slotType" : "merano_Engine",
            "slots": [
                ["type", "default", "description"]
                ["merano_intake","merano_intake", "Intake",{"coreSlot":true}],
                ["merano_engine_internals","merano_engine_internals", "Engine Long Block",{"coreSlot":true}],
                ["n2o_system","", "Nitrous Oxide System"],
                ["merano_engine_ecu","merano_engine_ecu", "Engine Management",{"coreSlot":true}],
                ["merano_Transmission","merano_Transmission", "Transmission"]
            ],
            "powertrain" : [
                ["type", "name", "inputName", "inputIndex"],
                ["combustionEngine", "mainEngine", "dummy", 0],


    and the t seris looks like this
    Code:
    "semi_engine_i6": {
        "information":{
            "authors":"BeamNG",
            "name":"Gavril TCX I6 Diesel Engine",
            "value":6000,
        },
        "slotType" : "semi_engine",
        "slots": [
            ["type", "default", "description"]
            //engine
            ["semi_turbo","semi_turbo_300", "Intake"],
            ["semi_exhaust","semi_exhaust", "Exhaust"],
            ["semi_engine_ecu","semi_engine_ecu", "Engine Management"],
            ["n2o_system","", "Nitrous Oxide System"],
            ["semi_engine_internals","semi_engine_internals", "Engine Long Block",{"coreSlot":true}],
            ["semi_transmission","semi_transmission_12M", "Transmission"],
        ],
        "powertrain" : [
            ["type", "name", "inputName", "inputIndex"],
            ["combustionEngine", "mainEngine", "dummy", 0],

    i combine them to make
    this
    Code:
    "merano_Engine": {
        "information":{
            "authors":"BeamNG",
            "name":"Lycoming 5.0L F4 Engine",
            "value":6000,
        },
        "slotType" : "semi_engine",
        "slots": [
            ["type", "default", "description"]
            //engine
            ["merano_intake","merano_intake", "Intake",{"coreSlot":true}],
            ["merano_engine_internals","merano_engine_internals", "Engine Long Block",{"coreSlot":true}],
            ["n2o_system","", "Nitrous Oxide System"],
            ["merano_engine_ecu","merano_engine_ecu", "Engine Management",{"coreSlot":true}],
            ["semi_transmission","semi_transmission_12M", "Transmission"],
        ],
        "powertrain" : [
            ["type", "name", "inputName", "inputIndex"],
            ["combustionEngine", "mainEngine", "dummy", 0],
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice