Recycling job

Recycling center different material pick up locations

This file can be located in peuren_garbagejob/shared/sh_recycling.lua.

Config.RecyclingMaterials = {
    ['metal'] = {
        interaction = "Recycle metal",
        pos = vector3(-581.7, -1601.02, 26),
        heading = 173.34,
        model = 'prop_skip_02a',
        rewards = {
            { item = "phone", min = 1, max = 2, chance = 100 }
        }
    },

    ['plastic'] = {
        interaction = "Recycle plastic",
        pos = vector3(-587.74, -1600.53, 26),
        heading = 173.34,
        model = 'tr_prop_tr_skip_ramp_01a',
        rewards = {
            { item = "phone", min = 1, max = 2, chance = 100 }
        }
    },   

    ['paper'] = {
        interaction = "Recycle paper",
        pos = vector3(-579.36, -1602.29, 26),
        heading = 348.12,
        model = 'prop_skip_03',
        rewards = {
            { item = "phone", min = 1, max = 2, chance = 100 }
        }
    },  
}

Recycling line location and line position

This file can be located in peuren_garbagejob/shared/sh_recycling.lua.

Last updated