Ir para o conteúdo principal
FiveMX
Loja
Scripts
MLOs
Servidores Completos
Mods Grátis
Ferramentas
Guias
Todos os Produtos
FiveMX

Comece a construir seu servidor hoje.

Recursos FiveM selecionados, entrega instantânea, mods grátis para começar e guias práticos em um marketplace tranquilo.

Navegar na lojasupport@fivemx.com

Loja

  • Loja
  • Todos os produtos
  • Mods grátis
  • Melhores scripts & mods
  • Scripts FiveM

Frameworks

  • Scripts QBCore
  • Scripts ESX
  • QBox
  • Standalone

Comunidade

  • Blog
  • Suporte
  • Criadores
  • Afiliados

Jurídico

  • Política de privacidade
  • Termos de serviço
  • Política de reembolso
  • Entrega digital
  • Política de cookies
  • Conformidade LGPD/GDPR
  • DMCA
  • Informações legais
  • Política editorial
© 2026 FiveMX. Todos os direitos reservados.·FiveMX não é afiliado à Rockstar Games, Take-Two Interactive ou CFX.re. Todas as marcas são propriedade de seus respectivos donos.
GitHubDiscordDocs
  1. Início
  2. Loja
  3. Job Scripts

6 imagens do produto disponíveis.

Job Scripts
Compatibilidade:
ESX
QBCore
QBOX
Standalone
vRP

VIP Sell Drug Script

Processo de revisão

VIP Sell Drug Script - professional ESX script with custom features and optimized performance for FiveM servers. Compatible with ESX framework.

Acesso Instantâneo
Política de reembolso de 14 dias
Checkout Seguro
$29.99
Acesso imediato aos arquivos após o pagamento
Suporte e política de reembolso visíveis antes do checkout
Funciona com esx, qbcore, qbox, standalone, vrp
  • Acesso Instantâneo
  • SSL Criptografado
  • Cartão, Klarna, carteiras
Frameworks

esx, qbcore, qbox, standalone, vrp

Requisitos

Publicado nesta página

Pré-visualização

Disponível

Cartão, Klarna e carteiras compatíveis via Stripe. Outros métodos locais podem aparecer quando disponíveis na sua região.

Falar com suporte antes de comprarLer política de reembolso

Expectativa de suporte

O suporte cobre acesso ao download, arquivos entregues que estejam faltando e dúvidas com base nas notas de instalação publicadas.

Instalação personalizada, conversão de framework, configuração em servidor ao vivo e trabalho em recursos personalizados não estão incluídos, salvo quando indicado na página do produto.

Pergunte antes de comprar se seu servidor usa recursos de framework, inventário ou banco de dados muito modificados.

Montando um servidor maior?Compare pacotes selecionados antes do checkout se você precisa de vários scripts compatíveis.Ver pacotes FiveM

Compre quando isso economizar tempo de configuração

Use esta checklist para decidir rapidamente se o recurso combina com seu servidor, framework e expectativas de suporte.

Ganho para o administrador

VIP Sell Drug Script foi posicionado para reduzir Job Scripts, em vez de você reconstruir o mesmo sistema do zero.

Compatibilidade

Funciona com esx, qbcore, qbox, standalone, vrp. Verifique o bloco de requisitos antes de usar em um servidor ativo.

Confiança na compra

Download instantâneo, checkout Stripe, acesso ao suporte e contexto de reembolso são exibidos antes do pagamento.

Elementos de decisão

Requisitos, detalhes de instalação, Vídeo de pré-visualização, Perguntas do Produto

Descrição

https://www.youtube.com/watch?v=_LyP7cxKvA8

How to install

Step 0 - First Steps

  1. Download Resources: Download your resource from FiveM's Keymaster and is_lib from GitHub.
  2. Unzip Files: Unzip the is_selldrugs and is_lib folders and place them in your server's resource folder.
  3. Add to Server Config: Add the resource to your server start config (server.cfg). It is best to place these scripts above all scripts that may use them.
    plaintext
    Code kopieren
    ensure is_lib ensure qb-core ensure is_selldrugs

Step 1 - Configure Resource

Read and configure all options in the is_selldrugs/config.lua and is_lib/config.lua files to suit your server's needs.

Step 2 - Adding Items

Adding a Phone Item

To use the Trap Phone and receive wholesale orders, you first need to add the phone to your engine (QBCore/ESX). The item name for the Trap Phone should match the one specified in config.lua (default trap_phone). You can download the image for the Trap Phone from here.

Adding a Trap Phone to ESX Framework

  1. Access the Database: Log in to your server's database management tool (like phpMyAdmin).
  2. Navigate to the items Table: Find the items table where all game items are defined.
  3. Insert New Item: Add a new entry for the trap_phone. You can do this manually using the tool's interface or run the following SQL command:
    sql
    Code kopieren
    INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('trap_phone', 'Trap Phone', 1, 0, 1);
    • name: 'trap_phone' (This is the identifier used in your script)
    • label: 'Trap Phone' (The display name for the item)
    • weight: 1 (The weight of the item)
    • rare: 0 (Indicates the rarity, 0 for common)
    • can_remove: 1 (Whether the item can be removed from inventory)

