new thread for testers upd

update
rubin 2 years ago
parent fd5426844d
commit c3fa930814
  1. 26
      mafia-tools.lua

@ -556,18 +556,20 @@ upd_testers.init = function()
local command = (thisScript().name:gsub(" ", "").."-test"):lower() local command = (thisScript().name:gsub(" ", "").."-test"):lower()
addChatMessage("Активна команда обновления скрипта: "..command) addChatMessage("Активна команда обновления скрипта: "..command)
sampRegisterChatCommand(command, function() sampRegisterChatCommand(command, function()
local fpath = os.tmpname() lua_thread.create(function()
local result, text = pcall(openURL, upd_testers.url, fpath) local fpath = os.tmpname()
if result and text ~= "" and text:find(thisScript().name:gsub("%-", "%%-")) then local result, text = pcall(openURL, upd_testers.url, fpath)
local file, error = io.open(thisScript().path, "w") if result and text ~= "" and text:find(thisScript().name:gsub("%-", "%%-")) then
if file ~= nil then local file, error = io.open(thisScript().path, "w")
file:write(text) if file ~= nil then
file:flush() file:write(text)
io.close(file) file:flush()
addChatMessage("Обновление завершено, скрипт перезагружен!") io.close(file)
wait(500) addChatMessage("Обновление завершено, скрипт перезагружен!")
thisScript():reload() wait(500)
thisScript():reload()
end
end end
end end)
end) end)
end end
Loading…
Cancel
Save