SHARE CODE 🇮🇩
الذهاب إلى القناة على Telegram
Owner: @kiwmodz3 INDONESIAN OPEN ADMIN DM ASALKAN SARING BERBAGI TOOLS DAN MENJALANI TES YANG SAYA BERIKAN DAN OPEN PARTNER ENGLISH OPEN ADMIN DM AS LONG AS YOU SHARE TOOLS AND TAKE THE TEST I GIVE AND OPEN PARTNER
إظهار المزيد1 544
المشتركون
-324 ساعات
-167 أيام
-4230 أيام
جاري تحميل البيانات...
القنوات المماثلة
سحابة العلامات
الإشارات الواردة والصادرة
---
---
---
---
---
---
جذب المشتركين
سبتمبر '26
سبتمبر '26
+2
في 0 قنوات
أغسطس '26
+46
في 1 قنوات
Get PRO
يوليو '26
+40
في 0 قنوات
Get PRO
يونيو '26
+231
في 2 قنوات
Get PRO
مايو '26
+79
في 1 قنوات
Get PRO
أبريل '26
+1
في 0 قنوات
Get PRO
مارس '26
+5
في 0 قنوات
Get PRO
فبراير '26
+26
في 1 قنوات
Get PRO
يناير '26
+24
في 0 قنوات
Get PRO
ديسمبر '25
+37
في 2 قنوات
Get PRO
نوفمبر '250
في 0 قنوات
Get PRO
أكتوبر '250
في 0 قنوات
Get PRO
سبتمبر '250
في 0 قنوات
Get PRO
أغسطس '250
في 0 قنوات
Get PRO
يوليو '250
في 1 قنوات
Get PRO
يونيو '250
في 0 قنوات
Get PRO
مايو '250
في 0 قنوات
Get PRO
أبريل '250
في 0 قنوات
Get PRO
مارس '25
+43
في 0 قنوات
Get PRO
فبراير '25
+80
في 0 قنوات
Get PRO
يناير '25
+296
في 3 قنوات
Get PRO
ديسمبر '24
+124
في 3 قنوات
Get PRO
نوفمبر '24
+148
في 3 قنوات
Get PRO
أكتوبر '24
+272
في 2 قنوات
Get PRO
سبتمبر '24
+843
في 4 قنوات
Get PRO
أغسطس '24
+755
في 2 قنوات
| التاريخ | نمو المشتركين | الإشارات | القنوات | |
| 11 سبتمبر | 0 | |||
| 10 سبتمبر | 0 | |||
| 09 سبتمبر | 0 | |||
| 08 سبتمبر | +1 | |||
| 07 سبتمبر | 0 | |||
| 06 سبتمبر | 0 | |||
| 05 سبتمبر | +1 | |||
| 04 سبتمبر | 0 | |||
| 03 سبتمبر | 0 | |||
| 02 سبتمبر | 0 | |||
| 01 سبتمبر | 0 |
منشورات القناة
| 2 | FREE AIMKILL PROJECT APK
https://www.mediafire.com/file/8mu27lee0w4x7bj/NX_AIMKILL_-_FINAL_%25281%2529.zip/file | 1 314 |
| 3 | https://vt.tiktok.com/ZS9hCFnCKPcAV-sVGwJ/
KIWMODZ EXE OPEN | 100 |
| 4 | https://vt.tiktok.com/ZS9hxFkSrVPuT-tqXke/
TES DAY TERAHIR | 136 |
| 5 | https://vt.tiktok.com/ZS9huEN55Ce26-P6zfx/
Test day 2 | 171 |
| 6 | https://vt.tiktok.com/ZS9ha1aS7epN2-tZFki/ | 209 |
| 7 | FLY EXTERNAL CODE
void RamaModzFly() {
static float g_flyGroundY = 0.0f;
//CREDIT @RAMA_MODZ
//CREDIT @RAMA_MODZ
static bool g_flyInit = false;
while (true) {
if (pPlayer.FlyHack && g_currentLocalPlayer != 0) {
uintptr_t rootPosAddr = GetRootPosAddr(g_currentLocalPlayer);
uintptr_t pelvisPosAddr = GetEnemyPosAddr(g_currentLocalPlayer);
if (rootPosAddr != 0) {
Vector3 currentPos = Read<Vector3>(rootPosAddr);
if (!g_flyInit) {
g_flyGroundY = currentPos.Y;
g_flyInit = true;
}
currentPos.Y = g_flyGroundY + 10.0f;
Write<Vector3>(rootPosAddr, currentPos);
Write<float>(rootPosAddr + 0xC, 1.0f);
if (pelvisPosAddr != 0) {
Write<Vector3>(pelvisPosAddr, currentPos);
Write<float>(pelvisPosAddr + 0xC, 1.0f);
}
uintptr_t physicalCCT = Read<uintptr_t>(g_currentLocalPlayer + 0x210);
if (physicalCCT != 0) {
Write<uint8_t>(physicalCCT + Offsets::IsGrounded, 1);
Write<uint8_t>(physicalCCT + Offsets::CurrentGroundState, 1);
Write<uint8_t>(physicalCCT + Offsets::LastGroundState, 1);
Write<Vector3>(physicalCCT + Offsets::Velocity, Vector3::Zero());
Write<float>(physicalCCT + Offsets::BHNEFIPKOMG, 0.0f);
}
}
Write<bool>(g_currentLocalPlayer + Offsets::InSnowSlideWayDashing, true);
} else {
if (g_flyInit) {
g_flyInit = false;
if (g_currentLocalPlayer != 0) {
Write<bool>(g_currentLocalPlayer + Offsets::InSnowSlideWayDashing, false);
}
}
}
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
}
OFFSET
//CREDIT @RAMA_MODZ
//CREDIT @RAMA_MODZ
uintptr_t IsGrounded = 0x11C;
uintptr_t CurrentGroundState = 0xD0;
uintptr_t LastGroundState = 0x110;
uintptr_t Velocity = 0xF0;
uintptr_t BHNEFIPKOMG = 0x24;
uintptr_t InSnowSlideWayDashing = 0x1EA0; | 737 |
| 8 | NightMode.h | 787 |
| 9 | لا يوجد نص... | 770 |
| 10 | PC LOGO
static void* (*orig_RamaModzPcLogo)(int, int, int, int, long long, void*, void*) = nullptr;
void* hook_RamaModzPcLogo(int arg1, int arg2, int arg3, int arg4, long long arg5, void* arg6, void* arg7) {
return nullptr;
}
DobbyHook((void*)Il2CppGetMethodOffset(OBFUSCATE("Assembly-CSharp.dll"), OBFUSCATE("ffantihack"), OBFUSCATE("PCNABJAFBDO"), OBFUSCATE("MPILMGHIPGJ"), 7), (void*)hook_RamaModzPcLogo, (void**)&orig_RamaModzPcLogo); | 664 |
| 11 | ─────────────────
➥ ZYGISK SRC UPDATE DONE
➥ FIX CRASH AND ADD FEATURE
➥ DEVELOPER: @RAMA_MODZ
─────────────────
➥ PASSWORD: TG@RAMA_MODZ
➥ DO NOT REMOVE CREDITS
───────────────── | 774 |
| 12 | لا يوجد نص... | 737 |
| 13 | ─────────────────
➥ ZYGISK SRC UPDATE DONE
➥ FIX CRASH AND ADD FEATURE
➥ DEVELOPER: @RAMA_MODZ
─────────────────
➥ PASSWORD: TG@RAMA_MODZ
➥ DO NOT REMOVE CREDITS
───────────────── | 3 |
| 14 | ─────────────────
➥ ZYGISK SRC UPDATE DONE
➥ FIX CRASH AND ADD FEATURE
➥ DEVELOPER: @RAMA_MODZ
─────────────────
➥ PASSWORD: TG@RAMA_MODZ
➥ DO NOT REMOVE CREDITS
───────────────── | 1 |
| 15 | ─────────────────
➥ ZYGISK SRC UPDATE DONE
➥ DEVELOPER: @RAMA_MODZ
─────────────────
➥ PASSWORD: TG@RAMA_MODZ
➥ DO NOT REMOVE CREDITS
───────────────── | 684 |
| 16 | لا يوجد نص... | 641 |
| 17 | freefire maxx india dump | 2 225 |
| 18 | FLY MAP | 1 076 |
| 19 | +2 free kordinat for telemap | 2 640 |
| 20 | free magnet android external | 3 796 |
