Вопросы по Lua скриптингу

Общая тема для вопросов по разработке скриптов на языке программирования Lua, в частности под MoonLoader.
  • Задавая вопрос, убедитесь, что его нет в списке частых вопросов и что на него ещё не отвечали (воспользуйтесь поиском).
  • Поищите ответ в теме посвященной разработке Lua скриптов в MoonLoader
  • Отвечая, убедитесь, что ваш ответ корректен.
  • Старайтесь как можно точнее выразить мысль, а если проблема связана с кодом, то обязательно прикрепите его к сообщению, используя блок [code=lua]здесь мог бы быть ваш код[/code].
  • Если вопрос связан с MoonLoader-ом первым делом желательно поискать решение на wiki.

Частые вопросы

Как научиться писать скрипты? С чего начать?
Информация - Гайд - Всё о Lua скриптинге для MoonLoader(https://blast.hk/threads/22707/)
Как вывести текст на русском? Вместо русского текста у меня какие-то каракули.
Изменить кодировку файла скрипта на Windows-1251. В Atom: комбинация клавиш Ctrl+Shift+U, в Notepad++: меню Кодировки -> Кодировки -> Кириллица -> Windows-1251.
Как получить транспорт, в котором сидит игрок?
Lua:
local veh = storeCarCharIsInNoSave(PLAYER_PED)
Как получить свой id или id другого игрока?
Lua:
local _, id = sampGetPlayerIdByCharHandle(PLAYER_PED) -- получить свой ид
local _, id = sampGetPlayerIdByCharHandle(ped) -- получить ид другого игрока. ped - это хендл персонажа
Как проверить, что строка содержит какой-то текст?
Lua:
if string.find(str, 'текст', 1, true) then
-- строка str содержит "текст"
end
Как эмулировать нажатие игровой клавиши?
Lua:
local game_keys = require 'game.keys' -- где-нибудь в начале скрипта вне функции main

setGameKeyState(game_keys.player.FIREWEAPON, -1) -- будет сэмулировано нажатие клавиши атаки
Все иды клавиш находятся в файле moonloader/lib/game/keys.lua.
Подробнее о функции setGameKeyState здесь: lua - setgamekeystate | BlastHack — DEV_WIKI(https://www.blast.hk/wiki/lua:setgamekeystate)
Как получить id другого игрока, в которого целюсь я?
Lua:
local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE) -- получить хендл персонажа, в которого целится игрок
if valid and doesCharExist(ped) then -- если цель есть и персонаж существует
  local result, id = sampGetPlayerIdByCharHandle(ped) -- получить samp-ид игрока по хендлу персонажа
  if result then -- проверить, прошло ли получение ида успешно
    -- здесь любые действия с полученным идом игрока
  end
end
Как зарегистрировать команду чата SAMP?
Lua:
-- До бесконечного цикла/задержки
sampRegisterChatCommand("mycommand", function (param)
     -- param будет содержать весь текст введенный после команды, чтобы разделить его на аргументы используйте string.match()
    sampAddChatMessage("MyCMD", -1)
end)
Крашит игру при вызове sampSendChat. Как это исправить?
Это происходит из-за бага в SAMPFUNCS, когда производится попытка отправки пакета определенными функциями изнутри события исходящих RPC и пакетов. Исправления для этого бага нет, но есть способ не провоцировать его. Вызов sampSendChat изнутри обработчика исходящих RPC/пакетов нужно обернуть в скриптовый поток с нулевой задержкой:
Lua:
function onSendRpc(id)
  -- крашит:
  -- sampSendChat('Send RPC: ' .. id)

  -- норм:
  lua_thread.create(function()
    wait(0)
    sampSendChat('Send RPC: ' .. id)
  end)
end
 
Последнее редактирование:

Insanity

Известный
247
20
Привет, начал делать типо Fast command через диалоговые окна, но не могу понять как сделать команду по id
Например: Играю на srp там есть команда /showpass (показать паспорт) как сделать так, что бы когда я нажимал на строку /showpass появлялось окошечко в которое я должен ввести ID игрока и ему показался паспорт.
 

madrasso

Потрачен
883
325
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Здрасте всем, после нажатия Z игра зависает)

