Lua [ARZ] Mono Tools v3.5 | Legal Edition

Kaban Bunya

Известный
Автор темы
791
282
Думаю что очень полезным было бы сделать временную приостановку открытия рулеток когда ты находишься в авто, а после выхода из него, её автоматическое возобновление. Часто сталкиваюсь с тем, что прежде чем сесть в авто забываю выключить автооткрытие, в связи с чем слетает инвентарь и зачастую происходит кик с сервера.
Проект Mono Tools очень полезный и удобный. Огромное спасибо автору! ⚡
Хорошо, подумаю, что можно сделать, спасибо за предложение.
 

Sanch0

Новичок
7
3
Ну краши тоже просто так не происходят. Смотря что включено в скрипте, что еще стоит вместе со скриптом и что за сборка. Тут у каждого индивидуально. Ну а скуп меню я брал от Девила, тему можете найти на форуме.
Нашел из-за чего крашит часто, оказывается из-за Game-fixer а
 
  • Нравится
Реакции: Kaban Bunya

Fredvim

Участник
41
3
Окей запишу это. Дело может и 5 минут, но предложений куча и всё и сразу выполнить невозможно.
Lua:
require 'lib.moonloader'
local sampev = require 'samp.events'
local key = require 'vkeys'

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end

    sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat", -1)
    sampRegisterChatCommand('autoeat', AutoEat)

    AutoEatStatus = false
end

function AutoEat(parm)
    if type(tonumber(parm)) == 'number' then
        anim = string.match(parm, '(%d+)')
    else
        anim = false
    end

    if AutoEatStatus then
        AutoEatStatus = false
        sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat {F51111}OFF", -1)
    else
        AutoEatStatus = true
        sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat {33EA0D}ON", -1)
    end
end

function sampev.onDisplayGameText(style, time, text)
    if AutoEatStatus then
        if text:find('You are hungry!') or text:find('You are very hungry!') then
            sampSendChat('/jmeat')
        end
        if anim then
            lua_thread.create(function()
                wait(1337)
                setVirtualKeyDown(key.VK_RETURN, true)
                wait(10)
                setVirtualKeyDown(key.VK_RETURN, false)
                wait(2228)
                sampSendChat('/anim ' .. anim)
            end)
        end
    end
end

Lua:
require 'lib.moonloader'
local sampev = require 'samp.events'
local key = require 'vkeys'

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end

    sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat", -1)
    sampRegisterChatCommand('autoeat', AutoEat)

    AutoEatStatus = false
end

function AutoEat(parm)
    if type(tonumber(parm)) == 'number' then
        anim = string.match(parm, '(%d+)')
    else
        anim = false
    end

    if AutoEatStatus then
        AutoEatStatus = false
        sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat {F51111}OFF", -1)
    else
        AutoEatStatus = true
        sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat {33EA0D}ON", -1)
    end
end

function sampev.onDisplayGameText(style, time, text)
    if AutoEatStatus then
        if text:find('You are hungry!') or text:find('You are very hungry!') then
            sampSendChat('/jmeat')
        end
        if anim then
            lua_thread.create(function()
                wait(1337)
                setVirtualKeyDown(key.VK_RETURN, true)
                wait(10)
                setVirtualKeyDown(key.VK_RETURN, false)
                wait(2228)
                sampSendChat('/anim ' .. anim)
            end)
        end
    end
end
Чтото типо этого

Строка 15361 еда через время
Строка 20420 еда через надпись
 
Последнее редактирование:

Kaban Bunya

Известный
Автор темы
791
282
Lua:
require 'lib.moonloader'
local sampev = require 'samp.events'
local key = require 'vkeys'

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end

    sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat", -1)
    sampRegisterChatCommand('autoeat', AutoEat)

    AutoEatStatus = false
end

function AutoEat(parm)
    if type(tonumber(parm)) == 'number' then
        anim = string.match(parm, '(%d+)')
    else
        anim = false
    end

    if AutoEatStatus then
        AutoEatStatus = false
        sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat {F51111}OFF", -1)
    else
        AutoEatStatus = true
        sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat {33EA0D}ON", -1)
    end
end

