Парни сможет кто объяснить, как сделать чтобы после sampSendChat("Команда") нажималась кнопка с задержкой, допустим 0.5 сек, и после ещё раз та же команда вписывалась?
function main()
repeat wait(0) until isSampAvailable()
while true do
wait(0)
if isKeyJustPressed(90) and not sampIsChatInputActive() and not sampIsDialogActive() then
sampSendChat("Команда")
end
end
end
repeat wait(0) until isSampAvailable()
while true do
wait(0)
if isKeyJustPressed(90) and not sampIsChatInputActive() and not sampIsDialogActive() then
sampSendChat("Команда")
end
end
end