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

Мира

Участник
455
9
Требуется функция, которая при написании текста, допустим ".mask" проводится автозамена слова на "/mask".
Предыдущие примеры не работают!

Lua:
require "lib.moonloader"
local key = require 'vkeys'

local tag = "{DFCFCF}[Damiano Helper] {FFFFFF}"

local imgui = require 'imgui'
local bWnd = imgui.ImBool(false)

local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local band_list = {
    u8"The Rifa",
    u8"Grove Street",
    u8"Los-Santos Vagos",
    u8"East Side Ballas",
    u8"Varios Los Aztecas",
    u8"Night Wolves"
}
local gps = {
'1',
'2',
'3',
'4',
'5',
'10'
}
local inicfg = require 'inicfg'
local mainIni = inicfg.load({
    settings =
    {
        band = 0
    }
}, 'Random.ini')
if not doesFileExist("moonloader/config/Random.ini") then inicfg.save(mainIni, "Random.ini") end
local band = imgui.ImInt(mainIni.settings.band)

function main()
    if not isSampLoaded() and not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampAddChatMessage(tag.."Helper for Damiano {DFCFCF}by Mira Damiano", -1)
    repeat wait(0) until isSampAvailable()
    while true do
        wait(0)
        imgui.Process = bWnd.v
        local res, ped = getCharPlayerIsTargeting(playerHandle)
        if res then
            local proverka = isKeyJustPressed(VK_1)
            if proverka then
                res, ped = getCharPlayerIsTargeting(playerHandle)
                res, id = sampGetPlayerIdByCharHandle(ped)
                id2 = id
                sampSendChat("/faminvite "..id)
            end
        end
        local res, ped = getCharPlayerIsTargeting(playerHandle)
        if res then
            local proverka = isKeyJustPressed(VK_2)
            if proverka then
                res, ped = getCharPlayerIsTargeting(playerHandle)
                res, id = sampGetPlayerIdByCharHandle(ped)
                id2 = id
                sampSendChat("/invite "..id)
                wait(1000)
                sampSendChat("/me выдал бандану человеку напротив")
            end
        end
        local res, ped = getCharPlayerIsTargeting(playerHandle)
        if res then
            local proverka = isKeyJustPressed(VK_3)
            if proverka then
                res, ped = getCharPlayerIsTargeting(playerHandle)
                res, id = sampGetPlayerIdByCharHandle(ped)
                id2 = id
                sampSendChat("/giverank "..id.." 7")
                wait(1000)
                sampSendChat("/me обозначил место в банде")
            end
        end
        if isKeyJustPressed(106)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat("/usedrugs 3")
        end
        if isKeyJustPressed(77)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            bWnd.v = not bWnd.v
        end
        if isKeyJustPressed(109)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat("/mask")
        end
        if isKeyJustPressed(107)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat("/armour")
        end
        if isKeyJustPressed(100)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat('/ad 1 Проходит набор в '..u8:decode(band_list[mainIni.settings.band+1])..'. Принимаем на 7 майку! Мы в GPS 8 - '..gps[mainIni.settings.band+1]..'!')
        end
        if isKeyJustPressed(101)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat('/vr Проходит набор в '..u8:decode(band_list[mainIni.settings.band+1])..'. Принимаем на 7 майку! Мы в GPS 8 - '..gps[mainIni.settings.band+1]..'!')
        end
        if isKeyJustPressed(66)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat(" ")
        end
        if isKeyJustPressed(99)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSetChatInputEnabled(true)
            sampSetChatInputText("/giverank  7")
            sampSetChatInputCursor(10)
        end
        if isKeyJustPressed(98)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSetChatInputEnabled(true)
            sampSetChatInputText("/invite ")
        end
        if isKeyJustPressed(97)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSetChatInputEnabled(true)
            sampSetChatInputText("/faminvite ")
        end
        if isKeyJustPressed(110)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSetChatInputEnabled(true)
            sampSetChatInputText("/uninvite  Выселен!")
            sampSetChatInputCursor(10)
        end
        if isKeyJustPressed(102)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat('/rt Проходит набор в '..u8:decode(band_list[mainIni.settings.band+1])..'. Принимаем на 7 майку! Мы в GPS 8 - '..gps[mainIni.settings.band+1]..'!')
        end
    end
