AIDECMODs
964 subscribers
91 photos
38 videos
30 files
20 links
Download Telegram
PUBG*m v4.4.0 64Bit
Vehicles Health Offsets

#define VEHICLE_COMMON_COMP    0xC00   // STExtraVehicleBase -> VehicleCommonComponent*
#define VEHICLE_HP_MAX 0x350 // VehicleCommonComponent::HPMax
#define VEHICLE_HP 0x354 // VehicleCommonComponent::HP
โค4๐Ÿ”ฅ1๐Ÿคฉ1๐Ÿคฎ1
Forwarded from MiniBoo
๐Ÿ”ฅ3๐Ÿ˜‡2๐Ÿ˜1
Forwarded from MiniBoo
โค4๐Ÿ”ฅ1๐Ÿ†1
Meawcheats.sh
3.7 MB
MEAW Kernal Cheats (v4.4.0)
Support arm64-v8a
Support GL,KR,TW,VNG,BGMI
Support Root only

Features:-
Esp Players
Esp Items
Esp Vechiles
Esp LootBoxes.
Well we will fix them soon
Skeleton (Bugs)
Wide view (Bugs)
Touch Aimbot 3.0 (Bugs)
Support Hide streaming
(While streaming You will see in your real Screen all visuals but in streaming peoples wont see.)
(Support 30-144fps)
Render: Vulkan / OpenGLE

Fixed: Esp Blinking & Flink

About ban = Its Super safe โœ…


Paste in: /data/local/tmp/
Give Permission 777
( Click me ) if you don't understand

Guide:
Execute the Meawcheats.sh at first before launch game.Wait 30sec. Then open game and play.

Regards,
@Aidecmods
โšก4โค1๐Ÿ”ฅ1๐Ÿ†1
Non-root (Container) v3.0 coming soon
โค4๐Ÿ†2๐ŸŽ‰1
Crashes are fixed, but thereโ€™s still one issue in the container: sometimes visuals disappear for 40โ€“55 seconds and then return. This is better than a crash. I can fix it using Anogs, but I avoid hooking, patching, or writing memory since that can lead to a ban. Writing to Anogs is safer, though still slightly risky. Once this disappearance issue is fixed, Iโ€™ll release the APK.

Thank you โค๏ธ

Please share and support us for more free cheats.

Regards,
@Aidecmods
๐Ÿคฉ4โค2๐Ÿ”ฅ2๐Ÿ˜˜2
Need tester before final release v3.0
โค4๐ŸŽ‰1๐Ÿ˜1
Happy Eid Mubarak to everyone โค๏ธ
โค6๐Ÿฅฐ1๐Ÿ˜‡1
Meawcheats (Container)-v3.0.apk
8.8 MB
1.) All Crashes has been fixed
2.) Fixed Major Lag Issues

Cheat Features:
ESP All Players
Esp Item's (AR only)
Esp All Vechiles
Draw Crosshair +


Key = ? No login, so there is no need for any key.

Paste the OBB file here:
/storage/emulated/0/Android/data/com.LJNB66/Android/obb/com.tencent.ig/
OR
Download the APK with the OBB already included.

Game Version: v4.4.0
Cheat Version: v3.0
Support: arm64-v8a
Support: Nonroot | Root
System: Container
Support: GL, KR, TW, VNG, BGMINDIA

Set-up video: Watch me
Download: Original apk & obb

Share your feedbacks to me @nomadoliur

Note:
(No feedbacks = no more updates)

Regards,
@Aidecmods
@Meawcheat
โค4๐Ÿ‘1๐Ÿ”ฅ1
Android 15 and 16 are still crashing. Wait for the new version; it will support all versions from 7 to 16+

Stay tuned โค๏ธ
๐Ÿ”ฅ6โค1๐Ÿฅฐ1
Update Root ?
Update Nonroot?
โค7๐Ÿคฉ1๐Ÿคช1
Items with all real icons ?
Vehicles with all real icons ?

If yes give reactions
โค5๐Ÿ”ฅ3๐Ÿ˜1
This media is not supported in your browser
VIEW IN TELEGRAM
POOPGm v4.4.0 
Pointers chains
arm64-v8a

uintptr_t PawnController      = 0x04E8;
uintptr_t ControlRotation     = 0x04E0;
uintptr_t PlayerCameraManager = 0x450;
uintptr_t CameraCache         = 0x1F10;
uintptr_t POV_Location        = 0x10;
๐Ÿ”ฅ5โค1๐Ÿ˜1
Aimbot.h
7.6 KB
POOPGm Aim codes for Internal Pointer base source

For Aim latest pointer chain offsets ( click me )
โšก3๐Ÿคฉ2๐ŸŒš2
InitUInput();
if (!g_uiReady || g_uifd < 0) return;

// Start point: right side of screen center (camera control zone)
float startX = screenW * 0.75f;
float startY = screenH * 0.5f;
float endX = startX + swipeX;
float endY = startY + swipeY;

// Clamp to screen
endX = std::max(0.f, std::min((float)screenW, endX));
endY = std::max(0.f, std::min((float)screenH, endY));

// Convert to uinput absolute coords (0-32767)
auto toAbs = [](float pos, int dim) -> int {
return (int)(pos / (float)dim * 32767.f);
};

int sx = toAbs(startX, screenW), sy = toAbs(startY, screenH);
int ex = toAbs(endX, screenW), ey = toAbs(endY, screenH);

// Touch down at start
SendEvent(g_uifd, EV_ABS, ABS_MT_TRACKING_ID, 99);
SendEvent(g_uifd, EV_ABS, ABS_MT_POSITION_X, sx);
SendEvent(g_uifd, EV_ABS, ABS_MT_POSITION_Y, sy);
SendEvent(g_uifd, EV_ABS, ABS_X, sx);
SendEvent(g_uifd, EV_ABS, ABS_Y, sy);
SendEvent(g_uifd, EV_KEY, BTN_TOUCH, 1);
SendEvent(g_uifd, EV_SYN, SYN_REPORT, 0);

// Move to end position
SendEvent(g_uifd, EV_ABS, ABS_MT_POSITION_X, ex);
SendEvent(g_uifd, EV_ABS, ABS_MT_POSITION_Y, ey);
SendEvent(g_uifd, EV_ABS, ABS_X, ex);
SendEvent(g_uifd, EV_ABS, ABS_Y, ey);
SendEvent(g_uifd, EV_SYN, SYN_REPORT, 0);

// Touch up
SendEvent(g_uifd, EV_ABS, ABS_MT_TRACKING_ID, -1);
SendEvent(g_uifd, EV_KEY, BTN_TOUCH, 0);
SendEvent(g_uifd, EV_SYN, SYN_REPORT, 0);
}


Works inside container so touch aimbot done for nonroot successfully โœ…
without reading memory or writing haha


I am the one who did touch aim for 1st in whole tg or GitHub for Internal cheats ... Also its imgui not java etc..
โค7๐Ÿ†2๐ŸŽƒ2
KernalLoader_3.0.apk
3.1 MB
1.) All Crashes has been fixed
2.) Fixed Major Lag Issues
3.) Fixed Blinking Issues

Cheat Features:
ESP All Players
Esp All Item's
Esp All Vechiles
Draw Crosshair +

Premium Features:
Touch Aimbot
Memory Functions

Game Version: v4.4.0
Cheat Version: v3.0
Support: arm64-v8a
Support: Root Only
System: Kernel Level
Support: GL, KR, TW, VNG, BGMINDIA


Download: Original apk & obb

Share your feedbacks to me @nomadoliur

Note:
(No feedbacks = no more updates)

Regards,
@Meawcheat
โค7๐Ÿ”ฅ1๐Ÿฅฐ1
Meawcheats_(v3).sh
3.5 MB
1.) All Crashes has been fixed
2.) Fixed Major Lag Issues
3.) Fixed Blinking Issues

Cheat Features:
ESP All Players
Esp All Item's
Esp All Vechiles
Draw Crosshair +

Premium Features:
Touch Aimbot
Memory Functions

Game Version: v4.4.0
Cheat Version: v3.0
Support: arm64-v8a
Support: Root Only
System: Kernel Level
Support: GL, KR, TW, VNG, BGMINDIA


Download: Original apk & obb

Share your feedbacks to me @nomadoliur

Note:
(No feedbacks = no more updates)

Regards,
@Meawcheat
โค4๐Ÿ”ฅ2๐Ÿ‘1
Island_6.4.2.apk
3.4 MB
Island_6.4.2.apk
๐Ÿ”ฅ4๐Ÿ‘1๐Ÿ‘Ž1๐Ÿ’ฉ1๐Ÿ–•1
island-master.zip
660 KB
โšก3๐Ÿ’ฉ2๐Ÿ”ฅ1