configClothe.lua

--[[
-- Set this setting to false if you are not using tgiann-clothing or do not want clothes to be items
-- if you are using tgiann-clothing, make this and the config.clothingAsItem setting in clothing the same
-- false version; https://youtu.be/o7ZofZZ00fo
-- If config.clothingAsItem is true, make sure the following items are added to your item list
c_necklace = { name = "c_necklace", label = "Necklace (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_bproof   = { name = "c_bproof", label = "Bullet Proof (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_decal    = { name = "c_decal", label = "Decals (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_torso    = { name = "c_torso", label = "Torso (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_mask     = { name = "c_mask", label = "Mask (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_helmet   = { name = "c_helmet", label = "Hat (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_glasses  = { name = "c_glasses", label = "Glasses (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_bag      = { name = "c_bag", label = "Bag (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_pants    = { name = "c_pants", label = "Pants (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_shoes    = { name = "c_shoes", label = "Shoes (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_bracelet = { name = "c_bracelet", label = "Bracelet (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_watch    = { name = "c_watch", label = "Watch (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
c_ear      = { name = "c_ear", label = "Ear (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" },
kposet     = { name = "kposet", label = "Clothes Bag", weight = 100, type = "item", unique = true, useable = true, shouldClose = false, description = "Special Bag to Store Your Clothes" }, -- Clothe small bag item
bkposet    = { name = "bkposet", label = "Clothes Bag Plus", weight = 300, type = "item", unique = true, useable = true, shouldClose = false, description = "Special Bag to Store Your Clothes" }, -- Clothe big bag item
clothe_set = { name = 'clothe_set', label = 'Clothe Set', weight = 0, type = 'item', image = 'clothe_set.png', clothe = true, unique = true, useable = true, shouldClose = false, description = '' }, -- Clothe set item
]]
config.clothingAsItem = true

-- Only works when clothingAsItem is false or Custom Script Clothe is active(https://docs.tgiann.com/scripts/tgiann-clothing/events-exports#custom-script-clothe)
config.naked = {
    male = {
        c_torso = {
            { componentId = 8,  prop = 15, texture = 0 }, --tshirt
            { componentId = 11, prop = 15, texture = 0 }, -- torso
            { componentId = 3,  prop = 15, texture = 0 }  -- arms
        },
        c_pants = {
            { componentId = 4, prop = 61, texture = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 } }
        },
        c_shoes = { { componentId = 6, prop = 34, texture = 0 } },
        c_decal = { { componentId = 10, prop = 0, texture = 0 } },
        c_bag = { { componentId = 5, prop = 0, texture = 0 } },
        c_ear = { { componentId = 2, prop = -1, texture = -1 } },
        c_necklace = { { componentId = 7, prop = 0, texture = 0 } },
        c_bproof = { { componentId = 9, prop = 0, texture = 0 } },
        c_bracelet = { { componentId = 7, prop = -1, texture = -1 } },
        c_watch = { { componentId = 6, prop = -1, texture = -1 } },
        c_glasses = { { componentId = 1, prop = -1, texture = -1 } },
        c_helmet = { { componentId = 0, prop = -1, texture = -1 } },
        c_mask = { { componentId = 1, prop = 0, texture = 0 } },
    },
    female = {
        c_torso = {
            { componentId = 8,  prop = 15, texture = 0 }, --tshirt
            { componentId = 11, prop = 15, texture = 0 }, -- torso
            { componentId = 3,  prop = 15, texture = 0 }  -- arms
        },
        c_pants = {
            { componentId = 4, prop = 62, texture = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 } }
        },
        c_shoes = { { componentId = 6, prop = 35, texture = 0 } },
        c_decal = { { componentId = 10, prop = 0, texture = 0 } },
        c_bag = { { componentId = 5, prop = 0, texture = 0 } },
        c_ear = { { componentId = 2, prop = -1, texture = -1 } },
        c_necklace = { { componentId = 7, prop = 0, texture = 0 } },
        c_bproof = { { componentId = 9, prop = 0, texture = 0 } },
        c_bracelet = { { componentId = 7, prop = -1, texture = -1 } },
        c_watch = { { componentId = 6, prop = -1, texture = -1 } },
        c_glasses = { { componentId = 1, prop = -1, texture = -1 } },
        c_helmet = { { componentId = 0, prop = -1, texture = -1 } },
        c_mask = { { componentId = 1, prop = 0, texture = 0 } },
    }
}

-- Only works when clothingAsItem is false or Custom Script Clothe is active(https://docs.tgiann.com/scripts/tgiann-clothing/events-exports#custom-script-clothe)
config.maskNumber = {
    man = { 266, 265, 263, 255, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 241, 240, 237, 236, 234, 233, 232, 231, 230, 228, 227, 225, 224, 223, 222, 221, 220, 219, 214, 213, 212, 211, 205, 203, 200, 194, 193, 192, 191, 190, 189, 188, 185, 184, 183, 182, 181, 180, 179, 178, 177, 176, 174, 173, 172, 171, 170, 168, 167, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 155, 154, 153, 152, 151, 150, 149, 147, 146, 144, 143, 142, 141, 140, 139, 138, 137, 136, 135, 134, 133, 132, 131, 130, 129, 128, 127, 126, 125, 124, 123, 119, 118, 117, 115, 113, 112, 110, 108, 106, 105, 104, 103, 102, 100, 99, 98, 97, 96, 95, 94, 93, 92, 91, 89, 88, 87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 35, 34, 33, 32, 31, 30, 29, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 10, 9, 8, 7, 6, 5, 4, 3, 2 },
    woman = { 248, 244, 243, 242, 241, 240, 239, 238, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 223, 222, 221, 220, 219, 217, 216, 214, 213, 212, 211, 210, 209, 202, 198, 196, 195, 194, 193, 192, 191, 189, 188, 185, 184, 183, 182, 181, 180, 179, 178, 177, 176, 174, 173, 172, 171, 170, 168, 167, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 155, 154, 153, 152, 151, 150, 149, 147, 146, 144, 143, 142, 141, 140, 139, 138, 137, 136, 135, 134, 133, 132, 131, 130, 129, 128, 127, 126, 125, 124, 123, 119, 118, 117, 115, 113, 112, 110, 108, 106, 105, 104, 103, 102, 100, 99, 98, 97, 96, 95, 94, 93, 92, 91, 89, 88, 87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 35, 34, 33, 32, 31, 30, 29, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 }
}

Last updated