Вопросы по 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
 
Последнее редактирование:

Warklot

Известный
112
3
If input has 15letters or more then does stuff ..
if input: find ('/id') and input:find(15letters) then
setVirtualKeyDown (13, false)
end

how to make this?

Lua:
function main()
    if not isSampLoaded() then return end
    while not isSampAvailable() do wait(100) end

    while true do wait(0)
        input = sampGetChatInputText()
        if input:find('id') then
            setVirtualKeyDown(13, false)
        end
    end
end
 

ROBERT PUSHER

Известный
305
213
If input has 15letters or more then does stuff ..
if input: find ('/id') and input:find(15letters) then
setVirtualKeyDown (13, false)
end

how to make this?

Lua:
function main()
    if not isSampLoaded() then return end
    while not isSampAvailable() do wait(100) end

    while true do wait(0)
        input = sampGetChatInputText()
        if input:find('id') then
            setVirtualKeyDown(13, false)
        end
    end
end
Lua:
function main()
    repeat wait(0) until isSampAvailable()
    while true do
        wait(0)
        local input = sampGetChatInputText()
        if input:find('id') and input:len() > 15 then
            setVirtualKeyDown(13, false)
        end
    end
end
 
  • Нравится
Реакции: Warklot

chapo

чопа сребдс // @moujeek
Модератор
8,934
11,704
Как сделать такую таблицу? imgui
1615556897296.png
 

D.Makarov

Участник
146
3
помогите не работает скрипт крашиться
Код:
function sampev.onServerMessage(color, text)

    if text:match('[FamilyWar]Ваш член семьи'..famq..'завалил') then
        countq = countq+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famw..'завалил') then
        countw = countw+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fame..'завалил') then
        counte = counte+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famr..'завалил') then
        countr = countr+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famt..'завалил') then
        countt = countt+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famy..'завалил') then
        county = county+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famu..'завалил') then
        countu = countu+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fami..'завалил') then
        counti = counti+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famo..'завалил') then
        counto = counto+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famp..'завалил') then
        countp = countp+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fama..'завалил') then
        counta = counta+1
    end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fams..'завалил') then
        counts = counts+1
    end
end



function famw()
lua_thread.create(function()
sampSendChat('/fmembers')
famq = sampGetListboxItemText(0)
wait(500)
famw = sampGetListboxItemText(1)
wait(500)
fame = sampGetListboxItemText(2)
wait(500)
famr = sampGetListboxItemText(3)
wait(500)
famt = sampGetListboxItemText(4)
wait(500)
famy = sampGetListboxItemText(5)
wait(500)
famu = sampGetListboxItemText(6)
wait(500)
fami = sampGetListboxItemText(7)
famo = sampGetListboxItemText(8)
famp = sampGetListboxItemText(9)
fama = sampGetListboxItemText(10)
fams = sampGetListboxItemText(11)
end)
end
 

Shepard

Активный
459
88
помогите не работает скрипт крашиться
Код:
function sampev.onServerMessage(color, text)

    if text:match('[FamilyWar]Ваш член семьи'..famq..'завалил') then
        countq = countq+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famw..'завалил') then
        countw = countw+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fame..'завалил') then
        counte = counte+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famr..'завалил') then
        countr = countr+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famt..'завалил') then
        countt = countt+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famy..'завалил') then
        county = county+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famu..'завалил') then
        countu = countu+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fami..'завалил') then
        counti = counti+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famo..'завалил') then
        counto = counto+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famp..'завалил') then
        countp = countp+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fama..'завалил') then
        counta = counta+1
    end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fams..'завалил') then
        counts = counts+1
    end
end



function famw()
lua_thread.create(function()
sampSendChat('/fmembers')
famq = sampGetListboxItemText(0)
wait(500)
famw = sampGetListboxItemText(1)
wait(500)
fame = sampGetListboxItemText(2)
wait(500)
famr = sampGetListboxItemText(3)
wait(500)
famt = sampGetListboxItemText(4)
wait(500)
famy = sampGetListboxItemText(5)
wait(500)
famu = sampGetListboxItemText(6)
wait(500)
fami = sampGetListboxItemText(7)
famo = sampGetListboxItemText(8)
famp = sampGetListboxItemText(9)
fama = sampGetListboxItemText(10)
fams = sampGetListboxItemText(11)
end)
end
%[%] Скобки нужно экранизировать, а так-же цвет, если он есть
 

Adrian G.

Известный
Проверенный
519
458
помогите не работает скрипт крашиться
Код:
function sampev.onServerMessage(color, text)

    if text:match('[FamilyWar]Ваш член семьи'..famq..'завалил') then
        countq = countq+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famw..'завалил') then
        countw = countw+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fame..'завалил') then
        counte = counte+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famr..'завалил') then
        countr = countr+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famt..'завалил') then
        countt = countt+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famy..'завалил') then
        county = county+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famu..'завалил') then
        countu = countu+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fami..'завалил') then
        counti = counti+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famo..'завалил') then
        counto = counto+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..famp..'завалил') then
        countp = countp+1
        end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fama..'завалил') then
        counta = counta+1
    end
        end
        function sampev.onServerMessage(color, text)
        if text:match('[FamilyWar]Ваш член семьи'..fams..'завалил') then
        counts = counts+1
    end
end



function famw()
lua_thread.create(function()
sampSendChat('/fmembers')
famq = sampGetListboxItemText(0)
wait(500)
famw = sampGetListboxItemText(1)
wait(500)
fame = sampGetListboxItemText(2)
wait(500)
famr = sampGetListboxItemText(3)
wait(500)
famt = sampGetListboxItemText(4)
wait(500)
famy = sampGetListboxItemText(5)
wait(500)
famu = sampGetListboxItemText(6)
wait(500)
fami = sampGetListboxItemText(7)
famo = sampGetListboxItemText(8)
famp = sampGetListboxItemText(9)
fama = sampGetListboxItemText(10)
fams = sampGetListboxItemText(11)
end)
end
Зачем ты сотню раз вставил один и тот же хук, когда можно и нужно делать в одном?
 
  • Нравится
Реакции: sep

Double Tap Inside

Известный
Проверенный
1,916
1,256
[imGui]
У меня беда, если в InputTex() есть какой то тектст, то SetFocusHere() его выделяет при срабатывании. Флагов в InputText() на выделение не ставил, это SetFocusHere() делает. Как сделать шоб оно собака не выделяло?

1615559876356.png