end

function sampSetChatInputCursor(start, finish)
    local finish = finish or start
    local start, finish = tonumber(start), tonumber(finish)
    local mem = require 'memory'
    local chatInfoPtr = sampGetInputInfoPtr()
    local chatBoxInfo = getStructElement(chatInfoPtr, 0x8, 4)
    mem.setint8(chatBoxInfo + 0x11E, start)
    mem.setint8(chatBoxInfo + 0x119, finish)
    return true
end

function imgui.OnDrawFrame()
  imgui.Begin(u8"Damiano Helper", bWnd)
  imgui.PushItemWidth(130)
  if imgui.Combo(u8'The choice of gang', band, band_list)then
        mainIni.settings.band = band.v
        inicfg.save(mainIni, "Random.ini")
    end imgui.PopItemWidth()
    imgui.End()
end
 

Fott

Простреленный
3,462
2,379
Требуется функция, которая при написании текста, допустим ".mask" проводится автозамена слова на "/mask".
Предыдущие примеры не работают!

Lua:
require "lib.moonloader"
local key = require 'vkeys'

local tag = "{DFCFCF}[Damiano Helper] {FFFFFF}"

local imgui = require 'imgui'
local bWnd = imgui.ImBool(false)

local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local band_list = {
    u8"The Rifa",
    u8"Grove Street",
    u8"Los-Santos Vagos",
    u8"East Side Ballas",
    u8"Varios Los Aztecas",
    u8"Night Wolves"
}
local gps = {
'1',
'2',
'3',
'4',
'5',
'10'
}
local inicfg = require 'inicfg'
local mainIni = inicfg.load({
    settings =
    {
        band = 0
    }
}, 'Random.ini')
if not doesFileExist("moonloader/config/Random.ini") then inicfg.save(mainIni, "Random.ini") end
local band = imgui.ImInt(mainIni.settings.band)

function main()
    if not isSampLoaded() and not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampAddChatMessage(tag.."Helper for Damiano {DFCFCF}by Mira Damiano", -1)
    repeat wait(0) until isSampAvailable()
    while true do
        wait(0)
        imgui.Process = bWnd.v
        local res, ped = getCharPlayerIsTargeting(playerHandle)
        if res then
            local proverka = isKeyJustPressed(VK_1)
            if proverka then
                res, ped = getCharPlayerIsTargeting(playerHandle)
                res, id = sampGetPlayerIdByCharHandle(ped)
                id2 = id
                sampSendChat("/faminvite "..id)
            end
        end
        local res, ped = getCharPlayerIsTargeting(playerHandle)
        if res then
            local proverka = isKeyJustPressed(VK_2)
            if proverka then
                res, ped = getCharPlayerIsTargeting(playerHandle)
                res, id = sampGetPlayerIdByCharHandle(ped)
                id2 = id
                sampSendChat("/invite "..id)
                wait(1000)
                sampSendChat("/me выдал бандану человеку напротив")
            end
        end
        local res, ped = getCharPlayerIsTargeting(playerHandle)
        if res then
            local proverka = isKeyJustPressed(VK_3)
            if proverka then
                res, ped = getCharPlayerIsTargeting(playerHandle)
                res, id = sampGetPlayerIdByCharHandle(ped)
                id2 = id
                sampSendChat("/giverank "..id.." 7")
                wait(1000)
                sampSendChat("/me обозначил место в банде")
            end
        end
        if isKeyJustPressed(106)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat("/usedrugs 3")
        end
        if isKeyJustPressed(77)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            bWnd.v = not bWnd.v
        end
        if isKeyJustPressed(109)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat("/mask")
        end
        if isKeyJustPressed(107)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat("/armour")
        end
        if isKeyJustPressed(100)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat('/ad 1 Проходит набор в '..u8:decode(band_list[mainIni.settings.band+1])..'. Принимаем на 7 майку! Мы в GPS 8 - '..gps[mainIni.settings.band+1]..'!')
        end
        if isKeyJustPressed(101)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat('/vr Проходит набор в '..u8:decode(band_list[mainIni.settings.band+1])..'. Принимаем на 7 майку! Мы в GPS 8 - '..gps[mainIni.settings.band+1]..'!')
        end
        if isKeyJustPressed(66)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat(" ")
        end
        if isKeyJustPressed(99)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSetChatInputEnabled(true)
            sampSetChatInputText("/giverank  7")
            sampSetChatInputCursor(10)
        end
        if isKeyJustPressed(98)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSetChatInputEnabled(true)
            sampSetChatInputText("/invite ")
        end
        if isKeyJustPressed(97)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSetChatInputEnabled(true)
            sampSetChatInputText("/faminvite ")
        end
        if isKeyJustPressed(110)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSetChatInputEnabled(true)
            sampSetChatInputText("/uninvite  Выселен!")
            sampSetChatInputCursor(10)
        end
        if isKeyJustPressed(102)
        and not sampIsChatInputActive()
        and not sampIsDialogActive()
        then
            sampSendChat('/rt Проходит набор в '..u8:decode(band_list[mainIni.settings.band+1])..'. Принимаем на 7 майку! Мы в GPS 8 - '..gps[mainIni.settings.band+1]..'!')
        end
    end
