Custom
CreateThread(function()
if Config.framework ~= 'custom' then return end
-- UpdatePlayerData
function UpdatePlayerData()
-- Implement your custom framework data update here
end
-- GetPlayerJobName
function GetPlayerJobName()
-- Implement your custom framework job name here
return nil
end
-- GetPlayerJobGrade
function GetPlayerJobGrade()
-- Implement your custom framework job grade here
return nil
end
-- GetPlayerData
function GetPlayerData(callback)
-- Implement your custom framework player data here
if callback ~= nil then
callback({})
end
end
-- GetPlayerCharInfo
function GetPlayerCharInfo()
-- Implement your custom framework character info here
return nil
end
-- GetPlayerItems
function GetPlayerItems()
-- Implement your custom framework items here
return {}
end
-- GetPlayerItemByName
function GetPlayerItemByName(itemName)
-- Implement your custom framework item lookup here
return nil
end
-- Notification
function sendNotification(message, theme, duration)
-- Implement your custom notification system here
print("[Trรฉsor] " .. message)
end
-- GetSharedItem
function GetSharedItem(itemName)
-- Implement your custom shared item lookup here
return nil
end
-- GetPlayerCash
function GetPlayerCash()
-- Implement your custom framework cash retrieval here
return 0
end
end)
Last updated