Простенький но удобненький скрипт
Стиллеров нет, Код открыт
Цитата
script_name("AnimationClear")
script_author("subtilize!")
local prints = 0
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if isPlayerPlaying(PLAYER_HANDLE) and not sampIsChatInputActive() then
if isKeyJustPressed(82) then if prints == 1 then printStringNow("CLEAR!", 200) taskPlayAnim(PLAYER_PED, "camcrch_stay", "CAMERA", 4.0, false, false, true, false, 1) else taskPlayAnim(PLAYER_PED, "camcrch_stay", "CAMERA", 4.0, false, false, true, false, 1) end end
end
end
end