end

function sampSetChatInputCursor(start, finish)
    local finish = finish or start
    local start, finish = tonumber(start), tonumber(finish)
    local mem = require 'memory'
    local chatInfoPtr = sampGetInputInfoPtr()
    local chatBoxInfo = getStructElement(chatInfoPtr, 0x8, 4)
    mem.setint8(chatBoxInfo + 0x11E, start)
    mem.setint8(chatBoxInfo + 0x119, finish)
    return true
end

function imgui.OnDrawFrame()
  imgui.Begin(u8"Damiano Helper", bWnd)
  imgui.PushItemWidth(130)
  if imgui.Combo(u8'The choice of gang', band, band_list)then
        mainIni.settings.band = band.v
        inicfg.save(mainIni, "Random.ini")
    end imgui.PopItemWidth()
    imgui.End()
end
Проверил пример @CaJlaT, все прекрасно работает
1593776224062.png
 
  • Нравится
Реакции: CaJlaT

AnWu

Известный
Всефорумный модератор
4,778
5,403
функция onSendChat(text) ищет текст в чате ведёный пользователем, но на большинстве РП серверах сообщения изменяются например ввёл "привет", сервер всё это обработал и вывел в чат "говорит: привет" и в таком случае нужно использовать onServerMessage(color,text)
хуйню написал.
 
  • Нравится
Реакции: CaJlaT, Fott и neverlane

Roman Ushnurcev

Участник
34
2
хуйню написал.
Согласен
а куда вставить его пример?
У меня его пример не работал, текст выводился в nRP чат ((/b)), попробуй это.

Lua:
local ev = require "lib.samp.events" -- регистрация библиотеки

function ev.onSendChat(text)
    if text == '.ьфыл' then
        text = '/mask'
        sampSendChat(text)
        return false
    end
end
 
Последнее редактирование:

rayprod

Участник
96
1
Ребят, нужна помощь.
Есть код, который в определенное время сбрасывает ini файл, вроде всё норм работает, но вот проблема, если время не совпадает, допустим должно сбрасываться в 15:03, а в игру зашёл в 15:04 то скрипт не сбросил ini. Если зайти в 15:03 то скрипт спокойно сбрасывает.
Вот я не могу понять, как правильно сделать что-бы скрипт сбрасывал ini файл после определённого времени.
Вот код:

Lua:
До main