Lua:
script_name('ImGui for Script')
script_author('madrasso')
script_description('settings for script')
local key = require 'vkeys'
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local moonimgui_text_buffer = imgui.ImBuffer('test', 256)
do
show_main_window = imgui.ImBool(false)
function imgui.OnDrawFrame()
    -- Main Window
    if show_main_window.v then
        local sw, sh = getScreenResolution()
        -- center
        imgui.SetNextWindowPos(imgui.ImVec2(sw / 2, sh / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
        imgui.SetNextWindowSize(imgui.ImVec2(300, 300), imgui.Cond.FirstUseEver)
        imgui.Begin(u8'Управление аккаунтом SAMP, через VK.', show_main_window)
        local btn_size = imgui.ImVec2(-0.1, 0)
        if imgui.Button(u8'Настройки', btn_size) then
            settings_imgui.v = not settings_imgui.v
        end
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            notifrep.v = not notifrep.v
            sampAddChatMessage(string.format("Уведомление о репорте включено"), 0xCC0000)
        end
        if settings_imgui.v then
                imgui.Begin(u8'Основное окно')
                if imgui.InputText(u8'Введите ваш ID Вконтакте.', moonimgui_text_buffer) then
                    print('ID:', u8:decode(moonimgui_text_buffer.v))
                end
                imgui.Text(u8'Введите номер страницы, узнать его можно в настройках изменения ID.')
                imgui.End()
        end
    end
end
end
function main()
    while true do
        wait(0)
        if wasKeyPressed(key.VK_Z) then
            show_main_window.v = not show_main_window.v
        end
        imgui.Process = show_main_window.v
    end
end
 

Frapsy

Известный
Проверенный
393
227
Здрасте всем, после нажатия Z игра зависает)
Lua:
script_name('ImGui for Script')
script_author('madrasso')
script_description('settings for script')
local key = require 'vkeys'
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local moonimgui_text_buffer = imgui.ImBuffer('test', 256)
show_main_window = imgui.ImBool(false)

function imgui.OnDrawFrame()
    -- Main Window
    if show_main_window.v then
        local sw, sh = getScreenResolution()
        -- center
        imgui.SetNextWindowPos(imgui.ImVec2(sw / 2, sh / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
        imgui.SetNextWindowSize(imgui.ImVec2(300, 300), imgui.Cond.FirstUseEver)
        imgui.Begin(u8'Управление аккаунтом SAMP, через VK.', show_main_window)
        local btn_size = imgui.ImVec2(-0.1, 0)
        if imgui.Button(u8'Настройки', btn_size) then
            settings_imgui.v = not settings_imgui.v
        end
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            notifrep.v = not notifrep.v
            sampAddChatMessage(string.format("Уведомление о репорте включено"), 0xCC0000)
        end
        imgui.End()
    end
    if settings_imgui.v then
        imgui.Begin(u8'Основное окно')
        if imgui.InputText(u8'Введите ваш ID Вконтакте.', moonimgui_text_buffer) then
            print('ID:', u8:decode(moonimgui_text_buffer.v))
        end
        imgui.Text(u8'Введите номер страницы, узнать его можно в настройках изменения ID.')
        imgui.End()
    end
end

function main()
    while true do
        wait(0)
        imgui.Process = show_main_window.v
       
        if wasKeyPressed(key.VK_Z) then
            show_main_window.v = not show_main_window.v
        end
    end
end
 

madrasso

Потрачен
883
325
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Lua:
script_name('ImGui for Script')
script_author('madrasso')
script_description('settings for script')
local key = require 'vkeys'
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local moonimgui_text_buffer = imgui.ImBuffer('test', 256)
show_main_window = imgui.ImBool(false)

function imgui.OnDrawFrame()
    -- Main Window
    if show_main_window.v then
        local sw, sh = getScreenResolution()
        -- center
        imgui.SetNextWindowPos(imgui.ImVec2(sw / 2, sh / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
        imgui.SetNextWindowSize(imgui.ImVec2(300, 300), imgui.Cond.FirstUseEver)
        imgui.Begin(u8'Управление аккаунтом SAMP, через VK.', show_main_window)
        local btn_size = imgui.ImVec2(-0.1, 0)
        if imgui.Button(u8'Настройки', btn_size) then
            settings_imgui.v = not settings_imgui.v
        end
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            notifrep.v = not notifrep.v
            sampAddChatMessage(string.format("Уведомление о репорте включено"), 0xCC0000)
        end
        imgui.End()
    end
    if settings_imgui.v then
        imgui.Begin(u8'Основное окно')
        if imgui.InputText(u8'Введите ваш ID Вконтакте.', moonimgui_text_buffer) then
            print('ID:', u8:decode(moonimgui_text_buffer.v))
        end
        imgui.Text(u8'Введите номер страницы, узнать его можно в настройках изменения ID.')
        imgui.End()
    end
end

function main()
    while true do
        wait(0)
        imgui.Process = show_main_window.v
      
        if wasKeyPressed(key.VK_Z) then
            show_main_window.v = not show_main_window.v
        end
    end
end

Всё равно зависает.
 

Ken Block

Известный
432
31
Привет, начал делать типо Fast command через диалоговые окна, но не могу понять как сделать команду по id
Например: Играю на srp там есть команда /showpass (показать паспорт) как сделать так, что бы когда я нажимал на строку /showpass появлялось окошечко в которое я должен ввести ID игрока и ему показался паспорт.
Lua:
  sampShowDialog(228, "ShowPass", "Введите ID", "Ввод", "Отмена", 1)
  local result, button, list, input = sampHasDialogRespond(228) -- В беск цикл
  if result then
    if button == 1 then
      sampSendChat('/showpass ' ..input)
    end
  end
Вроде так.
 
Последнее редактирование:
  • Нравится
Реакции: Insanity

madrasso

Потрачен
883
325
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
upload_2018-7-3_11-2-54.png


Что это такое?
 

ufdhbi

Известный
Проверенный
1,463
867
Всё равно зависает.
Lua:
require 'moonloader'
script_name('ImGui for Script')
script_author('madrasso')
script_description('settings for script')
local key = require 'vkeys'
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local moonimgui_text_buffer = imgui.ImBuffer('test', 256)
show_main_window = imgui.ImBool(false)
settings_imgui = imgui.ImBool(false)
notifrep = imgui.ImBool(false)

function imgui.OnDrawFrame()
    if show_main_window.v then
        local sw, sh = getScreenResolution()
        imgui.SetNextWindowPos(imgui.ImVec2(sw / 2, sh / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
        imgui.SetNextWindowSize(imgui.ImVec2(300, 300), imgui.Cond.FirstUseEver)
        imgui.Begin(u8'Управление аккаунтом SAMP, через VK.', show_main_window)
        local btn_size = imgui.ImVec2(-0.1, 0)
        if imgui.Button(u8'Настройки', btn_size) then
            settings_imgui.v = not settings_imgui.v
        end
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            sampAddChatMessage(string.format("Уведомление о репорте %s" notifrep.v and "включено" or "выключено"), 0xCC0000)
        end
        imgui.End()
    end
    if settings_imgui.v then
        imgui.Begin(u8'Основное окно')
        if imgui.InputText(u8'Введите ваш ID Вконтакте.', moonimgui_text_buffer) then
            print('ID:', u8:decode(moonimgui_text_buffer.v))
        end
        imgui.Text(u8'Введите номер страницы, узнать его можно в настройках изменения ID.')
        imgui.End()
    end
end

function main()
    while true do
        wait(0)
        imgui.Process = show_main_window.v or settings_imgui.v
     
        if wasKeyPressed(key.VK_Z) then
            show_main_window.v = not show_main_window.v
        end
    end
end
 

madrasso

Потрачен
883
325
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Как сделать такое:
Lua:
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            если чекбокс включен, то
                sampAddChatMessage(string.format("Уведомление о репорте включено"), 0x36E800)
            если выключен 
                sampAddChatMessage(string.format("Уведомление о репорте выключено"), 0xCC0000)
        end
 

ufdhbi

Известный
Проверенный
1,463
867
Как сделать такое:
Lua:
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            если чекбокс включен, то
                sampAddChatMessage(string.format("Уведомление о репорте включено"), 0x36E800)
            если выключен
                sampAddChatMessage(string.format("Уведомление о репорте выключено"), 0xCC0000)
        end
Lua:
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            sampAddChatMessage(string.format("Уведомление о репорте %s" notifrep.v and "включено" or "выключено"), 0xCC0000)
        end
или
Lua:
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            if notifrep.v then
                sampAddChatMessage("Уведомление о репорте включено", 0xCC0000)
            else
                sampAddChatMessage("Уведомление о репорте выключено", 0xCC0000)
            end
        end
 

ufdhbi

Известный
Проверенный
1,463
867
Как сделать цвет, допустим по середине?
Lua:
sampAddChatMessage("Уведомление о {цвет} репорте включено", 0xCC0000)

Как сделать закрытие окна "settings_imgui" ImGui?
Попробовал как у show_main_window сделать вот так, но скрипт перестает работать:
Lua:
imgui.Begin(u8'Основное окно', settings_imgui)

Полный код:
Lua:
script_name('ImGui for Script')
script_author('madrasso')
script_description('settings for script')
local key = require 'vkeys'
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local moonimgui_text_buffer = imgui.ImBuffer('test', 256)
show_main_window = imgui.ImBool(false)
notifrep = imgui.ImBool(false)
settings_imgui = imgui.ImBool(false)

function imgui.OnDrawFrame()
    -- Main Window
    if show_main_window.v then
        local sw, sh = getScreenResolution()
        -- center
        imgui.SetNextWindowPos(imgui.ImVec2(sw / 2, sh / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
        imgui.SetNextWindowSize(imgui.ImVec2(300, 300), imgui.Cond.FirstUseEver)
        imgui.Begin(u8'Управление аккаунтом SAMP, через VK.', show_main_window)
        imgui.Text(u8'Доброго времени суток.')
        local btn_size = imgui.ImVec2(-0.1, 0)             
        if imgui.Button(u8'Настройки', btn_size) then
            settings_imgui.v = not settings_imgui.v
        end
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
                        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
                            sampAddChatMessage(string.format("Уведомление о репорте %s" notifrep.v and "включено" or "выключено"), 0xCC0000)
                        end
        end
        imgui.End()
    end
    if settings_imgui.v then
        imgui.Begin(u8'Основное окно')
        if imgui.InputText(u8'Введите ваш ID Вконтакте.', moonimgui_text_buffer) then
            print('ID:', u8:decode(moonimgui_text_buffer.v))
        end
        imgui.Text(u8'Введите номер страницы, узнать его можно в настройках изменения ID.')
        imgui.End()
    end
end

function main()
    while true do
        wait(0)
        imgui.Process = show_main_window.v or settings_imgui.v
 
        if wasKeyPressed(key.VK_Z) then
            show_main_window.v = not show_main_window.v
        end
    end
end



Ошибочка:
Lua:
[12:09:43.056218] (system)    Loading script 'D:\GTA FOR SCRIPTS\moonloader\ImGui for Script.lua'...
[12:09:43.056218] (debug)    New script: 0AC0D1DC
[12:09:43.056218] (error)    ImGui for Script.lua: D:\GTA FOR SCRIPTS\moonloader\ImGui for Script.lua:28: ')' expected near 'notifrep'
[12:09:43.056218] (error)    ImGui for Script.lua: Script died due to an error. (0AC0D1DC)
[12:09:43.056218] (system)    Loading script 'D:\GTA FOR SCRIPTS\moonloader\moon imgui demo.lua'...

Код:
Lua:
script_name('ImGui for Script')
script_author('madrasso')
script_description('settings for script')
local key = require 'vkeys'
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local moonimgui_text_buffer = imgui.ImBuffer('test', 256)
show_main_window = imgui.ImBool(false)
notifrep = imgui.ImBool(false)
settings_imgui = imgui.ImBool(false)

function imgui.OnDrawFrame()
    -- Main Window
    if show_main_window.v then
        local sw, sh = getScreenResolution()
        -- center
        imgui.SetNextWindowPos(imgui.ImVec2(sw / 2, sh / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
        imgui.SetNextWindowSize(imgui.ImVec2(300, 300), imgui.Cond.FirstUseEver)
        imgui.Begin(u8'Управление аккаунтом SAMP, через VK.', show_main_window)
                imgui.Text(u8'Доброго времени суток.')
        local btn_size = imgui.ImVec2(-0.1, 0)
        if imgui.Button(u8'Настройки', btn_size) then
            settings_imgui.v = not settings_imgui.v
        end
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            sampAddChatMessage(string.format("Уведомление о репорте %s" notifrep.v and "включено" or "выключено"), 0xCC0000)
        end
        imgui.End()
    end
    if settings_imgui.v then
        imgui.Begin(u8'Настройки')
        if imgui.InputText(u8'Введите ваш ID Вконтакте.', moonimgui_text_buffer) then
            print('ID:', u8:decode(moonimgui_text_buffer.v))
        end
        imgui.Text(u8'Введите номер страницы, узнать его можно в настройках изменения ID.')
        imgui.End()
    end
end

function main()
    while true do
        wait(0)
        imgui.Process = show_main_window.v
   
        if wasKeyPressed(key.VK_Z) then
            show_main_window.v = not show_main_window.v
        end
    end
end
Lua:
script_name('ImGui for Script')
script_author('madrasso')
script_description('settings for script')
local key = require 'vkeys'
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local moonimgui_text_buffer = imgui.ImBuffer('test', 256)
show_main_window = imgui.ImBool(false)
notifrep = imgui.ImBool(false)
settings_imgui = imgui.ImBool(false)

function imgui.OnDrawFrame()
    -- Main Window
    if show_main_window.v then
        local sw, sh = getScreenResolution()
        -- center
        imgui.SetNextWindowPos(imgui.ImVec2(sw / 2, sh / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
        imgui.SetNextWindowSize(imgui.ImVec2(300, 300), imgui.Cond.FirstUseEver)
        imgui.Begin(u8'Управление аккаунтом SAMP, через VK.', show_main_window)
                imgui.Text(u8'Доброго времени суток.')
        local btn_size = imgui.ImVec2(-0.1, 0)
        if imgui.Button(u8'Настройки', btn_size) then
            settings_imgui.v = not settings_imgui.v
        end
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            sampAddChatMessage(string.format("Уведомление о репорте %s", notifrep.v and "{00CC00}включено" or "{CC0000}выключено"), 0xCC0000)
        end
        imgui.End()
    end
    if settings_imgui.v then
        imgui.Begin(u8'Настройки')
        if imgui.InputText(u8'Введите ваш ID Вконтакте.', moonimgui_text_buffer) then
            print('ID:', u8:decode(moonimgui_text_buffer.v))
        end
        imgui.Text(u8'Введите номер страницы, узнать его можно в настройках изменения ID.')
        imgui.End()
    end
end

function main()
    while true do
        wait(0)
        imgui.Process = show_main_window.v
   
        if wasKeyPressed(key.VK_Z) then
            show_main_window.v = not show_main_window.v
        end
    end
end
 

madrasso

Потрачен
883
325
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Lua:
script_name('ImGui for Script')
script_author('madrasso')
script_description('settings for script')
local key = require 'vkeys'
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local moonimgui_text_buffer = imgui.ImBuffer('test', 256)
show_main_window = imgui.ImBool(false)
notifrep = imgui.ImBool(false)
settings_imgui = imgui.ImBool(false)

function imgui.OnDrawFrame()
    -- Main Window
    if show_main_window.v then
        local sw, sh = getScreenResolution()
        -- center
        imgui.SetNextWindowPos(imgui.ImVec2(sw / 2, sh / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
        imgui.SetNextWindowSize(imgui.ImVec2(300, 300), imgui.Cond.FirstUseEver)
        imgui.Begin(u8'Управление аккаунтом SAMP, через VK.', show_main_window)
                imgui.Text(u8'Доброго времени суток.')
        local btn_size = imgui.ImVec2(-0.1, 0)
        if imgui.Button(u8'Настройки', btn_size) then
            settings_imgui.v = not settings_imgui.v
        end
        if imgui.Checkbox('Уведомление о репорте.', notifrep) then
            sampAddChatMessage(string.format("Уведомление о репорте %s", notifrep.v and "{00CC00}включено" or "{CC0000}выключено"), 0xCC0000)
        end
        imgui.End()
    end
    if settings_imgui.v then
        imgui.Begin(u8'Настройки')
        if imgui.InputText(u8'Введите ваш ID Вконтакте.', moonimgui_text_buffer) then
            print('ID:', u8:decode(moonimgui_text_buffer.v))
        end
        imgui.Text(u8'Введите номер страницы, узнать его можно в настройках изменения ID.')
        imgui.End()
    end
end

function main()
    while true do
        wait(0)
        imgui.Process = show_main_window.v
  
        if wasKeyPressed(key.VK_Z) then
            show_main_window.v = not show_main_window.v
        end
    end
end


Код:
[12:48:16.781412] (system)    Loading script 'D:\GTA FOR SCRIPTS\moonloader\ImGui for Script.lua'...
[12:48:16.781412] (debug)    New script: 0AC19F7C
[12:48:16.781412] (error)    ImGui for Script.lua: D:\GTA FOR SCRIPTS\moonloader\ImGui for Script.lua:28: ')' expected near 'notifrep'
[12:48:16.781412] (error)    ImGui for Script.lua: Script died due to an error. (0AC19F7C)