sampev = require "lib.samp.events"
run_fastID = false
ID = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('fastId', cmd_fastId)
wait(-1)
end
function sampev.onShowDialog(dialogId, style, title, button1, button2, text)
if isGamePaused() then return end
if title:match("ОКНО С ПУНКТОМ ВЫБОРА") and run_fastID then
sampSendDialogResponse(dialogId, 1, НОМЕР_СТРОЧКИ_ОТ_НУЛЯ, -1)
return false
elseif title:match("НАЗВАНИЕ ОКНА КУДА ВСТАВИТЬ АЙДИ И НАЖАТЬ ОК") and run_fastID then
run_fastID = false
ID = false
sampSendDialogResponse(dialogId, 1, -1, ID)...