Render functions
Render functions are declared in the client/ox_interface and client/ox_wheel called in the client/core.lua file.
This way, it is easier for you to simply create a new interface by implementing your own render functions in new files. You would simply need to replace the implementation files in the fxmanifest.lua of the mod resource.
client_script {
-- 'client/ox_wheel.lua',
-- 'client/ox_interface.lua',
'client/my_own_interface.lua'
'client/core.lua',
}This section will describe each render functions. You can also completely rewrite the interface flow & events to fully customize your experience. Feel free to create magic !
Last updated