- 72
- 4
Я не могу вшить Wall Hack, не знаю как, помогите
И код WallHack:
Буду благодарен если поможете
Up
Up!
Скрипт[Без кода WallHack]:
local imgui = require 'mimgui' --
local encoding = require 'encoding' --
encoding.default = 'CP1251' --
local u8 = encoding.UTF8 --
local new = imgui.new --
local WinState = new.bool() --
local checkboxone = new.bool()
imgui.OnFrame(function() return WinState[0] end,
function(player)
imgui.SetNextWindowPos(imgui.ImVec2(500,500), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5)) --
imgui.SetNextWindowSize(imgui.ImVec2(245, 280), imgui.Cond.FirstUseEver) --
imgui.ShowStyleEditor()
imgui.Begin(u8'Учим китайский день 1', WinState) --
imgui.Checkbox(u8'Шок Контент', checkboxone)
imgui.End()
end
)
function main()
sampRegisterChatCommand('cm', function() WinState[0] = not WinState[0] end) --
wait(-1)
end
И код WallHack:
Скрипт[Сам ВаллХак):
local Frame = imgui.OnFrame(
function() return true end,
function(self)
local DL = imgui.GetBackgroundDrawList()
local pedX, pedY, pedZ = getCharCoordinates(PLAYER_PED)
local pedR_X, pedR_Y = convert3DCoordsToScreen(pedX, pedY, pedZ)
for k, v in ipairs(getAllChars()) do
if isCharOnScreen(v) then
local x, y, z = getCharCoordinates(v)
local rX, rY = convert3DCoordsToScreen(x, y, z)
DL:AddLine(imgui.ImVec2(pedR_X, pedR_Y), imgui.ImVec2(rX, rY), 0xffffffFF, 3)
end
end
end
)
function main()
while not isSampAvailable() do wait(0) end
wait(-1)
end
Up
Up!
АпЯ не могу вшить Wall Hack, не знаю как, помогите
Скрипт[Без кода WallHack]:local imgui = require 'mimgui' -- local encoding = require 'encoding' -- encoding.default = 'CP1251' -- local u8 = encoding.UTF8 -- local new = imgui.new -- local WinState = new.bool() -- local checkboxone = new.bool() imgui.OnFrame(function() return WinState[0] end, function(player) imgui.SetNextWindowPos(imgui.ImVec2(500,500), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5)) -- imgui.SetNextWindowSize(imgui.ImVec2(245, 280), imgui.Cond.FirstUseEver) -- imgui.ShowStyleEditor() imgui.Begin(u8'Учим китайский день 1', WinState) -- imgui.Checkbox(u8'Шок Контент', checkboxone) imgui.End() end ) function main() sampRegisterChatCommand('cm', function() WinState[0] = not WinState[0] end) -- wait(-1) end
И код WallHack:
Буду благодарен если поможетеСкрипт[Сам ВаллХак):local Frame = imgui.OnFrame( function() return true end, function(self) local DL = imgui.GetBackgroundDrawList() local pedX, pedY, pedZ = getCharCoordinates(PLAYER_PED) local pedR_X, pedR_Y = convert3DCoordsToScreen(pedX, pedY, pedZ) for k, v in ipairs(getAllChars()) do if isCharOnScreen(v) then local x, y, z = getCharCoordinates(v) local rX, rY = convert3DCoordsToScreen(x, y, z) DL:AddLine(imgui.ImVec2(pedR_X, pedR_Y), imgui.ImVec2(rX, rY), 0xffffffFF, 3) end end end ) function main() while not isSampAvailable() do wait(0) end wait(-1) end
Up
Up!
Последнее редактирование: