they are here on the forums
Try escape, that should work.
if is it on the billing menu, download new version that should fix it
is there any way to get the menues in english
Translate them via client side.
It seems to crash when i open the bill menu.
As in, it gerts stuck and wont let me use it
Did you find a fix for this?
it should be fixed by now, redownload the script.
that means I have to translate everything again… 
nah just change the mecanico:facturas event, i think that’s the only thing that changed.
it havent been updated in 4 days, and i downloaded mine yesterday 
This is should be fix the billing using with nh-keyboard!
RegisterNetEvent(‘mechanic:billing’)
AddEventHandler(‘mechanic:billing’, function()
local playerPed = PlayerPedId()
local vehicle = ESX.Game.GetVehicleInDirection()
local coords = GetEntityCoords(playerPed)
local bill = exports[“nh-keyboard”]:KeyboardInput({
header = “Billing Mechanic”,
rows = {
{
id = 0,
txt = ‘Price’
}
}
})
if bill ~= nil then
local amount = tonumber(bill[1].input)
if type(amount) ~= “number” or amount == nil or amount <= 0 then
exports[‘mythic_notify’]:SendAlert(‘error’, ‘Invalid Amount!’)
return
else
local closestPlayer, closestDistance = ESX.Game.GetClosestPlayer()
if closestPlayer == -1 or closestDistance > 3.0 then
exports[‘mythic_notify’]:SendAlert(‘error’, ‘No Player Nearby’)
else
TriggerServerEvent(‘esx_billing:sendBill’, GetPlayerServerId(closestPlayer), ‘society_mechanic’, ‘Mechanic Bill’, amount)
end
end
end
end)
Even after downloading again I still have same problem. Menu freezes and there’s no closing it.
Which menu is freezing?
The main mechanic menu to access everything.
do you have nh-context?
Yes. I have it and it’s started.
I have error please help ? Attempt to call a nill value “ShowFloatingHelpNotification”… Help ?
Yea this is happening because on your es_extended or extendedmode you don’t have the function ESX.ShowFloatingHelpNotification
to fix this goto your es_extended/client/functions.lua and after esx.showadvancednotification paste this
ESX.ShowFloatingHelpNotification = function(msg, coords)
AddTextEntry('esxFloatingHelpNotification', msg)
SetFloatingHelpTextWorldPosition(1, coords)
SetFloatingHelpTextStyle(1, 1, 2, -1, 3, 0)
BeginTextCommandDisplayHelp('esxFloatingHelpNotification')
EndTextCommandDisplayHelp(2, false, false, -1)
end
