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

Privatny p100 DT Airlag Break LC Teleport Exploit
Участник
Статус
Оффлайн
Регистрация
27 Янв 2021
Сообщения
979
Реакции[?]
151
Поинты[?]
74K
Столкнулся с проблемой, что делая анимбрейкер через FFI (не через пропы) у меня брейкеры работают не только на локала а на всех игроков, как пофиксить?
 
Privatny p100 DT Airlag Break LC Teleport Exploit
Участник
Статус
Оффлайн
Регистрация
27 Янв 2021
Сообщения
979
Реакции[?]
151
Поинты[?]
74K
код дай мб хотя бы
Код:
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
 
Nike.lua
Олдфаг
Статус
Оффлайн
Регистрация
13 Окт 2020
Сообщения
2,746
Реакции[?]
1,465
Поинты[?]
2K
Код:
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:
if ffi.cast( "uintptr_t", thisptr ) == ffi.cast( "uintptr_t", localplayer[ 0 ] ) then
  --do smth
end
 
Сверху Снизу