Var FiveM
ScriptlerPaketlerAboneliklerDokumanlar
VAR
Var FiveM
ScriptlerPaketlerAboneliklerDokumanlar
Tema OzellestiriciHakkimizdaIletisim
Hemen Al

-- 28 sections

  • ›paintball
    • configuration
    • features
    • anti-cheat-integration
    • game-modes
    • api
    • arenas
    • command
    • config
  • ›chess
    • configuration
    • events
    • integration-example
    • exports
    • controls
    • config
  • ›supermarket simulator
    • configuration
    • catalog-manager
    • commands-and-permissions
    • props-editors
    • owning-and-running-a-store
    • config
  • ›coins shop
    • configuration
    • identifier
    • export
    • server-event
    • languages
    • products
    • delivery
    • owner-panel
    • webhooks-discord
  • ›clothes shop
    • installation
    • configuration
    • blips-marker
    • translate
    • change-cam-and-pos
  • ›casino
    • installation
    • configuration
    • main-config
    • horse
    • lucky-whell
    • translate
  • ›drugs
    • installation
    • configuration
    • labs-and-interiors
    • maintenance-and-modules
    • missions
    • street-selling
    • administration
  • ›clothes shop v2
    • installation
    • configuration
    • position
    • advice-and-troubleshooting
    • configure-clothing-shops
  • ›interaction
    • configuration
    • public-api
    • interaction-config-reference
    • dialog-system
  • ›emote
    • configuration
    • config
    • adding-emote
    • menu
    • keybind
    • modules
    • 3d-placement
    • playlist
    • wheel
    • shared-emotes
  • ›crew
    • installation
    • export
  • ›alert job
    • installation
    • server-export
  • ›pin code
    • installation
    • export
  • ›society manager
    • installation
    • export
    • configuration
    • translate
    • max-salary
    • last-invoice
  • ›property
    • installation
    • configuration
    • translate
    • add-interior
  • ›barber shop
    • installation
    • configuration
    • change-menu-open-source
    • blips
    • translate
    • add-shop
  • ›shop with basket
    • installation
    • configuration
    • item-category-config
    • blips-marker
    • translate
    • add-shop
  • ›tattoo shop
    • installation
    • configuration
    • edit-tattoo
    • blips-marker
    • translate
    • add-shop
  • ›gardener job
    • installation
    • configuration
    • change-pos-farm
    • blips
    • translate
  • ›heist atm
    • installation
    • configuration
    • event-money
    • translate
    • police-alert
  • ›heist fleeca
    • installation
    • configuration
    • translate
    • pos-fleeca-heist
  • ›poster job
    • installation
    • configuration
    • change-pos-farm
    • change-poster-texture
    • blips-marker
    • translate
  • ›loading screen
    • installation
    • configuration
  • ›bank
    • installation
    • configuration
    • position
    • blips
    • translate
    • society
  • ›autocardealer
    • installation
    • configuration
    • add-vehicles
    • translate
    • blips
    • coords
  • ›character creator
    • installation
    • configuration
    • translate
    • expression
    • spawn
  • ›multi character
    • installation
    • configuration
    • translate
    • change-character-creator
    • commands
  • ›bill
    • installation
    • configuration
    • translate
    • control

~/docs/clothes-shop-v2/configuration/position

clothes shop v2 docs›
  • installation
  • configuration
  • configuration/position
  • configuration/advice-and-troubleshooting
  • configuration/configure-clothing-shops

Clothes Shop V2

Position

-- 2 code blocks · 1 min read

get var-clothesshop v2try it on the test server

Update :

You can now adapt the script directly for Suburban, Binco from KingMaps

Vanilla IPL