if os.date( "!%H:%M", os.time(utc) + 3 * 3600 ) == '05:03' then -- тут МСК время ставиться само если что
    mainIni.config.alls = 0
    mainIni.config.ans = 0
    mainIni.config.offwarn = 0
    mainIni.config.offjail = 0
    mainIni.config.offmute = 0
    mainIni.config.nookay = 0
    mainIni.config.prespawn = 0
    mainIni.config.kick = 0
    mainIni.config.warn = 0
    mainIni.config.jail = 0
    mainIni.config.mute = 0
    mainIni.config.ban = 0
    mainIni.config.offban = 0
    mainIni.config.okay = 0
    mainIni.config.slap = 0
    mainIni.stats.ans1 = 0
    mainIni.stats.offwarn1 = 0
    mainIni.stats.offjail1 = 0
    mainIni.stats.offmute1 = 0
    mainIni.stats.nookay1 = 0
    mainIni.stats.prespawn1 = 0
    mainIni.stats.kick1 = 0
    mainIni.stats.warn1 = 0
    mainIni.stats.jail1 = 0
    mainIni.stats.mute1 = 0
    mainIni.stats.ban1 = 0
    mainIni.stats.offban1 = 0
    mainIni.stats.okay1 = 0
    mainIni.stats.slap1 = 0
    inicfg.save(mainIni, "stats.ini")
end

main
    if os.date( "!%H:%M", os.time(utc) + 3 * 3600 ) == '15:53' then -- тут также МСК время.
        mainIni.config.alls = 0
        mainIni.config.ans = 0
        mainIni.config.offwarn = 0
        mainIni.config.offjail = 0
        mainIni.config.offmute = 0
        mainIni.config.nookay = 0
         mainIni.config.prespawn = 0
        mainIni.config.kick = 0
        mainIni.config.warn = 0
        mainIni.config.jail = 0
        mainIni.config.mute = 0
        mainIni.config.ban = 0
        mainIni.config.offban = 0
        mainIni.config.okay = 0
        mainIni.config.slap = 0
        mainIni.stats.ans1 = 0
        mainIni.stats.offwarn1 = 0
        mainIni.stats.offjail1 = 0
        mainIni.stats.offmute1 = 0
        mainIni.stats.nookay1 = 0
        mainIni.stats.prespawn1 = 0
        mainIni.stats.kick1 = 0
        mainIni.stats.warn1 = 0
        mainIni.stats.jail1 = 0
        mainIni.stats.mute1 = 0
        mainIni.stats.ban1 = 0
        mainIni.stats.offban1 = 0
        mainIni.stats.okay1 = 0
        mainIni.stats.slap1 = 0
        inicfg.save(mainIni, "stats.ini")
    end
 

Fott

Простреленный
3,462
2,379
Ребят, нужна помощь.
Есть код, который в определенное время сбрасывает ini файл, вроде всё норм работает, но вот проблема, если время не совпадает, допустим должно сбрасываться в 15:03, а в игру зашёл в 15:04 то скрипт не сбросил ini. Если зайти в 15:03 то скрипт спокойно сбрасывает.
Вот я не могу понять, как правильно сделать что-бы скрипт сбрасывал ini файл после определённого времени.
Вот код:

Lua:
До main

if os.date( "!%H:%M", os.time(utc) + 3 * 3600 ) == '05:03' then -- тут МСК время ставиться само если что
    mainIni.config.alls = 0
    mainIni.config.ans = 0
    mainIni.config.offwarn = 0
    mainIni.config.offjail = 0
    mainIni.config.offmute = 0
    mainIni.config.nookay = 0
    mainIni.config.prespawn = 0
    mainIni.config.kick = 0
    mainIni.config.warn = 0
    mainIni.config.jail = 0
    mainIni.config.mute = 0
    mainIni.config.ban = 0
    mainIni.config.offban = 0
    mainIni.config.okay = 0
    mainIni.config.slap = 0
    mainIni.stats.ans1 = 0
    mainIni.stats.offwarn1 = 0
    mainIni.stats.offjail1 = 0
    mainIni.stats.offmute1 = 0
    mainIni.stats.nookay1 = 0
    mainIni.stats.prespawn1 = 0
    mainIni.stats.kick1 = 0
    mainIni.stats.warn1 = 0
    mainIni.stats.jail1 = 0
    mainIni.stats.mute1 = 0
    mainIni.stats.ban1 = 0
    mainIni.stats.offban1 = 0
    mainIni.stats.okay1 = 0
    mainIni.stats.slap1 = 0
    inicfg.save(mainIni, "stats.ini")
