- 1
- 0
ы:
MoonLoader v.027.0-preview3 loaded.
Developers: FYP, hnnssy, EvgeN 1137
Copyright (c) 2016, BlastHack Team
https://www.blast.hk/moonloader/
[12:57:42.069577] (debug) Module handle: 0x61010000
[12:57:42.069577] (info) Working directory: C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader
[12:57:42.069577] (debug) FP Control: 0x0009001F
[12:57:42.069577] (debug) Windows: 10.0.26100 2
[12:57:42.069577] (debug) Game: GTA SA 1.0 US 'HoodLum'
[12:57:42.069577] (system) Installing pre-game hooks...
[12:57:42.074290] (system) Hooks installed.
[12:57:44.045244] (debug) Opcode handler table: 0x6392cca0
[12:57:44.045244] (debug) LUA_PATH = C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\libstd\?.lua;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\libstd\?\init.lua;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?.lua;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?.luac;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?\init.lua;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?\init.luac
[12:57:44.045244] (debug) LUA_CPATH = C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\libstd\?.dll;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?.dll
[12:57:44.048750] (system) Loading script "C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\wateresp.lua"... (id:1)
[12:57:44.052776] (system) GardenAimLine: Loaded successfully.
[12:58:01.958029] (system) Installing post-load hooks...
[12:58:01.959042] (system) Hooks installed.
[12:59:07.685674] (system) Unloading...
[12:59:07.686706] (system) GardenAimLine: Script terminated. (id:1)
[12:59:07.731626] (system) Session terminated.
из за чего не понятно помогите пожалуйста
ы:MoonLoader v.027.0-preview3 loaded. Developers: FYP, hnnssy, EvgeN 1137 Copyright (c) 2016, BlastHack Team https://www.blast.hk/moonloader/ [12:57:42.069577] (debug) Module handle: 0x61010000 [12:57:42.069577] (info) Working directory: C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader [12:57:42.069577] (debug) FP Control: 0x0009001F [12:57:42.069577] (debug) Windows: 10.0.26100 2 [12:57:42.069577] (debug) Game: GTA SA 1.0 US 'HoodLum' [12:57:42.069577] (system) Installing pre-game hooks... [12:57:42.074290] (system) Hooks installed. [12:57:44.045244] (debug) Opcode handler table: 0x6392cca0 [12:57:44.045244] (debug) LUA_PATH = C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\libstd\?.lua;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\libstd\?\init.lua;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?.lua;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?.luac;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?\init.lua;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?\init.luac [12:57:44.045244] (debug) LUA_CPATH = C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\libstd\?.dll;C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\lib\?.dll [12:57:44.048750] (system) Loading script "C:\Program Files (x86)\RADMIR Games\RADMIR CRMP\moonloader\wateresp.lua"... (id:1) [12:57:44.052776] (system) GardenAimLine: Loaded successfully. [12:58:01.958029] (system) Installing post-load hooks... [12:58:01.959042] (system) Hooks installed. [12:59:07.685674] (system) Unloading... [12:59:07.686706] (system) GardenAimLine: Script terminated. (id:1) [12:59:07.731626] (system) Session terminated.
из за чего не понятно помогите пожалуйста
скрипт:
script_name("GardenAimLine")
script_author("You")
require "lib.moonloader"
local enabled = false
local toggleKey = 0x6E -- NUMPAD DELETE
function main()
while not isSampAvailable() do wait(100) end
sampAddChatMessage("{00FF00}[GardenHelper] {FFFFFF}Загружен.", -1)
while true do
wait(0)
if isKeyJustPressed(toggleKey) then
enabled = not enabled
if enabled then
sampAddChatMessage("{00FF00}[GardenHelper] {FFFFFF}Функция активирована.", -1)
else
sampAddChatMessage("{FF0000}[GardenHelper] {FFFFFF}Функция отключена.", -1)
end
end
if enabled then
safeDrawLine()
end
end
end
function safeDrawLine()
local px, py, pz = getCharCoordinates(PLAYER_PED)
local camX, camY, camZ = getActiveCameraCoordinates()
for id = 0, 1024 do -- уменьшили диапазон
if sampIs3dTextDefined(id) then
local result, text, color, x, y, z = pcall(sampGet3dTextInfoById, id)
if result and text then
text = text:gsub("{%x%x%x%x%x%x}", "")
if text:find("Требуется полив") then
local dist = getDistanceBetweenCoords3d(px, py, pz, x, y, z)
if dist < 20.0 then
renderDrawLine3D(
camX, camY, camZ,
x, y, z,
2.0,
0xFF00FF00
)
break -- нашли один — выходим
end
end
end
end
end
end