lua
Shared.ClotheShops = {
    -- 1
    strawberry = {
        name = "Discount Store - Strawberry",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            undershirt = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 300, mult = 2},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 250}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 180}, icon = "images/icons/CLOTH-5-ICON.png"},
            mask = {enabled = false}
        },
        blip = {
            pos = vec3(71.835, -1399.081, 29.376),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 2
    hawick = {
        name = "Suburban - Hawick",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.00,
        categories = {
            arms = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            undershirt = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            tops = {
                enabled = true,
                label = "Hauts Urbains",
                price = {mode = "multiplier", base = 350, mult = 3},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 220}, icon = "images/icons/CLOTH-5-ICON.png"},
            glasses = {
                enabled = true,
                label = "Optique",
                price = {mode = "table", map = {[0] = 100, [1] = 150, [2] = 200, [10] = 1000}},
                icon = "images/icons/CLOTH-8-ICON.png"
            }
        },
        blip = {
            pos = vec3(-708.791199, -160.114288, 37.401489),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 3
    rockford = {
        name = "Ponsonbys - Rockford",
        payment = "bank",
        currency = "$",
        tax = 0.05,
        discount = 0.00,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 600}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 480}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 420}, icon = "images/icons/CLOTH-5-ICON.png"},
            accessories = {
                enabled = true,
                price = {mode = "multiplier", base = 250, mult = 5},
                icon = "images/icons/CLOTH-2-ICON.png"
            }
        },
        blip = {
            pos = vec3(-167.863, -298.969, 39.743),
            sprite = 73,
            display = 4,
            scale = 0.75,
            colour = 5,
            name = "Luxury Clothing"
        }
    },
    -- 4
    textile = {
        name = "Discount Store - Textile City",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 280, mult = 2},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 220}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 160}, icon = "images/icons/CLOTH-5-ICON.png"},
            bags = {
                enabled = true,
                price = {mode = "fixed", base = 300},
                blacklist = {15, 16, 17},
                icon = "images/icons/CLOTH-6-ICON.png"
            }
        },
        blip = {
            pos = vec3(428.694, -800.106, 29.511),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 5
    vespucci_beach = {
        name = "Binco - Vespucci Beach",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 300, mult = 2},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 230}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 170}, icon = "images/icons/CLOTH-5-ICON.png"},
            mask = {
                enabled = true,
                price = {mode = "multiplier", base = 200, mult = 5},
                icon = "images/icons/CLOTH-7-ICON.png"
            },
            bags = {enabled = true, price = {mode = "fixed", base = 350}, icon = "images/icons/CLOTH-6-ICON.png"}
        },
        blip = {
            pos = vec3(-829.413, -1073.710, 11.348),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 6
    del_perro = {
        name = "Ponsonbys - Del Perro",
        payment = "bank",
        currency = "$",
        tax = 0.05,
        discount = 0.00,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 650}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 520}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 450}, icon = "images/icons/CLOTH-5-ICON.png"},
            accessories = {
                enabled = true,
                price = {mode = "multiplier", base = 300, mult = 6},
                icon = "images/icons/CLOTH-2-ICON.png"
            }
        },
        blip = {
            pos = vec3(-1447.797, -242.461, 49.840),
            sprite = 73,
            display = 4,
            scale = 0.75,
            colour = 5,
            name = "Luxury Clothing"
        }
    },
    -- 7
    paleto = {
        name = "Discount Store - Paleto",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.05,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 320}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 240}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 180}, icon = "images/icons/CLOTH-5-ICON.png"},
            mask = {
                enabled = true,
                price = {mode = "multiplier", base = 200, mult = 4},
                icon = "images/icons/CLOTH-7-ICON.png"
            }
        },
        blip = {
            pos = vec3(11.632, 6514.224, 31.897),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 8
    alta = {
        name = "Suburban - Alta",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.05,
        categories = {
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 360, mult = 2},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 280}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 220}, icon = "images/icons/CLOTH-5-ICON.png"},
            glasses = {
                enabled = true,
                label = "Optique",
                price = {mode = "table", map = {[0] = 120, [1] = 180, [2] = 220}},
                icon = "images/icons/CLOTH-8-ICON.png"
            }
        },
        blip = {
            pos = vec3(123.646, -219.440, 54.577),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 9
    grapeseed = {
        name = "Discount - Grapeseed",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 220}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 160}, icon = "images/icons/CLOTH-5-ICON.png"},
            bags = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-6-ICON.png"}
        },
        blip = {
            pos = vec3(1696.291, 4829.312, 42.083),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 10
    harmony = {
        name = "Discount - Harmony",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 230}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 170}, icon = "images/icons/CLOTH-5-ICON.png"},
            helmet = {
                enabled = true,
                price = {mode = "multiplier", base = 150, mult = 3},
                icon = "images/icons/CLOTH-1-ICON.png"
            }
        },
        blip = {
            pos = vec3(618.093, 2759.629, 42.108),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 11
    sandy = {
        name = "Discount - Sandy Shores",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 230}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 170}, icon = "images/icons/CLOTH-5-ICON.png"},
            mask = {
                enabled = true,
                price = {mode = "multiplier", base = 180, mult = 4},
                icon = "images/icons/CLOTH-7-ICON.png"
            }
        },
        blip = {
            pos = vec3(1190.550, 2713.441, 38.242),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 12
    south_rockford = {
        name = "Suburban - South Rockford",
        payment = "bank",
        currency = "$",
        tax = 0.02,
        discount = 0.05,
        categories = {
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 380, mult = 3},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 320}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 240}, icon = "images/icons/CLOTH-5-ICON.png"},
            accessories = {
                enabled = true,
                price = {mode = "multiplier", base = 220, mult = 4},
                icon = "images/icons/CLOTH-2-ICON.png"
            }
        },
        blip = {
            pos = vec3(-1193.429, -772.262, 17.344),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 13
    chumash = {
        name = "Suburban - Chumash",
        payment = "bank",
        currency = "$",
        tax = 0.02,
        discount = 0.05,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 420}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 320}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 250}, icon = "images/icons/CLOTH-5-ICON.png"},
            bags = {enabled = true, price = {mode = "fixed", base = 380}, icon = "images/icons/CLOTH-6-ICON.png"}
        },
        blip = {
            pos = vec3(-3172.496, 1048.133, 20.883),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 14
    route68_north = {
        name = "Discount - Route 68 North",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 310}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 230}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 180}, icon = "images/icons/CLOTH-5-ICON.png"},
            glasses = {
                enabled = true,
                label = "Optique",
                price = {mode = "table", map = {[0] = 120, [1] = 160, [2] = 200}},
                icon = "images/icons/CLOTH-8-ICON.png"
            }
        },
        blip = {
            pos = vec3(-1108.441, 2708.923, 19.127),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    }
}

