Извлечение информации из текста (onServerMessage) помощь

saradaken

Участник
Автор темы
43
6
Версия MoonLoader
Другое
Привет, я пытаюсь получить баланс или другие значения в сообщении payday, но я не могу получить зарплату и azcoin. Я думаю, что я правильно ввел текст в text:find, но он возвращает 0. помощь

1726998134253.png
1726998173712.png


Lua:
function sampev.onServerMessage(color, text)
    local host = sampGetCurrentServerName()
    local acc = sampGetPlayerNickname(select(2, sampGetPlayerIdByCharHandle(playerPed))) .. '[' .. select(2, sampGetPlayerIdByCharHandle(playerPed)) .. ']'
    

    if text:find('Текущая сумма в банке: %$%d+') then
        bankAmount = text:match('Текущая сумма в банке: %$(%d+)')
    end

    if text:find('Текущая сумма на депозите: %$%d+') then
        depositAmount = text:match('Текущая сумма на депозите: %$(%d+)')
    end
    
    if text:find('Общая заработная плата: %$%d+') then
        salary = text:match('Общая заработная плата: %$(%d+)')
    end
    
    if text:find('Баланс на донат-счет: %d+') then
        azcoin = text:match('Баланс на донат-счет: (%d+)')
    end
    

    if text:find('В данный момент у вас (%d+)%-%й уровень и (%d+)/(%d+) респектов') then
        if pdnotf then
            lua_thread.create(function()
                local lvl, exp1, exp2 = text:match('В данный момент у вас (%d+)%-%й уровень и (%d+)/(%d+) респектов')
                msg = string.format([[
                {
                    "content": null,
                    "embeds": [
                      {
                        "title": "PayDay Notifier",
                        "description": "!!! Получен ПейДей !!!\nАккаунт: %s\nСервер: %s\nУровень: %d\nРеспектов: %d/%d\nТекущая сумма в банке: $%d\nТекущая сумма на депозите: $%d\nОбщая заработная плата: $%d\nБаланс на донат-счет: %d",
                        "color": 16711757
                      }
                    ],
                    "attachments": []
                }
                ]], acc, host, lvl, exp1, exp2, tonumber(bankAmount) or 0, tonumber(depositAmount) or 0, tonumber(salary) or 0, tonumber(azcoin) or 0)

                sendDiscordWebhook('https://discord.com/api/webhooks/sdsssssssssssssss', msg)
            end)
        end
    end
    
    


end
 

saradaken

Участник
Автор темы
43
6
Lua:
if text:find('В данный момент у вас (%d+)%-%й уровень и (%d+)/(%d+) респектов') then
замени на
Lua:
if text:find('Баланс на донат-счет: ') then


CLEO:
if text:find('В данный момент у вас (%d+)%-%й уровень и (%d+)/(%d+) респектов') then

Это сработало для меня, но я хотел найти и другие значения, как на картинке, но есть только два значения, которые я не могу извлечь, а именно:

Lua:
    if text:find('Общая заработная плата: %$%d+') then
        salary = text:match('Общая заработная плата: %$(%d+)')
    end
    
    if text:find('Баланс на донат-счет: %d+') then
        azcoin = text:match('Баланс на донат-счет: (%d+)')
    end

1726999142451.png
 

chromiusj

Стань той переменой, которую хочешь увидеть в мире
Модератор
5,736
4,041
вот так сделай, заменив на ДС,и не парься
 
  • Эм
Реакции: saradaken

Albertio

Attention! Thanks for your attention.
887
717
Lua:
local patternTable = {
    'Текущая сумма в банке: %$(%d+) %{33AA33%}%(+%$%d+%)',
    'Текущая сумма на депозите: %$(%d+) %{33AA33%}%(+%$%d+%)',
    'В данный момент у вас (%d+)-й уровень и (%d+)/(%d+) респектов %{33AA33%}%(+%d+ EXP%)',
    'Общая заработная плата: %$(%d+)',
    'Баланс на донат-счет: (%d+) AZ %{ff6666%}%(+%d+ AZ%)'
}

