Подпишитесь на наш Telegram-канал, чтобы всегда быть в курсе важных обновлений! Перейти

Вопрос Как сделать проверку на локалплеера в анимбрейкере?

Privatny p100 DT Airlag Break LC Teleport Exploit
Участник
Участник
Статус
Оффлайн
Регистрация
27 Янв 2021
Сообщения
1,242
Реакции
219
Столкнулся с проблемой, что делая анимбрейкер через FFI (не через пропы) у меня брейкеры работают не только на локала а на всех игроков, как пофиксить?
 
код дай мб хотя бы
Код:
Expand Collapse Copy
inside_updateCSA = function(thisptr, edx)
    hooked_function(thisptr, edx)
    local localplayer = entity.get_local_player()
    if localplayer == nil or ffi.cast('uintptr_t**', thisptr) == nil then return end
    ffi.cast("float*", ffi.cast("uintptr_t", thisptr) + 10104)[6] = 1
end
 
Код:
Expand Collapse Copy
inside_updateCSA = function(thisptr, edx)
    hooked_function(thisptr, edx)
    local localplayer = entity.get_local_player()
    if localplayer == nil or ffi.cast('uintptr_t**', thisptr) == nil then return end
    ffi.cast("float*", ffi.cast("uintptr_t", thisptr) + 10104)[6] = 1
end
code_language.lua:
Expand Collapse Copy
if ffi.cast( "uintptr_t", thisptr ) == ffi.cast( "uintptr_t", localplayer[ 0 ] ) then
  --do smth
end
 
Назад
Сверху Снизу