anyone knows where i could find something like for these natives
RegisterFontFile()
RegisterFontId()
i looked into this guide right here: FiveM update - May 5th/6th, 2017
but had little luck finding gfxexporter on google without risking getting viruses on my computer
anyone has any gfx files that support these two languages?
edit: just so we are clear i am trying to use this stuff on this function:
function DrawText3Ds(x, y, z, text)
local onScreen,_x,_y=World3dToScreen2d(x,y,z)
if onScreen then
SetTextScale(0.35, 0.35)
SetTextFont(4)
SetTextProportional(1)
SetTextColour(255, 255, 255, 215)
SetTextEntry("STRING")
SetTextCentre(1)
AddTextComponentString(text)
DrawText(_x,_y)
end
end