From 6d0ace76740e3c1a80ccb091a3a612e10a41e08d Mon Sep 17 00:00:00 2001 From: treywisp Date: Thu, 13 Nov 2025 02:53:48 +0100 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20=C2=AB?= =?UTF-8?q?/=C2=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- anti1235.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 anti1235.lua diff --git a/anti1235.lua b/anti1235.lua new file mode 100644 index 0000000..7bbc7ce --- /dev/null +++ b/anti1235.lua @@ -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 +