From 331e24be4096152067778dbb0d3866079db99dac Mon Sep 17 00:00:00 2001 From: nguyentrungkien6699254-creator Date: Thu, 25 Jun 2026 23:33:00 +0700 Subject: [PATCH] =?UTF-8?q?AntiBan+loop.lua=20=C4=90=E1=BB=8Bnh=20vi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Vip --- AntiBan+loop.lua | 148 ------------------------------------ "\304\220\341\273\213nh vi" | 38 +++++++++ 2 files changed, 38 insertions(+), 148 deletions(-) delete mode 100644 AntiBan+loop.lua create mode 100644 "\304\220\341\273\213nh vi" diff --git a/AntiBan+loop.lua b/AntiBan+loop.lua deleted file mode 100644 index d157e64..0000000 --- a/AntiBan+loop.lua +++ /dev/null @@ -1,148 +0,0 @@ - - -HOME = 1 -function HOME() - MN = gg.choice({ - "|[ 1 ]| ", - "|[ 2 ]| ", - " خروج. ", - }, nil, " NS") - if MN == nil then - else - if MN == 1 then Antib() end - if MN == 2 then Check() end - if MN == 3 then - CLOSE() - end - end - PUBGMH = -1 -end - - - function Antib() -gg.clearResults() -gg.setRanges(gg.REGION_C_ALLOC) -gg.searchNumber("2.2958874e-41;16384D;16384D;16384D;16384D;16384D::24", gg.TYPE_FLOAT, false, gg.SGN_EQUAL, 0, -1) -if gg.getResultCount() == 0 then -gg.alert("لا تخف ي صغيري ، الانتي باند مفعل ، الان فعل رقم 2 لتفعيل التشيكر ..") -else -gg.searchNumber("2.2958874e-41", gg.TYPE_FLOAT, false, gg.SGN_EQUAL, 0, -1) -resultsCount = gg.getResultCount() -results = gg.getResults(resultsCount) -for x = 1, resultsCount do - - - -gg.addListItems({ -[1] = { -address = results[x].address + 0, -flags = 4, -freeze = true, -value = 70037 -} -}) - -gg.addListItems({ -[1] = { -address = results[x].address + 4, -flags = 4, -freeze = true, -value = 70037 -} -}) - -gg.addListItems({ -[1] = { -address = results[x].address + 8, -flags = 4, -freeze = true, -value = 70037 -} -}) - -gg.addListItems({ -[1] = { -address = results[x].address + 12, -flags = 4, -freeze = true, -value = 70037 -} -}) - -gg.addListItems({ -[1] = { -address = results[x].address + 16, -flags = 4, -freeze = true, -value = 70037 -} -}) - -gg.addListItems({ -[1] = { -address = results[x].address + 20, -flags = 4, -freeze = true, -value = 70032 -} -}) - -gg.addListItems({ -[1] = { -address = results[x].address + 100, -flags = 4, -freeze = true, -value = 16384 -} -}) - -end -gg.toast("Memory Antiban Success") -gg.clearResults() -end - end - - - - - -function Check() -while true do -gg.clearResults() -gg.setRanges(gg.REGION_C_ALLOC) -gg.searchNumber("2.2958874e-41;16384D;16384D;16384D;16384D;16384D::24", gg.TYPE_FLOAT, false, gg.SGN_EQUAL, 0, -1) -if gg.getResultCount() == 0 then - -else -gg.clearResults() - gg.setRanges(8) - gg.searchNumber("1.3132476e-38;1.956023e-35;1.1754945e-37::9", 16, false, 536870912, 0, -1) - if gg.getResultCount() == 0 then - else - gg.searchNumber("1.1754945e-37", 16, false, 536870912, 0, -1) - RRelog1 = gg.getResults(21) - gg.editAll("0", 16) - gg.clearResults() -end -end -end -end - - - function CLOSE() - print("@SpamShmr") -print("....") - gg.skipRestoreState() - os.exit() - gg.setVisible(true) -end -while true do - if gg.isVisible(true) then -PUBGMH = 1 -gg.setVisible(false) - end - gg.clearResults() - if PUBGMH == 1 then -HOME() - end -end \ No newline at end of file diff --git "a/\304\220\341\273\213nh vi" "b/\304\220\341\273\213nh vi" new file mode 100644 index 0000000..c0fe2e4 --- /dev/null +++ "b/\304\220\341\273\213nh vi" @@ -0,0 +1,38 @@ +void DrawSkeleton(Entity entity, Matrix4x4 camMatrix, ImDrawListPtr drawList, float screenWidth, float screenHeight) +{ + uint colorBone = ColorToUint32(Color.Red); + float boneRadius = 3.0f; + + Vector3[] bones = new Vector3[] + { + entity.head, + entity.Spine, + entity.root, + entity.LeftShoulder, + entity.RightShoulder, + entity.LeftElbow, + entity.RightElbow, + entity.LeftWrist, + entity.RightWrist, + entity.LeftHand, + entity.RightHand, + entity.LeftHip, + entity.RightHip, + entity.LeftKnee, + entity.RightKnee, + entity.LeftAnkle, + entity.RightAnkle, + entity.LeftFoot, + entity.RightFoot + }; + + foreach (Vector3 bone in bones) + { + Vector2 screenPos = Core.W2S(bone, camMatrix); + + if (screenPos.X > 0 && screenPos.X < screenWidth && screenPos.Y > 0 && screenPos.Y < screenHeight) + { + drawList.AddCircleFilled(screenPos, boneRadius, colorBone); + } + } + }