- 34
- 12
- Версия MoonLoader
- .026-beta
Есть простой lua код:
Но в нем есть одна проблема... Если я использую alt + 1, то у меня так же используется часть кода, которая должна использоваться просто при нажатии 1, чего быть не должно. Я не знаю как это исправить, помогите пожалуйста
Часть скрипта:
if isKeyDown(VK_MENU) and isKeyJustPressed(VK_1) then
sampSendChat("/anim 111")
end
if isKeyDown(VK_MENU) and isKeyJustPressed(VK_2) then
sampSendChat("/anim 76")
end
if isKeyDown(VK_MENU) and isKeyJustPressed(VK_3) then
sampSendChat("/anim 34")
end
if isKeyJustPressed(VK_1) then
sampSendChat("/sellgun " .. id .. " deagle 14")
end
if isKeyJustPressed(VK_2) then
sampSendChat("/sellgun " .. id .. " shotgun 5")
end
if isKeyJustPressed(VK_3) then
sampSendChat("/sellgun " .. id .. " m4 50")
end