function sampev.onDisplayGameText(style, time, text)
    if AutoEatStatus then
        if text:find('You are hungry!') or text:find('You are very hungry!') then
            sampSendChat('/jmeat')
        end
        if anim then
            lua_thread.create(function()
                wait(1337)
                setVirtualKeyDown(key.VK_RETURN, true)
                wait(10)
                setVirtualKeyDown(key.VK_RETURN, false)
                wait(2228)
                sampSendChat('/anim ' .. anim)
            end)
        end
    end
end


Чтото типо этого

Строка 15361
Я вроде не говорил, что не знаю как реализовать это, я сказал про то что времени, чтобы ввести всё, что предлагают не хватает.

Lua:
require 'lib.moonloader'
local sampev = require 'samp.events'
local key = require 'vkeys'

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end

    sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat", -1)
    sampRegisterChatCommand('autoeat', AutoEat)

    AutoEatStatus = false
end

function AutoEat(parm)
    if type(tonumber(parm)) == 'number' then
        anim = string.match(parm, '(%d+)')
    else
        anim = false
    end

    if AutoEatStatus then
        AutoEatStatus = false
        sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat {F51111}OFF", -1)
    else
        AutoEatStatus = true
        sampAddChatMessage("{7B68EE}[LUK] {ffffff}AutoEat {33EA0D}ON", -1)
    end
end

function sampev.onDisplayGameText(style, time, text)
    if AutoEatStatus then
        if text:find('You are hungry!') or text:find('You are very hungry!') then
            sampSendChat('/jmeat')
        end
        if anim then
            lua_thread.create(function()
                wait(1337)
                setVirtualKeyDown(key.VK_RETURN, true)
                wait(10)
                setVirtualKeyDown(key.VK_RETURN, false)
                wait(2228)
                sampSendChat('/anim ' .. anim)
            end)
        end
    end
end


Чтото типо этого

Строка 15361 еда через время
Строка 20420 еда через надпись
Введу, если выполню план по обнове раньше времени и останется время, чтобы еще идеи ввести.
 
Последнее редактирование:
  • Нравится
Реакции: Fredvim

Mattyl

