- 185
- 71
- Версия MoonLoader
- .026-beta
Создал поток с вводом текста в чат по нажатию клавиши, но работать он не хочет.
Lua:
function hotkey()
while true do
wait(0)
if not isCharInAnyCar(PLAYER_PED) then
if isKeyJustPressed(VK_Z) and not sampIsChatInputActive() and not sampIsDialogActive() then
sampSendChat("Text")
end
end
end
end