Installation

  1. Download the latest version of t3_trainjob from keymaster

  2. Drag t3_trainjob into your server's resources and add ensure t3_trainjob to your server.cfg

  3. Config In the config.lua you will find some options you can change to suit your server. Clothing

    Config.WorkClothes = {
        Male= {
            ['pants'] = {item = 135, texture = 0}, -- Pants
            ['arms'] = {item = 1, texture = 0}, -- Arms
            ['t-shirt'] = {item = 182, texture = 0}, -- T Shirt
            ['vest'] = {item = 0, texture = 0}, -- Body Vest
            ['torso2'] = {item = 364, texture = 0}, -- Jacket
            ['shoes'] = {item = 97, texture = 0}, -- Shoes
            ['accessory'] = {item = 0, texture = 0}, -- Neck Accessory
            ['bag'] = {item = 0, texture = 0}, -- Bag
            ['hat'] = {item = 145, texture = math.random(0,2)}, -- Hat
            ['glass'] = {item = 0, texture = 0}, -- Glasses
            ['mask'] = {item = 0, texture = 0} -- Mask
        },
        Female= {
            ['pants'] = {item = 35, texture = 0}, -- Pants
            ['arms'] = {item = 14, texture = 0}, -- Arms
            ['t-shirt'] = {item = 36, texture = 0}, -- T Shirt
            ['vest'] = {item = 0, texture = 0}, -- Body Vest
            ['torso2'] = {item = 414, texture = 4}, -- Jacket
            ['shoes'] = {item = 25, texture = 0}, -- Shoes
            ['accessory'] = {item = 0, texture = 0}, -- Neck Accessory
            ['bag'] = {item = 0, texture = 0}, -- Bag
            ['hat'] = {item = 144, texture = math.random(0,2)}, -- Hat
            ['glass'] = {item = 0, texture = 0}, -- Glasses
            ['mask'] = {item = 0, texture = 0} -- Mask
        }
    }

    Other Settings

    Config.Train = {type = 11, spawn = vector4(-137.7,6144.4,30.58,312.6), acc = 0.05, dec = 0.1, max = 36}
    Config.Deliveries = {
        ['boxes'] = {
            max = 8, --[[items per delivery, min is half of this]]
            payout = 2000, --[[payout per item]]
        },
    }
    
    Config.Markers = {
        ['duty'] = {enable = true, loc = vector3(-110.61,6187.47,30.02), drawDist = 8.0, type = 1, scale = vector3(0.25,0.25,0.25), color = {r=255,g=255,b=255,a=255}},
        ['clothes'] = {enable = true, loc = vector3(-104.17,6192.85,30.03), drawDist = 8.0, type = 1, scale = vector3(0.25,0.25,0.25), color = {r=255,g=255,b=255,a=255}},
        ['vehicle'] = {enable = true, loc = vector3(-140.02,6148.05,31.34), drawDist = 8.0, type = 1, scale = vector3(0.25,0.25,0.25), color = {r=255,g=255,b=255,a=255}},
    }
    Config.TextSettings = {color = {r=255,g=255,b=255,a=255}, font = 4}

  4. Add the job defined in the config to your framework

    Config.JobName = 'train'

  5. Restart the server

Last updated