Уже всё работает, но подскажите как зделать что бы при открытом чате не работал он
require "lib.moonloader"
local keys = require "vkeys"
function main()
if not isSampLoaded() or not isSampfuncsLoaded()
then return
end
while not isSampAvailable()
do
wait(100)
end
sampAddChatMessage('CarHelper активен', 0x800080)
while true do
wait(0)
if isKeyJustPressed(VK_L)
then
sampSendChat('/lock')
elseif isKeyJustPressed(VK_K)
then
sampSendChat('/key')
end
end
end