function main()
while true do wait(0)
if isKeyJustPressed(0x61) and not sampIsCursorActive() then -- 0x61 - Нумпад 1, можешь менять клавиши
sampSendChat('/mask')
end
if isKeyJustPressed(0x62) and not sampIsCursorActive() then
sampSendChat('/armour')
end
if isKeyJustPressed(0x63) and not sampIsCursorActive() then
sampSendChat('/time')
end
if isKeyJustPressed(0x64) and not sampIsCursorActive() then
sampSendChat('Хай.')
end
end
end