Jump to content

Ted2 menu error: no visible @interface for 'Menu' declares the selector


mkaf7

11 posts in this topic

Recommended Posts

Hi @Ted2 can you help me with this error?

bash-5.0# sh "make.sh"
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS14.1.sdk/...
[1;31m> [1;3;39mMaking all for tweak adamzzz…[m
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS14.1.sdk/...
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS14.1.sdk/...
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS14.1.sdk/...
[0;33m==> [1;33mWarning:[m No files to link. Please check your Makefile! Make sure you set adamzzz_FILES (or similar variables)
[0;33m==> [1;39mLinking tweak adamzzz (arm64)…[m
[0;34m==> [1;39mGenerating debug symbols for adamzzz…[m
warning: no debug symbols in executable (-arch arm64)
[0;34m==> [1;39mStripping adamzzz (arm64)…[m
strip: warning: changes being made to the file will invalidate the code signature in: /private/var/mobile/Documents/adamzzz/.theos/obj/arm64/adamzzz.dylib
[0;34m==> [1;39mMerging tweak adamzzz…[m
[0;34m==> [1;39mSigning adamzzz…[m
/var/theos/bin/fakeroot.sh: Option -/private/var/mobile/Documents/adamzzz/.theos/fakeroot unrecognized.
make: *** [/var/theos/makefiles/stage.mk:18: before-stage] Error 1
bash-5.0# 

Updated by mkaf7
Link to comment
Share on other sites

10 minutes ago, Ted2 said:

You need to use my template as a theos NIC template.

i did bro look the new error 

bash-5.0# sh "make.sh"
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS11.2.sdk/...
[1;31m> [1;3;39mMaking all for tweak hshs…[m
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS11.2.sdk/...
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS11.2.sdk/...
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS11.2.sdk/...
[0;32m==> [1;39mCompiling KittyMemory/KittyArm64.cpp (arm64)…[m
[0;31m==> [1;39mPreprocessing Tweak.xm…[m
Tweak.xm:85: error: %ctor does not make sense inside a block
make[3]: *** [/var/theos/makefiles/instance/rules.mk:271: /private/var/mobile/hshs/.theos/obj/arm64/Tweak.xm.mm] Error 255
make[3]: *** Waiting for unfinished jobs....
[0;32m==> [1;39mCompiling KittyMemory/MemoryBackup.cpp (arm64)…[m
[0;32m==> [1;39mCompiling KittyMemory/MemoryPatch.cpp (arm64)…[m
[0;32m==> [1;39mCompiling KittyMemory/KittyUtils.cpp (arm64)…[m
[0;32m==> [1;39mCompiling KittyMemory/KittyMemory.cpp (arm64)…[m
[0;32m==> [1;39mCompiling Menu.mm (arm64)…[m
rm /private/var/mobile/hshs/.theos/obj/arm64/Tweak.xm.mm
make[2]: *** [/var/theos/makefiles/instance/library.mk:52: /private/var/mobile/hshs/.theos/obj/arm64/hshs.dylib] Error 2
make[1]: *** [/var/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2
make: *** [/var/theos/makefiles/master/rules.mk:119: hshs.all.tweak.variables] Error 2
bash-5.0# 

 

i changed the sdk to 14.1 same error

Link to comment
Share on other sites

5 minutes ago, mkaf7 said:

i did bro look the new error 

bash-5.0# sh "make.sh"
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS11.2.sdk/...
[1;31m> [1;3;39mMaking all for tweak hshs…[m
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS11.2.sdk/...
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS11.2.sdk/...
===> Setting SYSROOT to /var/theos/sdks/iPhoneOS11.2.sdk/...
[0;32m==> [1;39mCompiling KittyMemory/KittyArm64.cpp (arm64)…[m
[0;31m==> [1;39mPreprocessing Tweak.xm…[m
Tweak.xm:85: error: %ctor does not make sense inside a block
make[3]: *** [/var/theos/makefiles/instance/rules.mk:271: /private/var/mobile/hshs/.theos/obj/arm64/Tweak.xm.mm] Error 255
make[3]: *** Waiting for unfinished jobs....
[0;32m==> [1;39mCompiling KittyMemory/MemoryBackup.cpp (arm64)…[m
[0;32m==> [1;39mCompiling KittyMemory/MemoryPatch.cpp (arm64)…[m
[0;32m==> [1;39mCompiling KittyMemory/KittyUtils.cpp (arm64)…[m
[0;32m==> [1;39mCompiling KittyMemory/KittyMemory.cpp (arm64)…[m
[0;32m==> [1;39mCompiling Menu.mm (arm64)…[m
rm /private/var/mobile/hshs/.theos/obj/arm64/Tweak.xm.mm
make[2]: *** [/var/theos/makefiles/instance/library.mk:52: /private/var/mobile/hshs/.theos/obj/arm64/hshs.dylib] Error 2
make[1]: *** [/var/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2
make: *** [/var/theos/makefiles/master/rules.mk:119: hshs.all.tweak.variables] Error 2
bash-5.0# 

 

i changed the sdk to 14.1 same error

Your tweak.xm is broken,  you forgot to close something.

Link to comment
Share on other sites

3 minutes ago, Ted2 said:

Your tweak.xm is broken,  you forgot to close something.

#import "Macros.h"

/***********************************************************
  INSIDE THE FUNCTION BELOW YOU'LL HAVE TO ADD YOUR SWITCHES!
***********************************************************/

float(*old_GetGhostMaxSpeed)(void *this_);
float GetGhostMaxSpeed(void *this_) {

if([switches isSwitchOn:@"SpeedHack"]) {
return old_GetGhostMaxSpeed * [[switches getValueFromSwitch:@"SpeedHack"] floatValue];
return old_GetGhostMaxSpeed(this_);
}



void setup() {

  //public int GetGhostMaxSpeed(); // RVA: 0x18DFFF4 Offset: 0x18DFFF4
  HOOK(0x18DFFF4, GetGhostMaxSpeed, old_GetGhostMaxSpeed);

/* [switches addOffsetSwitch:@"kill"
              description:@"kill"
                offsets:{0x123456}
                bytes:{0x00008052C0035FD6}]; */


  // Slider Switch - used in hooking
  [switches addSliderSwitch:@"SpeedHack"
              description:@"Speed Hack"
                minimumValue:0.5
                  maximumValue:100
                    sliderColor:UIColorFromHex(0xBD0000)];

}

void setupMenu() {

  // If a game uses a framework as base executable, you can enter the name here.
  // For example: UnityFramework, in that case you have to replace NULL with "UnityFramework" (note the quotes)
  [menu setFrameworkName:"UnityFramework"];

  menu = [[Menu alloc]
initWithTitle:@"test"
            titleColor:[UIColor whiteColor]
            titleFont:@"AppleColorEmoji"
            credits:@"test menu message"
            headerColor:UIColorFromHex(0x8C198C)
            switchOffColor:UIColorFromHex(0x000000)
            switchOnColor:UIColorFromHex(0x8C198C)
            switchTitleFont:@"AppleColorEmoji"
            switchTitleColor:[UIColor whiteColor]
            infoButtonColor:UIColorFromHex(0xFFFFFF)
            maxVisibleSwitches:3 // Less than max -> blank space, more than max -> you can scroll!
            menuWidth:250
            menuIcon:@"iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAIu0lEQVRoge1aS4wlZRX+zvmr7q17+/ZrunsezEwIM1EDRDEIPhY+4oKIEkk0ujC6IhrUKEhijFFXbkgUYuKCjawMmkiMgUQSNoZEXBgfDGEhOIA6DENPd09Pd993Vf3nc1FVt+vevt1zuxnjhMzZdN2qv87/f+d9TrWQxDuB9P99gKtF14Fca3QdyLVG14Fca/SOARLs9uDUZ74EIENq2a0bhLzPyM+ocyckCCIIQmX2XAQQApSdvIqUq6XcS8nuCwASCdOU5v2KijwvIr8w4C9lHq///lcHAzJCX6HZT1xUXarNzr1VmZraRBisikhlzFoiByMooRKANgyzEJKQsSVJ2O90ZuONja+mvf59ovpzAN8DEE9ywCsCMeAh0B6pLxy6EC0tvqDOqRidgQogHVosklU8qVeSIChiAEmBABpVEhAQUgyZVpQARFSrVV+vRau12dmL3bW1w731yw9S5BSALwLoHxiICEDiU6A9Uj+89O/a4tIlmoXmM0MrnMvya6oQnX6l/cKrN3Q2W4Fopg8RiEJEAKmdOLxVveXG5cH7ZVMjIZ4Oqq5+9OiKOhd3VlY/K6oPA/jOgYEAiGj2aDQ3t15bWLxk5sPyQxtdrcr2uYvTNzSmZx74/tcRBA4ucAgChzAI8M/X3sDDjzw+W7npyCXUo3icmRWAYD6MFhc30jhejjc2HxDVXwL4+4GAkLzLBcHNtcWFMwQHTg0MO7YUzg4g7vTcjadP8957P7kjGk4fmqcHSMtcqBREhgRTaIrCsLa4+FbSah+l9/cD+NpeQHYNvzTeHU432q5a8WIcLFYAzA9PDh+Gqdd6NM7/gW63C4AQlYFBFfzK1wNhGeEqFQsbU5eN/MReIPYEAuBUUK9fAhCYbG9gIy+Vr33qtVarjufmLTMbDMfngt+odvLfQVivr0Fw9MBAVKSuYQhwO/4Xm1F2ghES8F4r9dqYTAKYGYRg4RmjPjYKBsgtrBJSIbtIZwIgFFCBkCBHtSBjmkqSAm9aq9XH8yOzyCT527KdSAtwmt8fNjkJd3LbSbuH39JhR9FavmF2LRDJA6k3mZqqjeXnvQdAaCU0BM7DqJKBExEBAJo3BYfNd0d03C+QcSQqpAhhlMJIhCYkhalXn3qdaYwHkqYpOp2uXH7xtUUzA9PUMfHKNNUwCGTmPSfXdWmuRaMMMj72duKJgAi2VW4ARJVstqPWy+cWOlvtQIxCM4WZCCGqIvFm283OTO30aACNRp0fuO1mNz89faRWq6LRmML09BTm5hp45ewb+txfzwRzH72tLZpl4uIMVjrHgYAQmXlJAUrB5j/OLbx77tDCXV+4B1FUQa0WoV6LEEVVRFEVYTXkrbecHivED935Xn3mqcdUdefj3zz9HJ/945+FZgJ1JoBcyScnBjIECJmQer2+vO/2W/ntb315N43vKrtxAArq9fqAyoDBaHCZhK64vmAsItDQWbPZ3ucWVyaSYwPKfiZu+wKuTtntT1RV74vM54ac9SiyX20Ae/lIbiRlqahz1vkfABHhdmlS7LVPHnv6CCX3j2IT59iPk31usZOMQELAE/ACNBPAyTaIUVCT0J4JUZiBUOR/nVq/H6PHzPnT/DBpnsRiAgsBUBsjzg0P/HYD6BqQGBB7IPGAVICX1hNUJMuswPhy5cBAylQkpyBQXuqk/NmF7F6SAN4bvDckZmgmHvedrOCOObeDx/raBp987CnrbzUFvb5Yr0ff78MnMTpvXpBwfiZmoAZPKWvibSfEggZ5BEA420g2XzmPZ37wY2OawicxLElgcUyfJGg2W/axH33D3XH3R3bs397YwNlfP+GlVum4epSqU5PAGQLHYCFKqydONEmgEMFV9xHmIDT1Gh5daFo/ubD62ksRnPPilBI4qnOGirK98uahteXVsTVK4AJU6lOIbj990S3NdeBtpJ63Qdkz1GRdDSDljFokqeqp45cqp4+PWQy686vTzWZrbPmrKqIiMO8lSL3QbNBilXuScvdIXMWiUQn4Ehh4PxBUsWExfBBV6+6SMFW1aJGzUpeleVdpXTmr7ydq7aU9GtC3vMYe1xWW+wkRpQRqza3W2ITsVCmSzYvGSXlc/85swNTHBEl+VyBGqvX7gQCDMDLaVwN5iM4HES4Mrdkar5HQZUMhMivTR7Uw7jACMIn7ofHK9e+upqWApu32POfnL5JZt7tbr16QqwR+bauDszHQ9sCWB9oGdBxwfqsqBkFADhJtMY0pgynzJ+B9qzO3y3aTARHV9aTVnkq73SCs1WhmUtjv6HCuSJiVSmDLl1t49MV1xM0We5tb6De3kG5tonP+DaT9voSV0Mjs/OPEvO2AyqTTDeN2e15UNw4MBMAL3uye7srq8fDkif+ISDhq30OASIRHF7pbZ15Pn//m/erTxNIkNvNmGohH4Cy66VjLzTV6NMu7y+33UeIlIhCztLe6ciON6lRefTtAnhLVH8ad9mJrebk3dezYRVUNzIbj/2BM5E3dwkw7uvNd/7J2NwwqlTSqhh6V0ETFxKmJKmlZX15+v+x3qkqSafut5SNxu7PoVGHA028HyN9E8LRC7+1tbJ5gmlbqhw9fcFHks70p5Ih5EAhmpzuYn0E2WMgLcwIE82m8ZN7OUtMGQFUIwnyv5zorKyf7rfZhlzVjawAePzCQPE48BODDTvVI0mof3uyem602GmuuMbUVVqsxRaooYVFs55y9aCTyEcZ+Gverabs9EzebS/BWyTUBBR5UYPnAQHJ6nYLPk3hSVY+BrHY3N49jc/O4U80+bUg2mytC9Gi2ZikysbTGC+CysE0hSDPNhxyAapHhvwvgiQlkM1E58ycFPm7A7wwwdYpc5YMBI5DlkmKgPZSdS/eKNeX7QogBKqoQ1eK9MxTcA+Cnk4AAJp9rnVXgcwA+aMSnBXg/BYeEpc8BpU9po1opm9IQyNxB8t8dBV4G8AcAz2KCjztlkuv/VHON0XUg1xq9Y4D8FybHQFj5BlmMAAAAAElFTkSuQmCC"];    

menuButton:@"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"]; 

    setup();
}

// If the menu button doesn't show up; Change the timer to a bigger amount.
static void didFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef info) {
  timer(15) {
    SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];

    [alert addButton: @"❤️Continue ->❤️" actionBlock: ^(void) {
      timer(2) {
        setupMenu();
      });
    }];    

    alert.shouldDismissOnTapOutside = NO;
    alert.customViewColor = [UIColor purpleColor];  
    alert.showAnimationType = SCLAlertViewShowAnimationSlideInFromCenter;   
    
    [alert showSuccess: nil
            subTitle:@"test mode menu" 
              closeButtonTitle:nil
                duration:99999999.0f];
  });
}

%ctor {
  CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), NULL, &didFinishLaunching, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
}

This is my tweak.xm

Link to comment
Share on other sites

4 minutes ago, mkaf7 said:
#import "Macros.h"

/***********************************************************
  INSIDE THE FUNCTION BELOW YOU'LL HAVE TO ADD YOUR SWITCHES!
***********************************************************/

float(*old_GetGhostMaxSpeed)(void *this_);
float GetGhostMaxSpeed(void *this_) {

if([switches isSwitchOn:@"SpeedHack"]) {
return old_GetGhostMaxSpeed * [[switches getValueFromSwitch:@"SpeedHack"] floatValue];
return old_GetGhostMaxSpeed(this_);
}



void setup() {

  //public int GetGhostMaxSpeed(); // RVA: 0x18DFFF4 Offset: 0x18DFFF4
  HOOK(0x18DFFF4, GetGhostMaxSpeed, old_GetGhostMaxSpeed);

/* [switches addOffsetSwitch:@"kill"
              description:@"kill"
                offsets:{0x123456}
                bytes:{0x00008052C0035FD6}]; */


  // Slider Switch - used in hooking
  [switches addSliderSwitch:@"SpeedHack"
              description:@"Speed Hack"
                minimumValue:0.5
                  maximumValue:100
                    sliderColor:UIColorFromHex(0xBD0000)];

}

void setupMenu() {

  // If a game uses a framework as base executable, you can enter the name here.
  // For example: UnityFramework, in that case you have to replace NULL with "UnityFramework" (note the quotes)
  [menu setFrameworkName:"UnityFramework"];

  menu = [[Menu alloc]
initWithTitle:@"test"
            titleColor:[UIColor whiteColor]
            titleFont:@"AppleColorEmoji"
            credits:@"test menu message"
            headerColor:UIColorFromHex(0x8C198C)
            switchOffColor:UIColorFromHex(0x000000)
            switchOnColor:UIColorFromHex(0x8C198C)
            switchTitleFont:@"AppleColorEmoji"
            switchTitleColor:[UIColor whiteColor]
            infoButtonColor:UIColorFromHex(0xFFFFFF)
            maxVisibleSwitches:3 // Less than max -> blank space, more than max -> you can scroll!
            menuWidth:250
            menuIcon:@"iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAIu0lEQVRoge1aS4wlZRX+zvmr7q17+/ZrunsezEwIM1EDRDEIPhY+4oKIEkk0ujC6IhrUKEhijFFXbkgUYuKCjawMmkiMgUQSNoZEXBgfDGEhOIA6DENPd09Pd993Vf3nc1FVt+vevt1zuxnjhMzZdN2qv87/f+d9TrWQxDuB9P99gKtF14Fca3QdyLVG14Fca/SOARLs9uDUZ74EIENq2a0bhLzPyM+ocyckCCIIQmX2XAQQApSdvIqUq6XcS8nuCwASCdOU5v2KijwvIr8w4C9lHq///lcHAzJCX6HZT1xUXarNzr1VmZraRBisikhlzFoiByMooRKANgyzEJKQsSVJ2O90ZuONja+mvf59ovpzAN8DEE9ywCsCMeAh0B6pLxy6EC0tvqDOqRidgQogHVosklU8qVeSIChiAEmBABpVEhAQUgyZVpQARFSrVV+vRau12dmL3bW1w731yw9S5BSALwLoHxiICEDiU6A9Uj+89O/a4tIlmoXmM0MrnMvya6oQnX6l/cKrN3Q2W4Fopg8RiEJEAKmdOLxVveXG5cH7ZVMjIZ4Oqq5+9OiKOhd3VlY/K6oPA/jOgYEAiGj2aDQ3t15bWLxk5sPyQxtdrcr2uYvTNzSmZx74/tcRBA4ucAgChzAI8M/X3sDDjzw+W7npyCXUo3icmRWAYD6MFhc30jhejjc2HxDVXwL4+4GAkLzLBcHNtcWFMwQHTg0MO7YUzg4g7vTcjadP8957P7kjGk4fmqcHSMtcqBREhgRTaIrCsLa4+FbSah+l9/cD+NpeQHYNvzTeHU432q5a8WIcLFYAzA9PDh+Gqdd6NM7/gW63C4AQlYFBFfzK1wNhGeEqFQsbU5eN/MReIPYEAuBUUK9fAhCYbG9gIy+Vr33qtVarjufmLTMbDMfngt+odvLfQVivr0Fw9MBAVKSuYQhwO/4Xm1F2ghES8F4r9dqYTAKYGYRg4RmjPjYKBsgtrBJSIbtIZwIgFFCBkCBHtSBjmkqSAm9aq9XH8yOzyCT527KdSAtwmt8fNjkJd3LbSbuH39JhR9FavmF2LRDJA6k3mZqqjeXnvQdAaCU0BM7DqJKBExEBAJo3BYfNd0d03C+QcSQqpAhhlMJIhCYkhalXn3qdaYwHkqYpOp2uXH7xtUUzA9PUMfHKNNUwCGTmPSfXdWmuRaMMMj72duKJgAi2VW4ARJVstqPWy+cWOlvtQIxCM4WZCCGqIvFm283OTO30aACNRp0fuO1mNz89faRWq6LRmML09BTm5hp45ewb+txfzwRzH72tLZpl4uIMVjrHgYAQmXlJAUrB5j/OLbx77tDCXV+4B1FUQa0WoV6LEEVVRFEVYTXkrbecHivED935Xn3mqcdUdefj3zz9HJ/945+FZgJ1JoBcyScnBjIECJmQer2+vO/2W/ntb315N43vKrtxAArq9fqAyoDBaHCZhK64vmAsItDQWbPZ3ucWVyaSYwPKfiZu+wKuTtntT1RV74vM54ac9SiyX20Ae/lIbiRlqahz1vkfABHhdmlS7LVPHnv6CCX3j2IT59iPk31usZOMQELAE/ACNBPAyTaIUVCT0J4JUZiBUOR/nVq/H6PHzPnT/DBpnsRiAgsBUBsjzg0P/HYD6BqQGBB7IPGAVICX1hNUJMuswPhy5cBAylQkpyBQXuqk/NmF7F6SAN4bvDckZmgmHvedrOCOObeDx/raBp987CnrbzUFvb5Yr0ff78MnMTpvXpBwfiZmoAZPKWvibSfEggZ5BEA420g2XzmPZ37wY2OawicxLElgcUyfJGg2W/axH33D3XH3R3bs397YwNlfP+GlVum4epSqU5PAGQLHYCFKqydONEmgEMFV9xHmIDT1Gh5daFo/ubD62ksRnPPilBI4qnOGirK98uahteXVsTVK4AJU6lOIbj990S3NdeBtpJ63Qdkz1GRdDSDljFokqeqp45cqp4+PWQy686vTzWZrbPmrKqIiMO8lSL3QbNBilXuScvdIXMWiUQn4Ehh4PxBUsWExfBBV6+6SMFW1aJGzUpeleVdpXTmr7ydq7aU9GtC3vMYe1xWW+wkRpQRqza3W2ITsVCmSzYvGSXlc/85swNTHBEl+VyBGqvX7gQCDMDLaVwN5iM4HES4Mrdkar5HQZUMhMivTR7Uw7jACMIn7ofHK9e+upqWApu32POfnL5JZt7tbr16QqwR+bauDszHQ9sCWB9oGdBxwfqsqBkFADhJtMY0pgynzJ+B9qzO3y3aTARHV9aTVnkq73SCs1WhmUtjv6HCuSJiVSmDLl1t49MV1xM0We5tb6De3kG5tonP+DaT9voSV0Mjs/OPEvO2AyqTTDeN2e15UNw4MBMAL3uye7srq8fDkif+ISDhq30OASIRHF7pbZ15Pn//m/erTxNIkNvNmGohH4Cy66VjLzTV6NMu7y+33UeIlIhCztLe6ciON6lRefTtAnhLVH8ad9mJrebk3dezYRVUNzIbj/2BM5E3dwkw7uvNd/7J2NwwqlTSqhh6V0ETFxKmJKmlZX15+v+x3qkqSafut5SNxu7PoVGHA028HyN9E8LRC7+1tbJ5gmlbqhw9fcFHks70p5Ih5EAhmpzuYn0E2WMgLcwIE82m8ZN7OUtMGQFUIwnyv5zorKyf7rfZhlzVjawAePzCQPE48BODDTvVI0mof3uyem602GmuuMbUVVqsxRaooYVFs55y9aCTyEcZ+Gverabs9EzebS/BWyTUBBR5UYPnAQHJ6nYLPk3hSVY+BrHY3N49jc/O4U80+bUg2mytC9Gi2ZikysbTGC+CysE0hSDPNhxyAapHhvwvgiQlkM1E58ycFPm7A7wwwdYpc5YMBI5DlkmKgPZSdS/eKNeX7QogBKqoQ1eK9MxTcA+Cnk4AAJp9rnVXgcwA+aMSnBXg/BYeEpc8BpU9po1opm9IQyNxB8t8dBV4G8AcAz2KCjztlkuv/VHON0XUg1xq9Y4D8FybHQFj5BlmMAAAAAElFTkSuQmCC"];    

menuButton:@"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"]; 

    setup();
}

// If the menu button doesn't show up; Change the timer to a bigger amount.
static void didFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef info) {
  timer(15) {
    SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];

    [alert addButton: @"❤️Continue ->❤️" actionBlock: ^(void) {
      timer(2) {
        setupMenu();
      });
    }];    

    alert.shouldDismissOnTapOutside = NO;
    alert.customViewColor = [UIColor purpleColor];  
    alert.showAnimationType = SCLAlertViewShowAnimationSlideInFromCenter;   
    
    [alert showSuccess: nil
            subTitle:@"test mode menu" 
              closeButtonTitle:nil
                duration:99999999.0f];
  });
}

%ctor {
  CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), NULL, &didFinishLaunching, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
}

This is my tweak.xm

Your hook function is written wrong, it should be;
 

float(*old_GetGhostMaxSpeed)(void *this_);
float GetGhostMaxSpeed(void *this_) {
  if([switches isSwitchOn:@"SpeedHack"]) {
    return old_GetGhostMaxSpeed * [[switches getValueFromSwitch:@"SpeedHack"] floatValue];
  } // Note I'm closing the if statement here!!!!!!!!!!!!!
  return old_GetGhostMaxSpeed(this_);
}

 

  • Like 1
Link to comment
Share on other sites

5 minutes ago, Ted2 said:

Your hook function is written wrong, it should be;
 

float(*old_GetGhostMaxSpeed)(void *this_);
float GetGhostMaxSpeed(void *this_) {
  if([switches isSwitchOn:@"SpeedHack"]) {
    return old_GetGhostMaxSpeed * [[switches getValueFromSwitch:@"SpeedHack"] floatValue];
  } // Note I'm closing the if statement here!!!!!!!!!!!!!
  return old_GetGhostMaxSpeed(this_);
}

 

the same error 

%ctor
Link to comment
Share on other sites

You're not getting the same error if you've replaced your old hook with the one I provided. I just tested this on my machine.

However, your tweak.xm is full of errors. It's probably best if you go online to learn the basics of programming syntax.
Alternatively, for every change you make to the tweak.xm, do a "make package", so you know exactly when you did something wrong. Because right now, there are multiple errors in multiple places.

Link to comment
Share on other sites

3 minutes ago, Ted2 said:

You're not getting the same error if you've replaced your old hook with the one I provided. I just tested this on my machine.

However, your tweak.xm is full of errors. It's probably best if you go online to learn the basics of programming syntax.
Alternatively, for every change you make to the tweak.xm, do a "make package", so you know exactly when you did something wrong. Because right now, there are multiple errors in multiple places.

okay f****ck it 

thanks for you advice mate

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below. For more information, please read our Posting Guidelines.
Reply to this topic... Posting Guidelines

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Our picks

    • Crown Rumble: Idle Kingdoms v1.5.8 +3 Cheats
      Modded/Hacked App: Crown Rumble: Idle Kingdoms By AlohaFactory
      Bundle ID: kr.co.alohacorp.idlekingdoms
      iTunes Store Link: https://apps.apple.com/us/app/crown-rumble-idle-kingdoms/id6470770555?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier
      - Unlimited Currencies -> Increase When Use


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 5 replies
    • Fortias Saga: Action Adventure v1.0.39 +5 Cheats
      Modded/Hacked App: Fortias Saga: Action Adventure By ONDI TECHNOLOGY JOINT STOCK COMPANY
      Bundle ID: com.ondi.fortias.saga
      iTunes Store Link: https://apps.apple.com/us/app/fortias-saga-action-adventure/id6475805032?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier
      - Shards & Items Multiplier*
      - Freeze Resources
      - No Ads
      *Turn Off When You Get Enough So It Don't Go Negative


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Agree
      • 91 replies
    • Astral Survivor v1.0.105 +2 Cheats
      Modded/Hacked App: Astral Survivor By Firedog Creative Company Limited
      Bundle ID: com.firedogstudio.astralsurvivor
      iTunes Store Link: https://apps.apple.com/us/app/astral-survivor/id6475716603?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Never Die
      - Unlimited Gold


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 2 replies
    • Love Island: The Game v1.5.1 +2 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Love Island: The Game By Fusebox Games
      Bundle ID: com.fuseboxgames.loveisland2
      iTunes Store Link: https://apps.apple.com/us/app/love-island-the-game/id1522699215
       

      Hack Features:
      - Unlimited Gems -> Earn or spend some.
      - Unlimited Tickets -> Earn or spend some.


      Jailbreak required hack(s): https://iosgods.com/topic/169224-love-island-the-game-all-versions-2-cheats-unlimited-currencies/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 131 replies
    • Love Island: The Game v1.5.1 +2 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Love Island: The Game By Fusebox Games
      Bundle ID: com.fuseboxgames.loveisland2
      iTunes Store Link: https://apps.apple.com/us/app/love-island-the-game/id1522699215
       

      Hack Features:
      - Unlimited Gems -> Earn or spend some.
      - Unlimited Tickets -> Earn or spend some.


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 41 replies
    • Grow Shooter : Survivor RPG v1.0.18 +2 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Grow Shooter : Survivor RPG By DongSik Moon
      Bundle ID: com.eastmoon.growshooterlive
      iTunes Store Link: https://apps.apple.com/us/app/grow-shooter-survivor-rpg/id6480362458?uo=4


      Hack Features:
      - Unlimited Coins -> Will not decrease.
      - Unlimited Rubies -> Will not decrease.


      Jailbreak required hack(s): [Mod Menu Hack] Grow Shooter : Survivor RPG v1.0.10 +4 Cheats [ Damage ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 25 replies
    • Grow Shooter : Survivor RPG v1.0.18 +4 Cheats [ Damage ]
      Modded/Hacked App: Grow Shooter : Survivor RPG By DongSik Moon
      Bundle ID: com.eastmoon.growshooterlive
      iTunes Store Link: https://apps.apple.com/us/app/grow-shooter-survivor-rpg/id6480362458?uo=4


      Hack Features:
      - Damage Multiplier
      - Move Speed Multiplier
      - Unlimited Coins -> Will not decrease.
      - Unlimited Rubies -> Will not decrease.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Grow Shooter : Survivor RPG v1.0.10 +2 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 30 replies
    • Supermarket Manager Simulator v1.0.47 +3 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Supermarket Manager Simulator By Digital Melody S.A.
      Bundle ID: com.dmg.supermarket.simulator
      iTunes Store Link: https://apps.apple.com/us/app/supermarket-manager-simulator/id6479982512?uo=4


      Hack Features:
      - Unlimited Cash -> Will increase instead of decrease.
      - Unlimited Energy -> Will increase instead of decrease.
      - No Ads


      Jailbreak required hack(s): [Mod Menu Hack] Supermarket Manager Simulator v1.0.6 +3 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 78 replies
    • Supermarket Manager Simulator v1.0.47 +3 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Supermarket Manager Simulator By Digital Melody S.A.
      Bundle ID: com.dmg.supermarket.simulator
      iTunes Store Link: https://apps.apple.com/us/app/supermarket-manager-simulator/id6479982512?uo=4


      Hack Features:
      - Unlimited Cash -> Will increase instead of decrease.
      - Unlimited Energy -> Will increase instead of decrease.
      -- No Ads


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Supermarket Manager Simulator v1.0.6 +3 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 31 replies
    • Good Pizza, Great Pizza v5.13.0 +2 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Good Pizza, Great Pizza By TAPBLAZE, LLC
      Bundle ID: com.tapblaze.pizzabusiness
      iTunes Store Link: https://apps.apple.com/us/app/good-pizza-great-pizza/id911121200?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Diamonds


      Jailbreak required hack(s): [Mod Menu Hack] Good Pizza, Great Pizza v5.5.6 +2 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 78 replies
    • Good Pizza, Great Pizza v5.13.0 +2 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Good Pizza, Great Pizza By TAPBLAZE, LLC
      Bundle ID: com.tapblaze.pizzabusiness
      iTunes Store Link: https://apps.apple.com/us/app/good-pizza-great-pizza/id911121200?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Diamonds


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Good Pizza, Great Pizza v5.5.6 +2 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 51 replies
    • Soul Light: Idle RPG War v71 +4 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Soul Light: Idle RPG War By ACTIONFIT Ltd.
      Bundle ID: com.idle.afk.soul.light.rpg
      iTunes Store Link: https://apps.apple.com/us/app/soul-light-idle-rpg-war/id6469476819?uo=4


      Hack Features:
      - God Mode
      - Unlimited Gold -> Will increase instead of decrease.
      - Unlimited Emerald -> Will increase instead of decrease.
      - Unlimited Dungeon Keys


      Jailbreak required hack(s): [Mod Menu Hack] Soul Light: Idle RPG War v1.6.2 +4 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 52 replies
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines