local keys = require "vkeys"
require "lib.moonloader"
local cmds = {
[VK_3] = "/usedrugs 3",
[VK_4] = "/armour"
}
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do wait(0)
for k, v in pairs(cmds) do
if isKeyJustPressed(k) then
sampSendChat(v)
end
end
end
end