KingMaps

lua
Shared.ClotheShops = {
    -- 1
    strawberry = {
        name = "Discount Store - Strawberry",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            undershirt = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 300, mult = 2},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 250}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 180}, icon = "images/icons/CLOTH-5-ICON.png"},
            mask = {enabled = false}
        },
        blip = {
            pos = vec3(72.356049, -1395.362671, 29.364136),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 2
    hawick = {
        name = "Suburban - Hawick",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.00,
        categories = {
            arms = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            undershirt = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            tops = {
                enabled = true,
                label = "Hauts Urbains",
                price = {mode = "multiplier", base = 350, mult = 3},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 220}, icon = "images/icons/CLOTH-5-ICON.png"},
            glasses = {
                enabled = true,
                label = "Optique",
                price = {mode = "table", map = {[0] = 100, [1] = 150, [2] = 200, [10] = 1000}},
                icon = "images/icons/CLOTH-8-ICON.png"
            }
        },
        blip = {
            pos = vec3(-705.547241, -159.125275, 37.401489),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 3
    rockford = {
        name = "Ponsonbys - Rockford",
        payment = "bank",
        currency = "$",
        tax = 0.05,
        discount = 0.00,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 600}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 480}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 420}, icon = "images/icons/CLOTH-5-ICON.png"},
            accessories = {
                enabled = true,
                price = {mode = "multiplier", base = 250, mult = 5},
                icon = "images/icons/CLOTH-2-ICON.png"
            }
        },
        blip = {
            pos = vec3(-161.907700, -295.595612, 39.726685),
            sprite = 73,
            display = 4,
            scale = 0.75,
            colour = 5,
            name = "Luxury Clothing"
        }
    },
    -- 4
    textile = {
        name = "Discount Store - Textile City",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 280, mult = 2},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 220}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 160}, icon = "images/icons/CLOTH-5-ICON.png"},
            bags = {
                enabled = true,
                price = {mode = "fixed", base = 300},
                blacklist = {15, 16, 17},
                icon = "images/icons/CLOTH-6-ICON.png"
            }
        },
        blip = {
            pos = vec3(428.531860, -803.683533, 29.482056),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 5
    vespucci_beach = {
        name = "Binco - Vespucci Beach",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 300, mult = 2},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 230}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 170}, icon = "images/icons/CLOTH-5-ICON.png"},
            mask = {
                enabled = true,
                price = {mode = "multiplier", base = 200, mult = 5},
                icon = "images/icons/CLOTH-7-ICON.png"
            },
            bags = {enabled = true, price = {mode = "fixed", base = 350}, icon = "images/icons/CLOTH-6-ICON.png"}
        },
        blip = {
            pos = vec3(-826.167053, -1072.219727, 11.317993),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 6
    del_perro = {
        name = "Ponsonbys - Del Perro",
        payment = "bank",
        currency = "$",
        tax = 0.05,
        discount = 0.00,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 650}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 520}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 450}, icon = "images/icons/CLOTH-5-ICON.png"},
            accessories = {
                enabled = true,
                price = {mode = "multiplier", base = 300, mult = 6},
                icon = "images/icons/CLOTH-2-ICON.png"
            }
        },
        blip = {
            pos = vec3(-1454.597778, -243.705490, 49.802979),
            sprite = 73,
            display = 4,
            scale = 0.75,
            colour = 5,
            name = "Luxury Clothing"
        }
    },
    -- 7
    paleto = {
        name = "Discount Store - Paleto",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.05,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 320}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 240}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 180}, icon = "images/icons/CLOTH-5-ICON.png"},
            mask = {
                enabled = true,
                price = {mode = "multiplier", base = 200, mult = 4},
                icon = "images/icons/CLOTH-7-ICON.png"
            }
        },
        blip = {
            pos = vec3(8.584616, 6511.898926, 31.874756),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 8
    alta = {
        name = "Suburban - Alta",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.05,
        categories = {
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 360, mult = 2},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 280}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 220}, icon = "images/icons/CLOTH-5-ICON.png"},
            glasses = {
                enabled = true,
                label = "Optique",
                price = {mode = "table", map = {[0] = 120, [1] = 180, [2] = 220}},
                icon = "images/icons/CLOTH-8-ICON.png"
            }
        },
        blip = {
            pos = vec3(119.367035, -221.340652, 54.554565),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 9
    grapeseed = {
        name = "Discount - Grapeseed",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 220}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 160}, icon = "images/icons/CLOTH-5-ICON.png"},
            bags = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-6-ICON.png"}
        },
        blip = {
            pos = vec3(1696.588989, 4825.595703, 42.052002),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 10
    harmony = {
        name = "Discount - Harmony",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 230}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 170}, icon = "images/icons/CLOTH-5-ICON.png"},
            helmet = {
                enabled = true,
                price = {mode = "multiplier", base = 150, mult = 3},
                icon = "images/icons/CLOTH-1-ICON.png"
            }
        },
        blip = {
            pos = vec3(621.032959, 2763.349365, 42.085693),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 11
    sandy = {
        name = "Discount - Sandy Shores",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 300}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 230}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 170}, icon = "images/icons/CLOTH-5-ICON.png"},
            mask = {
                enabled = true,
                price = {mode = "multiplier", base = 180, mult = 4},
                icon = "images/icons/CLOTH-7-ICON.png"
            }
        },
        blip = {
            pos = vec3(1194.171387, 2713.213135, 38.210205),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 12
    south_rockford = {
        name = "Suburban - South Rockford",
        payment = "bank",
        currency = "$",
        tax = 0.02,
        discount = 0.05,
        categories = {
            tops = {
                enabled = true,
                price = {mode = "multiplier", base = 380, mult = 3},
                icon = "images/icons/CLOTH-3-ICON.png"
            },
            pants = {enabled = true, price = {mode = "fixed", base = 320}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 240}, icon = "images/icons/CLOTH-5-ICON.png"},
            accessories = {
                enabled = true,
                price = {mode = "multiplier", base = 220, mult = 4},
                icon = "images/icons/CLOTH-2-ICON.png"
            }
        },
        blip = {
            pos = vec3(-1189.015381, -773.512085, 17.333374),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 13
    chumash = {
        name = "Suburban - Chumash",
        payment = "bank",
        currency = "$",
        tax = 0.02,
        discount = 0.05,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 420}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 320}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 250}, icon = "images/icons/CLOTH-5-ICON.png"},
            bags = {enabled = true, price = {mode = "fixed", base = 380}, icon = "images/icons/CLOTH-6-ICON.png"}
        },
        blip = {
            pos = vec3(-3176.914307, 1046.584595, 20.854980),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    },
    -- 14
    route68_north = {
        name = "Discount - Route 68 North",
        payment = "bank",
        currency = "$",
        tax = 0.00,
        discount = 0.10,
        categories = {
            tops = {enabled = true, price = {mode = "fixed", base = 310}, icon = "images/icons/CLOTH-3-ICON.png"},
            pants = {enabled = true, price = {mode = "fixed", base = 230}, icon = "images/icons/CLOTH-4-ICON.png"},
            shoes = {enabled = true, price = {mode = "fixed", base = 180}, icon = "images/icons/CLOTH-5-ICON.png"},
            glasses = {
                enabled = true,
                label = "Optique",
                price = {mode = "table", map = {[0] = 120, [1] = 160, [2] = 200}},
                icon = "images/icons/CLOTH-8-ICON.png"
            }
        },
        blip = {
            pos = vec3(-1105.252686, 2711.024170, 19.102539),
            sprite = 73,
            display = 4,
            scale = 0.7,
            colour = 2,
            name = "Clothing"
        }
    }
}
previousconfigurationnextadvice-and-troubleshooting
VAR
Var FiveM

Premium FiveM scriptleri. Dusuk resmon, yuksek kalite. ESX, QBCore & Standalone icin yapildi.

28script
1,500+satis

Scriptler

  • Pazar Yeri
  • Paketler
  • Abonelikler
  • Tema Ozellestirici

En Populer

  • Supermarket Simulator
  • FiveM Casino Script
  • FiveM Coin Shop
  • FiveM Emote Menu
  • FiveM Paintball Script

Kaynaklar

  • Free Scripts
  • Guides
  • Dokumantasyon
  • Destek

Sirket

  • Hakkimizda
  • Iletisim
  • Discord

Yasal

  • Sartlar
  • Gizlilik
  • Iadeler

© 2026 Var FiveM. Tum satislar kesindir.

OdemelerTebex