Great script, thanks for the release Draziak
Hope you’ll find a way for the FrFuel bug 
Hello I have a worry I managed to put the food script its works but on the other hand once put no more trade what to do?
I have the same problem 
Any error message on the server side?
Working perfectly fine ! Great job and share !
Initialize at player creation the inventory (for exemple add 1botle and 1sandwich) prevent to gets some errors. (Just sayin’)
Yeeeey, thank’s for this script man.
I have just one problem, i can’t drink water, and i can’t eat. (I’m french, sry for my English)
I know I need to add a line of code, but I don’t know where. I’m not very good at it. Anyone can help me ?
Thank’s
Hi I have a problem with blips stores for food: http://prntscr.com/fapxkx | http://prntscr.com/fapxr3 and what is strange is that I replace the coordinates with better and so now I also have clothes shops that have gone http://prntscr.com/fapxwb while they yet I have not changed.
Sometimes I have practically all my list of right blips that have more name etc
Be sure that you have every } and ,
You have probably deleted one by mistake
I checked, i have no error i think, i pm you my script for the blips, if you can take a look in, if i don"t find the error because i don"t really know why its not working !!
http://prntscr.com/fau1hd i’ve this error when I buy a food or drink and i haven’t got it and money was not removed
Can you add alcohol and at the same time if it’s consumed a drunken effect? 
I got this, but they’re is no drink animation before getting drunk 
function use(item)
if (ITEMS[item].quantity - 1 >= 0) then
-- Nice var swap for nothing
TriggerEvent("player:looseItem", item, 1)
-- Calling the Hunger/Thirst
if ITEMS[item].type == 2 then
TriggerEvent("food:eat", ITEMS[item])
elseif ITEMS[item].type == 1 then
TriggerEvent("food:drink", ITEMS[item])
elseif ITEMS[item].type == 3 then
Drunked()
Citizen.Wait(2000)
ClearPedTasks(GetPlayerPed(-1))
Reality()
else
-- Any other type? Drugs??????
Toxicated()
Citizen.Wait(3000)
ClearPedTasks(GetPlayerPed(-1))
Reality()
end
end
end
--------------------------------------------------------
function Toxicated()
Citizen.Wait(5000)
DoScreenFadeOut(1000)
Citizen.Wait(1000)
ClearPedTasksImmediately(GetPlayerPed(-1))
SetTimecycleModifier("spectator5")
SetPedMotionBlur(GetPlayerPed(-1), true)
SetPedMovementClipset(GetPlayerPed(-1), "MOVE_M@DRUNK@SLIGHTLYDRUNK", true)
SetPedIsDrunk(GetPlayerPed(-1), true)
DoScreenFadeIn(1000)
end
function Reality()
Citizen.Wait(50000)
DoScreenFadeOut(1000)
Citizen.Wait(1000)
DoScreenFadeIn(1000)
ClearTimecycleModifier()
ResetScenarioTypesEnabled()
ResetPedMovementClipset(GetPlayerPed(-1), 0)
SetPedIsDrunk(GetPlayerPed(-1), false)
SetPedMotionBlur(GetPlayerPed(-1), false)
end
--------------------------------------------------------------
function Drunked()
RequestAnimSet("move_m@drunk@verydrunk")
while not HasAnimSetLoaded("move_m@drunk@verydrunk") do
Citizen.Wait(0)
end
TaskStartScenarioInPlace(GetPlayerPed(-1), "WORLD_HUMAN_DRUG_DEALER", 0, 1)
DoScreenFadeOut(1000)
Citizen.Wait(1000)
ClearPedTasksImmediately(GetPlayerPed(-1))
SetTimecycleModifier("spectator5")
SetPedMotionBlur(GetPlayerPed(-1), true)
SetPedMovementClipset(GetPlayerPed(-1), "move_m@drunk@verydrunk", true)
SetPedIsDrunk(GetPlayerPed(-1), true)
DoScreenFadeIn(1000)
end
function reality()
DoScreenFadeOut(1000)
Citizen.Wait(1000)
DoScreenFadeIn(1000)
ClearTimecycleModifier()
ResetScenarioTypesEnabled()
ResetPedMovementClipset(GetPlayerPed(-1), 0)
SetPedIsDrunk(GetPlayerPed(-1), false)
SetPedMotionBlur(GetPlayerPed(-1), false)
-- Stop the toxication
Citizen.Trace("Retour à la réalité.\n")
end
----------------------------------------------------
Don’t forget to put type 3 in your database for the alcohols items.
Maybe have to change this for the drink animation :
"WORLD_HUMAN_DRUG_DEALER"
Perfect thank you bro, I try it tonight I will tell you the result 
u add all this code on client right?
Change function use(item) on vdkinv.lua
good to inventory but impossible to use item no error . possible to help plz
But frfuel script is not working anymore
Why ?
Same here help us 
For now, the only way to make both work at the same time is :
- Connect
- Disconnect
- Reconnect.
I do not understand 