Содержание

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