ADD - implement FlipTok creator platform

This commit is contained in:
Leon.Schmidt
2026-08-09 01:50:37 +02:00
parent eefe3b5331
commit 2ca96504d3
26 changed files with 4523 additions and 54 deletions
@@ -21,6 +21,20 @@ function Bridge.Framework.GetIdentifier(source)
return player and player.identifier or nil
end
function Bridge.Framework.HasAdminGroup(source, groups)
local player = get_player(source)
if not player then
return false
end
local player_group = player.getGroup()
for _, group in ipairs(groups) do
if player_group == group then
return true
end
end
return false
end
function Bridge.Framework.GetMoney(source, account)
local player = get_player(source)
if not player then