Информация MoonLoader - разработка

norm chel

Новичок
9
1
Парни сможет кто объяснить, как сделать чтобы после 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
 

Alkoigel

Участник
116
15
Парни сможет кто объяснить, как сделать чтобы после 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
wait(500)