read old comment dude
Where to find that
why my skincreator can’t not save
Do not know what you mean
the owner of script did NOT release YET
So how do you deal with this problem??
wait until the owner of script Update his script
OK!!!
Thank you
It should be like this for esx_legacyfuel
fuel = GetVehicleFuelLevel(PedCar)
rpm = GetVehicleCurrentRpm(PedCar)
–rpmfuel = 0
--[[if rpm > 0.9 then
rpmfuel = fuel - rpm / 0.8
Citizen.Wait(1000)
elseif rpm > 0.8 then
rpmfuel = fuel - rpm / 1.1
Citizen.Wait(1500)
elseif rpm > 0.7 then
rpmfuel = fuel - rpm / 2.2
Citizen.Wait(2000)
elseif rpm > 0.6 then
rpmfuel = fuel - rpm / 4.1
Citizen.Wait(3000)
elseif rpm > 0.5 then
rpmfuel = fuel - rpm / 5.7
Citizen.Wait(4000)
elseif rpm > 0.4 then
rpmfuel = fuel - rpm / 6.4
Citizen.Wait(5000)
elseif rpm > 0.3 then
rpmfuel = fuel - rpm / 6.9
Citizen.Wait(6000)
elseif rpm > 0.2 then
rpmfuel = fuel - rpm / 7.3
Citizen.Wait(8000)
else
rpmfuel = fuel - rpm / 7.5
Citizen.Wait(15000)
end
carFuel = SetVehicleFuelLevel(PedCar, rpmfuel)]]
Does anyone tested this with esx? after changing clothes and so?
Very nice UI. Looking forward to the rest of the script being released. Skin creator works wonderfully.
Its working with esx? And how it does after changing clothes?
wait sir
I have it working with vrp.
This isn’t compatible with ESX currently?
he does not save the skin, console outfits is successfully updated but nothing happens after that
the only thing that works is speedometer nothing else
For the skincreator to work, you will have to follow his instructions.
Basically you need to put somewhere in your code the following:
MySQL.Async.execute("INSERT INTO outfits (idSteam) VALUES ('[SteamID of user or anything ID you use to identify unique player]')")
But then everything is in a new table. ESX does not use that. So you can either change ESX so that it go get the skin data (see esx_skin) or change this script to instead write into the outfit table into creating a json string.