end

main
    if os.date( "!%H:%M", os.time(utc) + 3 * 3600 ) == '15:53' then -- тут также МСК время.
        mainIni.config.alls = 0
        mainIni.config.ans = 0
        mainIni.config.offwarn = 0
        mainIni.config.offjail = 0
        mainIni.config.offmute = 0
        mainIni.config.nookay = 0
         mainIni.config.prespawn = 0
        mainIni.config.kick = 0
        mainIni.config.warn = 0
        mainIni.config.jail = 0
        mainIni.config.mute = 0
        mainIni.config.ban = 0
        mainIni.config.offban = 0
        mainIni.config.okay = 0
        mainIni.config.slap = 0
        mainIni.stats.ans1 = 0
        mainIni.stats.offwarn1 = 0
        mainIni.stats.offjail1 = 0
        mainIni.stats.offmute1 = 0
        mainIni.stats.nookay1 = 0
        mainIni.stats.prespawn1 = 0
        mainIni.stats.kick1 = 0
        mainIni.stats.warn1 = 0
        mainIni.stats.jail1 = 0
        mainIni.stats.mute1 = 0
        mainIni.stats.ban1 = 0
        mainIni.stats.offban1 = 0
        mainIni.stats.okay1 = 0
        mainIni.stats.slap1 = 0
        inicfg.save(mainIni, "stats.ini")
    end
Сделай проверку не по времени, а по дате, роли по сути играть не должно
 

Мира

Участник
455
9
подскажите пж как это вставить в мой main. просто я не понимаю почему в конце нет wait(0)
Lua:
function main()
    repeat wait(0) until isSampAvailable()
    sampRegisterChatCommand('cc', function() ClearChat() end)
    wait(-1)
end
мой main
Lua:
function main()
    if not isSampLoaded() and not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampAddChatMessage(tag.."Helper for Damiano {DFCFCF}by Mira Damiano", -1)
    repeat wait(0) until isSampAvailable()
    while true do
        wait(0)
 

Fott

Простреленный
3,462
2,379
подскажите пж как это вставить в мой main. просто я не понимаю почему в конце нет wait(0)
Lua:
function main()
    repeat wait(0) until isSampAvailable()
    sampRegisterChatCommand('cc', function() ClearChat() end)
    wait(-1)
end
мой main
Lua:
function main()
    if not isSampLoaded() and not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampAddChatMessage(tag.."Helper for Damiano {DFCFCF}by Mira Damiano", -1)
    repeat wait(0) until isSampAvailable()
    while true do
        wait(0)
Lua:
function main()

    if not isSampLoaded() and not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampRegisterChatCommand('cc', function() ClearChat() end)
    sampAddChatMessage(tag.."Helper for Damiano {DFCFCF}by Mira Damiano", -1)
    while true do
        wait(0)
end
end
 

CaJlaT

07.11.2024 14:55
Модератор
2,840
2,673
Ребят, нужна помощь.
Есть код, который в определенное время сбрасывает ini файл, вроде всё норм работает, но вот проблема, если время не совпадает, допустим должно сбрасываться в 15:03, а в игру зашёл в 15:04 то скрипт не сбросил ini. Если зайти в 15:03 то скрипт спокойно сбрасывает.
Вот я не могу понять, как правильно сделать что-бы скрипт сбрасывал ini файл после определённого времени.
Вот код:

Lua:
До main

if os.date( "!%H:%M", os.time(utc) + 3 * 3600 ) == '05:03' then -- тут МСК время ставиться само если что
    mainIni.config.alls = 0
    mainIni.config.ans = 0
    mainIni.config.offwarn = 0
    mainIni.config.offjail = 0
    mainIni.config.offmute = 0
    mainIni.config.nookay = 0
    mainIni.config.prespawn = 0
    mainIni.config.kick = 0
    mainIni.config.warn = 0
    mainIni.config.jail = 0
    mainIni.config.mute = 0
    mainIni.config.ban = 0
    mainIni.config.offban = 0
    mainIni.config.okay = 0
    mainIni.config.slap = 0
    mainIni.stats.ans1 = 0
    mainIni.stats.offwarn1 = 0
    mainIni.stats.offjail1 = 0
    mainIni.stats.offmute1 = 0
    mainIni.stats.nookay1 = 0
    mainIni.stats.prespawn1 = 0
    mainIni.stats.kick1 = 0
    mainIni.stats.warn1 = 0
    mainIni.stats.jail1 = 0
    mainIni.stats.mute1 = 0
    mainIni.stats.ban1 = 0
    mainIni.stats.offban1 = 0
    mainIni.stats.okay1 = 0
    mainIni.stats.slap1 = 0
    inicfg.save(mainIni, "stats.ini")
