require "lib.moonloader"
local keys = require "vkeys"
function main()
while not isSampAvailable()
do wait(100) end
sampAddChatMessage('Тестик', 0xFF4500)
while true do
wait(0)
if isKeyDown(VK_O)
and isKeyJustPressed(VK_P)
then
sampSendChat('/anim 5')
end
if isKeyJustPressed(VK_M)
then
sampSendChat("/style")
end
end
end