require("moonloader")
local vkeys = require("vkeys")
local binds = {
{VK_L, '/lock'},
{VK_P, '/phone'},
{VK_3, '/style'}
}
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage("Binder Loaded", 0x0000FF)
while true do
wait(0)
for i = 1, #binds do
if isKeyJustPressed(binds[i][1]) and not isPauseMenuActive() and not sampIsCursorActive() then
sampSendChat(binds[i][2])
end
end
end
end