Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
Нужно чтобы чат не открывался если открыто диалоговое окно
Код:
require("lib.moonloader")
require("vkeys")
function main()
while true do
wait(0)
if isKeyJustPressed(VK_T) then
sampSetChatInputEnabled(true)
end
end
end
require("lib.moonloader")
require("vkeys")
function main()
while true do
wait(0)
if not sampIsDialogActive() and isKeyJustPressed(VK_T) then
sampSetChatInputEnabled(true)
end
end
end
require("lib.moonloader")
require("vkeys")
function main()
while true do
wait(0)
if not sampIsDialogActive() and isKeyJustPressed(VK_T) then
sampSetChatInputEnabled(true)
end
end
end
require("lib.moonloader")
require("vkeys")
function main()
while true do
wait(0)
if isKeyJustPressed(VK_T) and not sampIsDialogActive() then
sampSetChatInputEnabled(true)
end
end
end