end

main
    if os.date( "!%H:%M", os.time(utc) + 3 * 3600 ) == '15:53' then -- тут также МСК время.
        mainIni.config.alls = 0
        mainIni.config.ans = 0
        mainIni.config.offwarn = 0
        mainIni.config.offjail = 0
        mainIni.config.offmute = 0
        mainIni.config.nookay = 0
         mainIni.config.prespawn = 0
        mainIni.config.kick = 0
        mainIni.config.warn = 0
        mainIni.config.jail = 0
        mainIni.config.mute = 0
        mainIni.config.ban = 0
        mainIni.config.offban = 0
        mainIni.config.okay = 0
        mainIni.config.slap = 0
        mainIni.stats.ans1 = 0
        mainIni.stats.offwarn1 = 0
        mainIni.stats.offjail1 = 0
        mainIni.stats.offmute1 = 0
        mainIni.stats.nookay1 = 0
        mainIni.stats.prespawn1 = 0
        mainIni.stats.kick1 = 0
        mainIni.stats.warn1 = 0
        mainIni.stats.jail1 = 0
        mainIni.stats.mute1 = 0
        mainIni.stats.ban1 = 0
        mainIni.stats.offban1 = 0
        mainIni.stats.okay1 = 0
        mainIni.stats.slap1 = 0
        inicfg.save(mainIni, "stats.ini")
    end

Lua:
local checktime = true -- Чтобы не флудило проверяет время, пока эта переменная активна
function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    while true do
        wait(0)
        if checktime and os.date( "!%H:%M", os.time(utc) + 3 * 3600 ) >= '16:38' then
            sampAddChatMessage('Сейчас больше 16:38 по МСК!', -1)
            checktime = false
        end
    end
end
P.s: У меня +1 к МСК
 
  • Нравится
Реакции: rayprod

rayprod

Участник
96
1
Может кто-то подсказать, как сделать что-бы imgui сохранялся открытым после перезахода в игру, а также сохранял своё место положение.
 

Fott

Простреленный
3,462
2,379
Может кто-то подсказать, как сделать что-бы imgui сохранялся открытым после перезахода в игру, а также сохранял своё место положение.
Lua:
 local mainIni = inicfg.load({
    config =
    {
         posw = 0, -- w
         posh = 0, -- h
    }
}, 'test.ini')
---- в имгуи
imgui.SetNextWindowPos(imgui.ImVec2(mainIni.config.posw , mainIni,config.posh), imgui.Cond.FirsUseEver, imgui.ImVec2(0.5, 0.5))
---
--Чтобы при заходе в игру открывалось имгуи окно
imgui.Procces = true
 
Последнее редактирование:
  • Нравится
Реакции: rayprod

rayprod

Участник
96
1
Lua:
local checktime = true -- Чтобы не флудило проверяет время, пока эта переменная активна
function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    while true do
        wait(0)
        if checktime and os.date( "!%H:%M", os.time(utc) + 3 * 3600 ) >= '16:38' then
            sampAddChatMessage('Сейчас больше 16:38 по МСК!', -1)
            checktime = false
        end
    end
end
P.s: У меня +1 к МСК
Крч он теперь всё время сбрасывает, если больше указанного времени.
 

CaJlaT

07.11.2024 14:55
Модератор
2,840
2,673
Крч он теперь всё время сбрасывает, если больше указанного времени.
проверяй по дате, зачем тебе по времени? А вообще можно в ини записать дату и переменную, которая будет индикатором обнуления, ща код накидаю