lua:sampgetdialogtext

sampGetDialogText

string text = sampGetDialogText()

Опкод 0BD7.

Требования: SA:MP, SAMPFUNCS.

Возвращает основной текст последнего или активного диалогового окна.

string text текст

script_name("Example script")
 
function main()
  if not isSampLoaded() or not isSampfuncsLoaded() then return end
  while not isSampAvailable() do wait(100) end
  while true do
    wait(0)
    if isKeyDown(49) then
      while isKeyDown(49) do wait(80) end
      print(sampGetDialogText())
    end
  end
end