Trigger to disable the prompt above NPCs "Press E to sell drugs"
If you disable the prompt, you have to manually trigger the drugs_creator:sellToNPC event to sell to NPCs
-- Disables the promptRegisterNetEvent("drugs_creator:framework:ready", function() TriggerEvent("drugs_creator:disableDefaultSellingMethodNPC")end)-- Manually sell to an NPC (example for targeting scripts)Citizen.CreateThread(function() local closestPed = ESX.Game.GetClosestPed()TriggerEvent("drugs_creator:sellToNPC", closestPed)end)