Загрузить файлы в «/»

This commit is contained in:
2025-11-13 02:53:48 +01:00
parent 3032c90257
commit 6d0ace7674

11
anti1235.lua Normal file
View File

@@ -0,0 +1,11 @@
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do wait(0)
if isCharPlayingAnim(PLAYER_PED, "RUN_STOP") or isCharPlayingAnim(PLAYER_PED, "RUN_STOPR") then
clearCharTasksImmediately(PLAYER_PED) freezeCharPosition(PLAYER_PED, false) setPlayerControl(player, true)
end
end
end