This media is not supported in your browser
VIEW IN TELEGRAM
Forwarded from βΝSHIKOT BHAIο£Ώ
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
Testing new aimkill + New underkill π
π₯3π€£1
This media is not supported in your browser
VIEW IN TELEGRAM
Forwarded from βΝSHIKOT BHAI π©ππͺ
This media is not supported in your browser
VIEW IN TELEGRAM
MakeFile :
INSTALL_TARGET_PROCESSES = Settings
$(TWEAK_NAME)_FILES = ImGuiDrawView.mm Tweak.xm device.mm β¦
βββββββββββββββββ
ImGuiDrawView.mm :
#include "device.h"
DeviceConfig *cfg = [DeviceConfig shared];
static bool init = false;
static char nameBuf[64];
static char verBuf[32];
if (!init) {
snprintf(nameBuf, sizeof(nameBuf), "%s", [cfg.fakeName UTF8String]);
snprintf(verBuf, sizeof(verBuf), "%s", [cfg.fakeVersion UTF8String]);
init = true;
}
ImGui::Separator();
ImGui::Text("Device Spoofer");
bool enable = cfg.enableSpoof;
if (ImGui::Checkbox("Enable Spoof", &enable)) {
cfg.enableSpoof = enable;
}
if (ImGui::InputText("Device Name", nameBuf, sizeof(nameBuf))) {
cfg.fakeName = [NSString stringWithUTF8String:nameBuf];
}
if (ImGui::InputText("iOS Version", verBuf, sizeof(verBuf))) {
cfg.fakeVersion = [NSString stringWithUTF8String:verBuf];
}
INSTALL_TARGET_PROCESSES = Settings
$(TWEAK_NAME)_FILES = ImGuiDrawView.mm Tweak.xm device.mm β¦
βββββββββββββββββ
ImGuiDrawView.mm :
#include "device.h"
DeviceConfig *cfg = [DeviceConfig shared];
static bool init = false;
static char nameBuf[64];
static char verBuf[32];
if (!init) {
snprintf(nameBuf, sizeof(nameBuf), "%s", [cfg.fakeName UTF8String]);
snprintf(verBuf, sizeof(verBuf), "%s", [cfg.fakeVersion UTF8String]);
init = true;
}
ImGui::Separator();
ImGui::Text("Device Spoofer");
bool enable = cfg.enableSpoof;
if (ImGui::Checkbox("Enable Spoof", &enable)) {
cfg.enableSpoof = enable;
}
if (ImGui::InputText("Device Name", nameBuf, sizeof(nameBuf))) {
cfg.fakeName = [NSString stringWithUTF8String:nameBuf];
}
if (ImGui::InputText("iOS Version", verBuf, sizeof(verBuf))) {
cfg.fakeVersion = [NSString stringWithUTF8String:verBuf];
}