Новичок
4
0
Привет, перестал работать( вот лог
[14:36:33.161513] (system) Session started.
[14:36:33.161513] (debug) Module handle: 70660000

MoonLoader v.025-beta loaded.
Developers: FYP, hnnssy, EvgeN 1137

Copyright (c) 2016, BlastHack Team
https://www.blast.hk/moonloader/

[14:36:33.161513] (info) Working directory: C:\Games\ARIZONA GAMES\bin\Arizona\moonloader
[14:36:33.161513] (debug) FP Control: 0009001F
[14:36:33.161513] (debug) Game: GTA SA 1.0.0.0 US
[14:36:33.161513] (system) Installing pre-game hooks...
[14:36:33.161513] (system) Hooks installed.
[14:36:33.975584] (debug) Initializing opcode handler table
[14:36:33.975584] (debug) package.path = C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?\init.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?\init.lua;.\?.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?.luac;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?\init.luac;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?.luac;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?\init.luac;.\?.luac
[14:36:33.975584] (debug) package.cpath = C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?.dll;
[14:36:33.975584] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\ARZCatcher.lua'...
[14:36:33.975584] (debug) New script: 0CFD9884
[14:36:33.984584] (debug) Add thread 07BDEE9D to SCM-thread queue
[14:36:33.986584] (system) ARZCatcher: Loaded successfully.
[14:36:33.986584] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Central Cleaner(FINAL) (1).lua'...
[14:36:33.986584] (debug) New script: 0CFDCCDC
[14:36:34.010659] (system) Central Cleaner(FINAL): Loaded successfully.
[14:36:34.010659] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\cottonlinenbot-Cracked.luac'...
[14:36:34.010659] (debug) New script: 0903EC44
[14:36:34.011659] (system) cottonlinenbot-Cracked.luac: Script terminated. (0903EC44)
[14:36:34.011659] (error) C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\cottonlinenbot-Cracked.luac: cannot load incompatible bytecode
[14:36:34.011659] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\imgui_notf.lua'...
[14:36:34.011659] (debug) New script: 0903EC44
[14:36:34.022659] (system) imgui_notf.lua: Loaded successfully.
[14:36:34.022659] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\MiningTool2.0 (1).lua'...
[14:36:34.022659] (debug) New script: 0903EDEC
[14:36:34.034660] (system) MiningTool2.0 (1).lua: Loaded successfully.
[14:36:34.034660] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Monopoly 3.3.17.lua'...
[14:36:34.034660] (debug) New script: 0CFE00AC
[14:36:34.091663] (system) Monopoly 3.3.17.lua: Script terminated. (0CFE00AC)
[14:36:34.092664] (error) ...ARIZONA GAMES\bin\Arizona\moonloader\Monopoly 3.3.17.lua:18064: unexpected symbol near ';'
[14:36:34.092664] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Palatka - Arizona RP.luac'...
[14:36:34.092664] (debug) New script: 0CFE00AC
[14:36:34.093663] (system) Palatka - Arizona RP.luac: Script terminated. (0CFE00AC)
[14:36:34.093663] (error) C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Palatka - Arizona RP.luac: cannot load incompatible bytecode
[14:36:34.093663] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\scriptManager.lua'...
[14:36:34.093663] (debug) New script: 0CFE00AC
[14:36:34.099664] (system) ScriptManager: Loaded successfully.
[14:36:34.099664] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\SF Integration.lua'...
[14:36:34.099664] (debug) New script: 0DFD24E4
[14:36:34.104664] (system) SF Integration: Loaded successfully.
[14:36:34.104664] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\wfalt final 1.0.lua'...
[14:36:34.104664] (debug) New script: 0DFD268C
[14:36:34.114665] (system) wfalt final 1.0.lua: Loaded successfully.
[14:36:36.036995] (system) Installing post-load hooks...
[14:36:36.036995] (system) Hooks installed.
[14:36:36.038995] (debug) Add thread 1443031D to SCM-thread queue
[14:36:40.795670] (debug) Add thread 1442F415 to SCM-thread queue
[14:36:40.796669] (debug) Add thread 143C3F6D to SCM-thread queue
[14:36:40.796669] (debug) Add thread 143C568D to SCM-thread queue
[14:36:40.797675] (debug) Add thread 14440FA5 to SCM-thread queue
[14:36:40.839692] (debug) Add thread 144427ED to SCM-thread queue
 

Fredvim

Участник
41
3
Привет, перестал работать( вот лог
[14:36:33.161513] (system) Session started.
[14:36:33.161513] (debug) Module handle: 70660000

MoonLoader v.025-beta loaded.
Developers: FYP, hnnssy, EvgeN 1137

Copyright (c) 2016, BlastHack Team

[14:36:33.161513] (info) Working directory: C:\Games\ARIZONA GAMES\bin\Arizona\moonloader
[14:36:33.161513] (debug) FP Control: 0009001F
[14:36:33.161513] (debug) Game: GTA SA 1.0.0.0 US
[14:36:33.161513] (system) Installing pre-game hooks...
[14:36:33.161513] (system) Hooks installed.
[14:36:33.975584] (debug) Initializing opcode handler table
[14:36:33.975584] (debug) package.path = C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?\init.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?\init.lua;.\?.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?.luac;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?\init.luac;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?.luac;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?\init.luac;.\?.luac
[14:36:33.975584] (debug) package.cpath = C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?.dll;
[14:36:33.975584] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\ARZCatcher.lua'...
[14:36:33.975584] (debug) New script: 0CFD9884
[14:36:33.984584] (debug) Add thread 07BDEE9D to SCM-thread queue
[14:36:33.986584] (system) ARZCatcher: Loaded successfully.
[14:36:33.986584] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Central Cleaner(FINAL) (1).lua'...
[14:36:33.986584] (debug) New script: 0CFDCCDC
[14:36:34.010659] (system) Central Cleaner(FINAL): Loaded successfully.
[14:36:34.010659] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\cottonlinenbot-Cracked.luac'...
[14:36:34.010659] (debug) New script: 0903EC44
[14:36:34.011659] (system) cottonlinenbot-Cracked.luac: Script terminated. (0903EC44)
[14:36:34.011659] (error) C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\cottonlinenbot-Cracked.luac: cannot load incompatible bytecode
[14:36:34.011659] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\imgui_notf.lua'...
[14:36:34.011659] (debug) New script: 0903EC44
[14:36:34.022659] (system) imgui_notf.lua: Loaded successfully.
[14:36:34.022659] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\MiningTool2.0 (1).lua'...
[14:36:34.022659] (debug) New script: 0903EDEC
[14:36:34.034660] (system) MiningTool2.0 (1).lua: Loaded successfully.
[14:36:34.034660] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Monopoly 3.3.17.lua'...
[14:36:34.034660] (debug) New script: 0CFE00AC
[14:36:34.091663] (system) Monopoly 3.3.17.lua: Script terminated. (0CFE00AC)
[14:36:34.092664] (error) ...ARIZONA GAMES\bin\Arizona\moonloader\Monopoly 3.3.17.lua:18064: unexpected symbol near ';'
[14:36:34.092664] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Palatka - Arizona RP.luac'...
[14:36:34.092664] (debug) New script: 0CFE00AC
[14:36:34.093663] (system) Palatka - Arizona RP.luac: Script terminated. (0CFE00AC)
[14:36:34.093663] (error) C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Palatka - Arizona RP.luac: cannot load incompatible bytecode
[14:36:34.093663] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\scriptManager.lua'...
[14:36:34.093663] (debug) New script: 0CFE00AC
[14:36:34.099664] (system) ScriptManager: Loaded successfully.
[14:36:34.099664] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\SF Integration.lua'...
[14:36:34.099664] (debug) New script: 0DFD24E4
[14:36:34.104664] (system) SF Integration: Loaded successfully.
[14:36:34.104664] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\wfalt final 1.0.lua'...
[14:36:34.104664] (debug) New script: 0DFD268C
[14:36:34.114665] (system) wfalt final 1.0.lua: Loaded successfully.
[14:36:36.036995] (system) Installing post-load hooks...
[14:36:36.036995] (system) Hooks installed.
[14:36:36.038995] (debug) Add thread 1443031D to SCM-thread queue
[14:36:40.795670] (debug) Add thread 1442F415 to SCM-thread queue
[14:36:40.796669] (debug) Add thread 143C3F6D to SCM-thread queue
[14:36:40.796669] (debug) Add thread 143C568D to SCM-thread queue
[14:36:40.797675] (debug) Add thread 14440FA5 to SCM-thread queue
[14:36:40.839692] (debug) Add thread 144427ED to SCM-thread queue
Убери счетчик собраного льна и хлопка и ставь бота, уменя так же юыло
 

Kaban Bunya

Известный
Автор темы
791
282
Привет, перестал работать( вот лог
[14:36:33.161513] (system) Session started.
[14:36:33.161513] (debug) Module handle: 70660000

MoonLoader v.025-beta loaded.
Developers: FYP, hnnssy, EvgeN 1137

Copyright (c) 2016, BlastHack Team

[14:36:33.161513] (info) Working directory: C:\Games\ARIZONA GAMES\bin\Arizona\moonloader
[14:36:33.161513] (debug) FP Control: 0009001F
[14:36:33.161513] (debug) Game: GTA SA 1.0.0.0 US
[14:36:33.161513] (system) Installing pre-game hooks...
[14:36:33.161513] (system) Hooks installed.
[14:36:33.975584] (debug) Initializing opcode handler table
[14:36:33.975584] (debug) package.path = C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?\init.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?\init.lua;.\?.lua;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?.luac;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?\init.luac;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?.luac;C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\?\init.luac;.\?.luac
[14:36:33.975584] (debug) package.cpath = C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\lib\?.dll;
[14:36:33.975584] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\ARZCatcher.lua'...
[14:36:33.975584] (debug) New script: 0CFD9884
[14:36:33.984584] (debug) Add thread 07BDEE9D to SCM-thread queue
[14:36:33.986584] (system) ARZCatcher: Loaded successfully.
[14:36:33.986584] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Central Cleaner(FINAL) (1).lua'...
[14:36:33.986584] (debug) New script: 0CFDCCDC
[14:36:34.010659] (system) Central Cleaner(FINAL): Loaded successfully.
[14:36:34.010659] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\cottonlinenbot-Cracked.luac'...
[14:36:34.010659] (debug) New script: 0903EC44
[14:36:34.011659] (system) cottonlinenbot-Cracked.luac: Script terminated. (0903EC44)
[14:36:34.011659] (error) C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\cottonlinenbot-Cracked.luac: cannot load incompatible bytecode
[14:36:34.011659] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\imgui_notf.lua'...
[14:36:34.011659] (debug) New script: 0903EC44
[14:36:34.022659] (system) imgui_notf.lua: Loaded successfully.
[14:36:34.022659] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\MiningTool2.0 (1).lua'...
[14:36:34.022659] (debug) New script: 0903EDEC
[14:36:34.034660] (system) MiningTool2.0 (1).lua: Loaded successfully.
[14:36:34.034660] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Monopoly 3.3.17.lua'...
[14:36:34.034660] (debug) New script: 0CFE00AC
[14:36:34.091663] (system) Monopoly 3.3.17.lua: Script terminated. (0CFE00AC)
[14:36:34.092664] (error) ...ARIZONA GAMES\bin\Arizona\moonloader\Monopoly 3.3.17.lua:18064: unexpected symbol near ';'
[14:36:34.092664] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Palatka - Arizona RP.luac'...
[14:36:34.092664] (debug) New script: 0CFE00AC
[14:36:34.093663] (system) Palatka - Arizona RP.luac: Script terminated. (0CFE00AC)
[14:36:34.093663] (error) C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\Palatka - Arizona RP.luac: cannot load incompatible bytecode
[14:36:34.093663] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\scriptManager.lua'...
[14:36:34.093663] (debug) New script: 0CFE00AC
[14:36:34.099664] (system) ScriptManager: Loaded successfully.
[14:36:34.099664] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\SF Integration.lua'...
[14:36:34.099664] (debug) New script: 0DFD24E4
[14:36:34.104664] (system) SF Integration: Loaded successfully.
[14:36:34.104664] (system) Loading script 'C:\Games\ARIZONA GAMES\bin\Arizona\moonloader\wfalt final 1.0.lua'...
[14:36:34.104664] (debug) New script: 0DFD268C
[14:36:34.114665] (system) wfalt final 1.0.lua: Loaded successfully.
[14:36:36.036995] (system) Installing post-load hooks...
[14:36:36.036995] (system) Hooks installed.
[14:36:36.038995] (debug) Add thread 1443031D to SCM-thread queue
[14:36:40.795670] (debug) Add thread 1442F415 to SCM-thread queue
[14:36:40.796669] (debug) Add thread 143C3F6D to SCM-thread queue
[14:36:40.796669] (debug) Add thread 143C568D to SCM-thread queue
[14:36:40.797675] (debug) Add thread 14440FA5 to SCM-thread queue
[14:36:40.839692] (debug) Add thread 144427ED to SCM-thread queue
Поставь мунлоадер версии 0.26
 

Kaban Bunya

Известный
Автор темы
791
282
1649171268615.png
 

Fredvim

Участник
41
3
Последнее редактирование:

Kaban Bunya

Известный
Автор темы
791
282
Столько люди идей предлагали и ты предлагал а в итоге фпс ап :( мдэ...

Идея №я уже запутался
Добавь авто оплату всех домов, не как пункт в банке, а чтобы прокликивал все дома и оплачивал налоги и комуналку
Это не всё обновление, просто показываю, что делаю. В тем более это сделано больше для ЦР. С такой штукой меня не крашило от слова совсем. Без каждые 30 минут.

Столько люди идей предлагали и ты предлагал а в итоге фпс ап :( мдэ...

Идея №я уже запутался
Добавь авто оплату всех домов, не как пункт в банке, а чтобы прокликивал все дома и оплачивал налоги и комуналку
Авто-оплата уже есть в Банк Меню
 

Fbianchi.exe

Известный
607
192
Исправь плис баг, когда включаешь мигалки на ПД мотике - на экране просходит пиздец.
Проверил без скрипта, дело именно в нём.
Видео - тык.