Page cover

Pawnshop

Easily create multiple pawnshops across different locations, each with its own unique settings. Job-Based or Public Shops: Configure each pawnshop to be accessible by specific jobs or open to all players. Custom Items Per Market: Define which items can be sold at each individual pawnshop for full control. Inventory Compatibility: ox_inventory, qb-inventory Target System Support: ox_target qb-inventory Multi-Language Support: TR, EN Easy to switch between languages from the config. Optimized Codebase: Built for performance with zero FPS drops and minimal server load. UI-Based Configuration: Easily edit and manage settings through a clean, user-friendly config interface.

-- TR.Lua
local Translations = {
    error = {
        not_enough_items = 'Yeterli eşyaya sahip değilsiniz!',
        wrong_job = 'Bu işlemi yapmak için gerekli mesleğe sahip değilsiniz!',
    },
    success = {
        item_sold = '%{amount} adet %{item} sattınız. Kazanç: $%{price}',
    },
    info = {
        pawnshop = 'Rehin Dükkanı',
        shop_title = 'Rehin Dükkanı',
        sell_button = 'Sat',
        close_button = 'X',
        item_price = 'Fiyat: $%{price}',
        shop_blip = 'Rehin Dükkanı'
    },
    menu = {
        sell_items = 'Eşyaları Sat',
        available_items = 'Mevcut Eşyalar',
        item_amount = 'Miktar',
        confirm_sell = 'Onayla',
        cancel = 'İptal'
    }
}

Lang = Locale:new({
    phrases = Translations,
    warnOnMissing = true
}) 

Last updated