Странная ошибка в скрипте с автообновлением.

Страницы: 1
RSS
Странная ошибка в скрипте с автообновлением., Ошибка: D:\SAMP\CLEAR SBORKA SAMP\moonloader\update.luac:0: attempt to compare nil with number
 
Кто знает помогите, код:
Код
require 'lib.moonloader'
inicfg = require 'inicfg'
dlstatus = require('moonloader').download_status
enc = require('encoding')
enc.default = 'CP1251'

local update_state = false
local script_version = 2
local script_version_text = "2.0"

local update_url = "https://raw.githubusercontent.com/FasminCode/FasminCode/main/script_update.ini"
local update_path = getWorkingDirectory() .. '/script_update.ini'

local script_url = "https://github.com/FasminCode/FasminCode/blob/main/update.luac?raw=true"
local script_path = thisScript().path

function main()
   repeat wait(0) until isSampAvailable()
   sampAddChatMessage("{ff0000}update.lua {00ff00}completed {ffffff}loaded", -1)
   sampRegisterChatCommand('update', cmd_update)
   
   downloadUrlToFile(update_url, update_path, function(id, status)
        if status == dlstatus.STATUS_ENDDOWNLOADDATA then
            updateIni = inicfg.load(nil, update_path)
            if tonumber(updateIni.info.vers) > script_vers then
                sampAddChatMessage("Есть обновление! Версия: " .. updateIni.info.vers_text, -1)
                update_state = true
            end
            os.remove(update_path)
        end
    end)
   while true do wait(0)
      --[[if update_state then
            downloadUrlToFile(script_url, script_path, function(id, status)
                if status == dlstatus.STATUS_ENDDOWNLOADDATA then
                    sampAddChatMessage("Скрипт успешно обновлен!", -1)
                    thisScript():reload()
                end
            end)
            break
        end]]
   end
end

function cmd_update()
   sampShowDialog(2335, "UPDATE SCRIPT V2.0", "Новое обновление!\nЧто было добавлено: ничего!", "Закрыть", "", 0)
end
 
а Вы форумом не ошиблись?
 
Цитата
nikolz написал:
а Вы форумом не ошиблись?
А вы?


Цитата
Fasmin написал:
Кто знает помогите
Fasmin, ответил в другой ветке:
https://forum.quik.ru/messages/forum10/message60476/topic6997/#message60476
Страницы: 1
Читают тему
Наверх