πŸ“•User guide

User guide on how to use the Dynasty Electrician

1. Items

To modify the received items quantity and price you modify the values in the table SellingItems inside dynasty_electrician/config/config.lua

SellingItems = {
    {
        name = "wires",
        quantity = 5,
        price = 50
    },
    {
        name = "battery",
        quantity = 3,
        price = 75
    },
},

2. Possible props to work on

To modify the names of the props you can interact with during the job, you replace the values inside the tables Config.Fuses and Config.Lights inside dynasty_electrician/config/config.lua

Config.Fuses = {
    "prop_elecbox_01a",
    "prop_elecbox_02a",
    "prop_elecbox_03a",
    "prop_elecbox_04a",
    "prop_elecbox_05a",
    "prop_elecbox_07a",
    "prop_elecbox_09",
    "prop_elecbox_10",
}

Config.Lights = {
    "prop_streetlight_01"
}

3. Add ore remove coordinates you can be sent to work

To add new coords where you can interact with, you should look for a prop of the list Config.Fuses or Config.Lights and add its location to the table TaskTypes inside dynasty_electrician/config/config.lua

TaskTypes = {
    {
        type = "Repair Fuse",
        electricFuses = {
            vector3(707.6088, 61.97802, 83.68787),
            vector3(705.1649, 59.05055, 83.85645),
            vector3(679.3582, -32.54505, 82.98022),
            vector3(438.4615, -64.93187, 73.52747),
            vector3(480.0132, 49.46374, 93.42712),
            vector3(534.4484, 64.77363, 96.22412),
            vector3(856.9187, -139.9648, 78.71716),
            vector3(989.9736, -260.9934, 67.78174),
            vector3(996.7516, -198.9099, 71.06738),
            vector3(939.7714, -132.9758, 75.0271),
            vector3(842.6901, -4.140656, 80.13257),
            vector3(891.5077, 41.39341, 78.71716),
            vector3(892.6813, 42.63297, 78.75098),
            vector3(936.7121, 100.6813, 79.47546),
            vector3(633.1385, 232.0088, 99.71204),
            vector3(617.1561, 216.7516, 100.8411),
            vector3(535.2659, 247.1077, 103.0989),
            vector3(362.3209, 306.422, 103.6044),
            vector3(351.9429, 324.7912, 104.1604),
            vector3(200.0571, 435.1253, 119.0388),
            vector3(-320.4659, 393.8374, 110.6981),
            vector3(-525.4154, -15.56044, 44.46155),
            vector3(-289.1736, -51.50769, 49.09521),
            vector3(-190.8132, -85.8989, 51.95972),
            vector3(-40.81319, -135.7451, 57.35168),
            vector3(103.5692, -158.9275, 54.85791),
            vector3(178.6154, -201.6396, 54.50403),
            vector3(191.8945, -223.0813, 53.98169),
            vector3(423.5472, -295.1604, 50.88135),
            vector3(432.8044, -283.7538, 50.22412),
            vector3(498.1714, -191.3934, 52.48206),
            vector3(458.7429, -136.7077, 62.255),
            vector3(448.167, -127.4505, 63.83887),
            vector3(446.7033, -127.0681, 63.95679),
            vector3(315.2571, -76.56264, 69.61829),
            vector3(255.2967, -84.27692, 69.98901),
            vector3(216.8571, -50.03077, 69.0791),
            vector3(58.06154, 8.123077, 69.19702),
            vector3(44.61099, -15.62637, 69.44983),
            vector3(19.0022, 26.07033, 70.57874),
            vector3( -17.78901, 39.79781, 71.92676),
            vector3( -58.08791, 16.66813, 72.21313),
            vector3( -117.6923, -975.389, 292.7267),
        }
    },
    {
        type = "Repair light",
        electricFuses = {
            vec3(302.835175, 7.503297, 81.126709),
            vec3(-11.195602, -280.351654, 46.517212),
            vec3(-248.624176, 44.531872, 59.390503),
            vec3(-134.940659, 95.604401, 70.275513),
            vec3(43.094509, 14.175825, 69.197021),
            vec3(152.452759, -22.747250, 67.175049),
            vec3(243.639557, -59.261536, 69.129639),
            vec3(284.017578, -48.989010, 70.039551),
            vec3(291.956055, -22.021975, 74.420532)
        }
    },
}

Last updated