πŸ“–Server_Override

Resource Integrations guide with other resources.

Copy Any of this code into fs_bridge/unlocked/server.lua

chevron-rightKick Player:hashtag

To Override Ban Player System Please copy this below code in fs_bridge/unlocked/server.lua

Override.Kick = function(source, reason)
    -- write your own function override kick function
    
end
chevron-rightBan Player:hashtag

To Override Ban Player System Please copy this below code in fs_bridge/unlocked/server.lua

Override.BanPlayer = function(source, reason)
    --put your anticheat code here to ban player 

end
chevron-rightAdd Society Money:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

Override.AddSocietyMoney = function(job, money)
    -- example code
    exports.okokBanking:AddMoney(job, money)
end
chevron-rightRemove Society Money:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

Override.RemoveSocietyMoney = function(job, money)
    --example code
    exports.okokBanking:RemoveMoney(job, money)
end
chevron-rightGet Society Money:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

Override.GetSocietyMoney = function(job, money)
    --example code
    return exports.okokBanking:GetAccount(job)
end
chevron-rightPlay Url Pos:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

chevron-rightDestroySound:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

chevron-rightGive Car Keys Player:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

chevron-rightRemoveCarKeyPlayer:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

chevron-rightGive Car Key Job:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

chevron-rightRemove Car Key Job:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

chevron-rightSend Email:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

chevron-rightLogs Creation:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

chevron-rightDispatch system:hashtag

To Override this function Please copy this below code in fs_bridge/unlocked/server.lua

Last updated