Adding a Trap Phone to QB-Core Framework

  1. Edit the QB-Core Shared File: Navigate to the qb-core folder and open the shared/items.lua file.
  2. Add New Item: Add a line for the new item in the items list:
    lua
    Code kopieren
    ['trap_phone'] = {['name'] = 'trap_phone', ['label'] = 'Trap Phone', ['weight'] = 500, ['type'] = 'item', ['image'] = 'trapPhone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Maybe you will find more serious clients to talk to here.'},
    This line defines the item's properties like name, label, weight, and image file.
  3. Add Image to QB-Inventory: Place the image for the item in the appropriate directory (usually in qb-inventory/html/img). Ensure the image file name matches the one specified in the shared file (e.g., trapPhone.png).

Adding a Drugs Item

In the config.lua file, configure the list of items that players can sell. Provide data such as the item name, wholesale price, and retail price. Obtain the item image (.png), name it the same as the drug name, and move it to is_selldrugs/html/img/inventory.

Step 3 - SQL Database

Integrate the script with your database by adding the following SQL commands or import the provided SQL file:
sql
Code kopieren
CREATE TABLE `selldrugs_players` ( `player` varchar(255) DEFAULT NULL, `respect` int(11) NOT NULL DEFAULT 0, `sale_skill` int(11) NOT NULL DEFAULT 0, `mole` varchar(1000) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;CREATE TABLE `selldrugs_phone` ( `player` varchar(255) NOT NULL, `settings` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

Step 4 - Install Dependencies

To use the script, the following resources are required:
  • is_lib and resources compatible with this library, such as framework, inventory, target
  • oxmysql

Using a Trigger Instead of a Command

In config.lua, set the value in the cfg.commands.status table to nil to disable the command. Once done, use a Trigger to activate/deactivate retail sales.

Client-Side Trigger

lua
Code kopieren
TriggerServerEvent(is_selldrugs:changeRetailStatus)

Server-Side Trigger

To add to the Radial Menu, some scripts (like qb-radialmenu) require sending information about a table in the argument instead of the arguments or player ID we send. This can be solved by adding the following code to config.lua:
lua
Code kopieren
RegisterNetEvent(is_selldrugs:radialMenu, function() TriggerServerEvent(is_selldrugs:changeRetailStatus) end)
Follow these steps to properly install and configure the is_selldrugs resource for your FiveM server.

Compatibilidade, configuração e comprovação do produto em um olhar

Use os dados publicados nesta página para confirmar se VIP Sell Drug Script é compatível com seu servidor antes do checkout.

Compatibilidade

Frameworks
ESX, QBCore, QBOX, Standalone, vRP
Categoria
Job Scripts

Configuração e requisitos

Fluxo de instalação
Download → pasta resources → ensure no server.cfg
Requisitos
Publicado nesta página
Tamanho do arquivo
1.05 MB

Comprovação e perguntas de compradores

Avaliações
Sem avaliações ainda
Perguntas Respondidas
Pergunte antes de comprar

Apenas os dados publicados nesta página devem ser considerados confirmados. Se você precisar de mais detalhes, revise a descrição, requisitos, histórico de alterações, avaliações e perguntas do produto antes do checkout.

DescriçãoRequisitosVídeo de pré-visualização

Características Principais

  • Trap Phone System

    Players can use a Trap Phone item to receive wholesale orders for drugs, with configurable item name matching in config.lua

  • Wholesale and Retail Pricing

    Configure wholesale prices and retail prices for each drug item that players can sell through the script

  • Multi-Framework Support

    Compatible with both ESX and QB-Core frameworks, with specific installation procedures for each

  • Customizable Drug Items

    Add multiple drug items to the system by configuring item names, prices in config.lua, and providing corresponding .png images

  • Database Integration

    Integrates with server database for item management, with support for both ESX and QB-Core database structures

Perguntas Frequentes

Perguntas e Respostas da Comunidade

0 perguntas

Sem Perguntas

Seja o primeiro a fazer uma pergunta!

0/500 caracteres (mínimo 10)

Sua pergunta será revisada antes de aparecer publicamente.

Related Tutorials & Guides

Learn more about setting up, configuring, and using this type of resource.

Continue Construindo Seu Servidor FiveM

Use este produto como parte de uma configuração maior. Explore categorias relacionadas, frameworks alternativos, pacotes premium e downloads gratuitos complementares.

Notas de instalação

Requires a FiveM server, esx or qbcore or qbox or standalone or vrp, access to server resources, and permission to restart the resource after configuration.
Processo de revisão

Produtos Relacionados

LB Tablet

LB Tablet

$35.99
0r TowTruck

0r TowTruck

$23.99
FiveM Torture System

FiveM Torture System

$16.99
Burger New

Burger New

$10.99
ESX vs QBCore vs QBOX: Technical Framework Comparison 2026

ESX vs QBCore vs QBOX: Technical Framework Comparison 2026

Choosing a framework is the single most consequential decision when building a FiveM server. It determines which scripts you can use, how your developers write code, the…

FiveM Frameworks Explained: Complete Guide to ESX, QBCore & QBOX

FiveM Frameworks Explained: Complete Guide to ESX, QBCore & QBOX

FiveM frameworks form the backbone of roleplay servers. They're not just code libraries—they're complete systems that manage player identity, jobs, inventory, permissions,…

Best QBCore Scripts 2026: Essential Server Stack

Best QBCore Scripts 2026: Essential Server Stack

A practical QBCore script stack for FiveM server owners in 2026. Covers police, jobs, HUD, phone, inventory, housing, economy, vehicles, and free starter options.

Explorar EMS Scripts
Explorar Economy & Banking
Explorar Mechanic Scripts
Explorar todos os scripts
Scripts de Job Scripts
Scripts esx
Experimente QBCore
Experimente QBox
Mods FiveM grátis
Comparar pacotes