Проблема со скриптом

alvin harvey

Участник
Автор темы
65
8
здарова кодеры, помогите пж надо сменить активацию здесь на клавишу 4 не NUM, но я незнаю как сменить потому-что код закрыт(там символы какие-то)заранее спасибо
 

Вложения

  • armour.cs
    17.2 KB · Просмотры: 3

alvin harvey

Участник
Автор темы
65
8
нашел решение,
Код:
require "lib.moonloader"

local keys = require "vkeys"

function main()
 if not isSampfuncsLoaded() or not isSampLoaded() then return end
  while not isSampAvailable() do wait(0) end

 
 
     while true do
    
         wait(0)

 if isKeyJustPressed(VK_4) and not sampIsChatInputActive() and not sampIsDialogActive() and not sampIsScoreboardOpen() and not isSampfuncsConsoleActive() then
            sampSendChat("/armour")
   end
 
      end
    end