function sampev.onServerMessage(color, text)
    local host = sampGetCurrentServerName()
    local _, pID = sampGetPlayerIdByCharHandle(PLAYER_PED)
    local acc = sampGetPlayerNickname(pID) .. '[' .. pID .. ']'

    bankAmount = text:find(patternTable[1]) and tonumber(text:match(patternTable[1])) or 0
    depositAmount = text:find(patternTable[2]) and tonumber(text:match(patternTable[2])) or 0
    salary = text:find(patternTable[4]) and tonumber(text:match(patternTable[4])) or 0
    azcoin = text:find(patternTable[5]) and tonumber(text:match(patternTable[5])) or 0

    if text:find(patternTable[3]) then
        if pdnotf then
            lua_thread.create(function()
                local lvl, exp1, exp2 = text:match(patternTable[3])
                msg = string.format([[
                {
                    "content": null,
                    "embeds": [
                      {
                        "title": "PayDay Notifier",
                        "description": "!!! Получен ПейДей !!!\nАккаунт: %s\nСервер: %s\nУровень: %d\nРеспектов: %d/%d\nТекущая сумма в банке: $%d\nТекущая сумма на депозите: $%d\nОбщая заработная плата: $%d\nБаланс на донат-счет: %d",
                        "color": 16711757
                      }
                    ],
                    "attachments": []
                }
                ]], acc, host, lvl, exp1, exp2, bankAmount, depositAmount, salary, azcoin)

                sendDiscordWebhook('https://discord.com/api/webhooks/sdsssssssssssssss', msg)
            end)
        end
    end
end
 
Последнее редактирование:
  • Эм
Реакции: saradaken

saradaken

Участник
Автор темы
43
6
Lua:
local patternTable = {
    'Текущая сумма в банке: %$(%d+) %{33AA33%}%(+%$%d+%)',
    'Текущая сумма на депозите: %$(%d+) %{33AA33%}%(+%$%d+%)',
    'В данный момент у вас (%d+)-й уровень и (%d+)/(%d+) респектов %{33AA33%}%(+%d+ EXP%)',
    'Общая заработная плата: %$(%d+)',
    'Баланс на донат-счет: %$(%d+) AZ %{ff6666%}%(+%d+ AZ%)'
}

function sampev.onServerMessage(color, text)
    local host = sampGetCurrentServerName()
    local _, pID = sampGetPlayerIdByCharHandle(PLAYER_PED)
    local acc = sampGetPlayerNickname(pID) .. '[' .. pID .. ']'

    bankAmount = text:find(patternTable[1]) and tonumber(text:match(patternTable[1])) or 0
    depositAmount = text:find(patternTable[2]) and tonumber(text:match(patternTable[2])) or 0
    salary = text:find(patternTable[4]) and tonumber(text:match(patternTable[4])) or 0
    azcoin = text:find(patternTable[5]) and tonumber(text:match(patternTable[5])) or 0

    if text:find(patternTable[3]) then
        if pdnotf then
            lua_thread.create(function()
                local lvl, exp1, exp2 = text:match(patternTable[3])
                msg = string.format([[
                {
                    "content": null,
                    "embeds": [
                      {
                        "title": "PayDay Notifier",
                        "description": "!!! Получен ПейДей !!!\nАккаунт: %s\nСервер: %s\nУровень: %d\nРеспектов: %d/%d\nТекущая сумма в банке: $%d\nТекущая сумма на депозите: $%d\nОбщая заработная плата: $%d\nБаланс на донат-счет: %d",
                        "color": 16711757
                      }
                    ],
                    "attachments": []
                }
                ]], acc, host, lvl, exp1, exp2, bankAmount, depositAmount, salary, azcoin)

                sendDiscordWebhook('https://discord.com/api/webhooks/sdsssssssssssssss', msg)
            end)
        end
    end
end
1727002953623.png


Вот что произошло после того, как я это попробовал. Это все еще 0

вот так сделай, заменив на ДС,и не парься
Возможен ли какой-либо другой путь?
 

Albertio

Attention! Thanks for your attention.
887
717
  • Нравится
Реакции: saradaken

saradaken

Участник
Автор темы
43
6
Последнее редактирование:

chromiusj

Стань той переменой, которую хочешь увидеть в мире
Модератор
5,736
4,041
Возможен ли какой-либо другой путь?
А зачем кучу регулярок делать? Конечная, и начальная строка есть, все работает
Lua:
local getPayday = false
local listPayday = {}

function sampev.onServerMessage(color, text)
    -->> payday
    if color == 1941201407 and text:find('^_+Банковский чек_+$') then
        getPayday = true
    end

    if getPayday then
        local cleanText = text:gsub('_+', ''):gsub('{.-}', '')
        table.insert(listPayday, cleanText)
    end

    if color == 1941201407 and text:find('^_+$') then
        local message = table.concat(listPayday, '\\n')
        local webhookPayload = string.format([[
        {
            "content": null,
            "embeds": [
              {
                "title": "PayDay Notification",
                "description": "%s",
                "color": 16711757
              }
            ],
            "attachments": []
        }
        ]], message)

        SendWebhook('url', webhookPayload)

        getPayday = false
        listPayday = {}
    end
    -->> payday
end
1.png
 
  • Эм
Реакции: saradaken

saradaken

Участник
Автор темы
43
6
А зачем кучу регулярок делать? Конечная, и начальная строка есть, все работает
Lua:
local getPayday = false
local listPayday = {}

