Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
sampRegisterChatCommand('lovec_menu', function()
--if not isCharInAnyCar(PLAYER_PED) then
main_window_state.v = not main_window_state.v
--[[else
sampAddChatMessage("[CR-Cleaner(FINAL)] {d5dedd}Вы находитесь в ТС.", 0x01A0E9)
end]]
sampRegisterChatCommand('lovec_menu', function()
--if not isCharInAnyCar(PLAYER_PED) then
main_window_state.v = not main_window_state.v
--[[else
sampAddChatMessage("[CR-Cleaner(FINAL)] {d5dedd}Вы находитесь в ТС.", 0x01A0E9)
end]]
local wm = require 'windows.message'
addEventHandler("onWindowMessage", function (msg, wparam, lparam)
if (msg == wm.WM_KEYUP or msg == wm.WM_SYSKEYUP) and wparam == VK_F4 then
main_window_state.v = not main_window_state.v
end
end)
UPD: Можно еще в while true do проверять нажатие клавиши
Lua:
while true do
wait(0)
if isKeyJustPreesed(VK_F4) then
main_window_state.v = not...
sampRegisterChatCommand('lovec_menu', function()
--if not isCharInAnyCar(PLAYER_PED) then
main_window_state.v = not main_window_state.v
--[[else
sampAddChatMessage("[CR-Cleaner(FINAL)] {d5dedd}Вы находитесь в ТС.", 0x01A0E9)
end]]
local wm = require 'windows.message'
addEventHandler("onWindowMessage", function (msg, wparam, lparam)
if (msg == wm.WM_KEYUP or msg == wm.WM_SYSKEYUP) and wparam == VK_F4 then
main_window_state.v = not main_window_state.v
end
end)
UPD: Можно еще в while true do проверять нажатие клавиши
Lua:
while true do
wait(0)
if isKeyJustPreesed(VK_F4) then
main_window_state.v = not main_window_state.v
end
end