Komutlar

commands:
    market:
        description: Opens the market GUI
        usage: /<command>
        aliases: [shop]
        permission: marketplugin.use
    price:
        description: Check the price of an item
        usage: /<command> <item>
        aliases: [cost]
        permission: marketplugin.use
    marketadmin:
        description: Market admin commands
        usage: |
            /<command> restock - Restock all items
            /<command> restock <item> [amount] - Restock specific item
            /<command> mode <player|admin|server> - Change stock mode
        aliases: [ma]
        permission: marketplugin.admin
    marketreload:
        description: Reload market configuration
        usage: /<command>
        aliases: [mr]
        permission: marketplugin.admin
    transactions:
        description: View your market transaction history
        usage: /<command>
        aliases: [mhistory, markethistory]
        permission: marketplugin.use
    marketbypass:
        description: Toggle market bypass mode for admins
        usage: /<command>
        aliases: [mbypass]
    marketimport:
        description: Import items and categories from other shop plugins
        usage: /<command> <shopguiplus|economyshopgui>
        aliases: [mimport]
        permission: market.admin.import
    marketbuy:
        description: Buy items from the market
        usage: /<command> <amount> <item>
        aliases: [mbuy]
        permission: marketplugin.use
    marketsell:
        description: Sell items to the market
        usage: /<command> <amount|all> <item>
        aliases: [msell]
        permission: marketplugin.use
permissions:
    marketplugin.use:
        description: Allows access to basic market commands
        default: true
    marketplugin.admin:
        description: Allows access to admin commands
        default: op
    marketplugin.bypass:
        description: Allows access to market even when disabled
        default: op
    market.admin.import:
        description: Allows importing data from other shop plugins
        default: op

Last updated