function sampev.onServerMessage(color, text)
    -->> payday
    if color == 1941201407 and text:find('^_+Банковский чек_+$') then
        getPayday = true
    end

    if getPayday then
        local cleanText = text:gsub('_+', ''):gsub('{.-}', '')
        table.insert(listPayday, cleanText)
    end

    if color == 1941201407 and text:find('^_+$') then
        local message = table.concat(listPayday, '\\n')
        local webhookPayload = string.format([[
        {
            "content": null,
            "embeds": [
              {
                "title": "PayDay Notification",
                "description": "%s",
                "color": 16711757
              }
            ],
            "attachments": []
        }
        ]], message)

        SendWebhook('url', webhookPayload)

        getPayday = false
        listPayday = {}
    end
    -->> payday
end
Посмотреть вложение 252471


По сути, я просто хочу добавить какой-нибудь текст или написать на других региональных языках, чтобы обозначить, что это такое, или указать значение на некоторых значках, чтобы украсить это.

1727010973172.png


А зачем кучу регулярок делать? Конечная, и начальная строка есть, все работает
Lua:
local getPayday = false
local listPayday = {}

function sampev.onServerMessage(color, text)
    -->> payday
    if color == 1941201407 and text:find('^_+Банковский чек_+$') then
        getPayday = true
    end

    if getPayday then
        local cleanText = text:gsub('_+', ''):gsub('{.-}', '')
        table.insert(listPayday, cleanText)
    end

    if color == 1941201407 and text:find('^_+$') then
        local message = table.concat(listPayday, '\\n')
        local webhookPayload = string.format([[
        {
            "content": null,
            "embeds": [
              {
                "title": "PayDay Notification",
                "description": "%s",
                "color": 16711757
              }
            ],
            "attachments": []
        }
        ]], message)

        SendWebhook('url', webhookPayload)

        getPayday = false
        listPayday = {}
    end
    -->> payday
end
Посмотреть вложение 252471

now Не работает. Ничего не отправляется в ds.

++
 
Последнее редактирование:

makson4ck Pauza

Участник
36
14
По сути, я просто хочу добавить какой-нибудь текст или написать на других региональных языках, чтобы обозначить, что это такое, или указать значение на некоторых значках, чтобы украсить это.

Посмотреть вложение 252479



now Не работает. Ничего не отправляется в ds.

++
Покажи что ты используешь в text:find и тебе выдает значение 0
 
  • Нравится
Реакции: saradaken

saradaken

Участник
Автор темы
43
6
Покажи что ты используешь в text:find и тебе выдает значение 0
Я не понимаю, почему он не находит значение, но можно использовать bankAmount и depositAmount или другие переменные, только salary возвращает 0.

Lua:
    if text:find('Общая заработная плата: %$%d+')then
        salary = text:match('Общая заработная плата: %$(%d+)')
    end

Lua:
function sampev.onServerMessage(color, text)

    local host = sampGetCurrentServerName()
    local acc = sampGetPlayerNickname(select(2, sampGetPlayerIdByCharHandle(playerPed))) .. '[' .. select(2, sampGetPlayerIdByCharHandle(playerPed)) .. ']'
    

    if text:find('Текущая сумма в банке: %$%d+') then --succeed
        bankAmount = text:match('Текущая сумма в банке: %$(%d+)')
    end

    if text:find('Текущая сумма на депозите: %$%d+') then --succeed
        depositAmount = text:match('Текущая сумма на депозите: %$(%d+)')
    end
    
    if text:find('Общая заработная плата: %$%d+')then
        salary = text:match('Общая заработная плата: %$(%d+)')
    end
    

    if text:find('В данный момент у вас (%d+)%-%й уровень и (%d+)/(%d+) респектов') then
        if pdnotf then
            lua_thread.create(function()
                local lvl, exp1, exp2 = text:match('В данный момент у вас (%d+)%-%й уровень и (%d+)/(%d+) респектов')
                msg = string.format([[
                {
                    "content": null,
                    "embeds": [
                      {
                        "title": "PayDay Notifier",
                        "description": "!!! Получен ПейДей !!!\nАккаунт: %s\nСервер: %s\nУровень: %d\nРеспектов: %d/%d\nТекущая сумма в банке: $%d\nТекущая сумма на депозите: $%d\nОбщая заработная плата: $%d",
                        "color": 16711757
                      }
                    ],
                    "attachments": []
                }
                ]], acc, host, lvl, exp1, exp2, tonumber(bankAmount) or 0, tonumber(depositAmount) or 0, tonumber(salary) or 0)

                sendDiscordWebhook('url', msg)
            end)
        end
    end
    
    


end