Customization
Using Editable Files
Client-Side Customization
-- Override SendNotification for custom notifications
local originalSendNotification = SendNotification
function SendNotification(message)
-- Your custom notification code here
exports.ox_lib:notify({title = 'AFK Warning', description = message})
originalSendNotification(message) -- Call original if needed
end-- Extend whitelist functionality
local originalIsWhitelisted = isWhitelisted
function isWhitelisted()
-- Check custom conditions
if IsPlayerInCustomGroup() then
return true
end
return originalIsWhitelisted() -- Call original function
endServer-Side Customization
Advanced Customization
Custom Detection Methods
Database Integration
Last updated
