Jump to content

Taylor Meyer

Senior Member
  • Posts

    738
  • Joined

  • Last visited

Everything posted by Taylor Meyer

  1. i fixed or he fixed the error https://iosgods.com/topic/41600-another-compile-error-in-cygwin-theos/page-2 but then when i install DEB and enter game when it loads half way the game crashes here is my make file ARCHS = armv7 arm64 include $(THEOS)/makefiles/common.mk TWEAK_NAME = JetpackCheats JetpackCheats_FILES = Tweak.xm include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 SpringBoard" here is my tweak.xm #include <substrate.h> static bool missileCollision() { return FALSE; } static bool shopItemsPurchased() { return TRUE; } static void shopItemsPurchased2() { } static int getCurrency() { return 99999999; } static bool playerIsDead() { return FALSE; } static void missionMaxLevel() { } static bool slotTokenCollision() { return FALSE; } static bool playerIsImmune() { return TRUE; } static bool ObstacleColliding() { return FALSE; } %ctor{ MSHookFunction(MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPlayerER4Game"),(void*)missileCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"),(void*)shopItemsPurchased, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSuccessfulEv"),(void*)shopItemsPurchased2, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv"),(void*)getCurrency, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN6Player6IsDeadEv"),(void*)playerIsDead, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN14MissionManager15ReachedMaxLevelEv"),(void*)missionMaxLevel, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWithPlayerER4Game"),(void*)slotTokenCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv"),(void*)playerIsImmune, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithPlayerER4Game"),(void*)ObstacleColliding, NULL); }
  2. SOLVED i have no idea how i fixed it but i did
  3. same here i have same problem gosh dang it try snap + he put it the developer put out a update where it prevents DYLD (Dynamic Loader) lookups by developers im gonna try it when my account gets unlocked
  4. here is the tweak.xm #include <substrate.h> static bool missileCollision() { return FALSE; } static bool shopItemsPurchased() { return TRUE; } static void shopItemsPurchased2() { } static int getCurrency() { return 99999999; } static bool playerIsDead() { return FALSE; } static void missionMaxLevel() { } static bool slotTokenCollision() { return FALSE; } static bool playerIsImmune() { return TRUE; } static bool ObstacleColliding() { return FALSE; } %ctor { MSHookFunction(MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPlayerER4Game"),(void*)missileCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"),(void*)shopItemsPurchased, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSuccessfulEv"),(void*)shopItemsPurchased2, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv"),(void*)getCurrency, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN6Player6IsDeadEv"),(void*)playerIsDead, NULL); MSHookFunction(MSFindSymbol(NULL, " __ZN14MissionManager15ReachedMaxLevelEv"),(void*)missionMaxLevel, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWithPlayerER4Game"),(void*)slotTokenCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv"),(void*)playerIsImmune, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithPlayerER4Game"),(void*)ObstacleColliding, NULL);
  5. Tweak.xm:49:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPl... ^ Tweak.xm:51:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"... ^ Tweak.xm:53:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSucces... ^ Tweak.xm:55:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv")... ^ Tweak.xm:57:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN6Player6IsDeadEv")),(void... ^ Tweak.xm:59:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN14MissionManager15Reached... ^ Tweak.xm:61:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWith... ^ Tweak.xm:63:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv")),(v... ^ Tweak.xm:65:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithP... ^
  6. tried it is giving me this Tweak.xm:65: error: fell off the face of the planet when we found a '}'
  7. will try thanks so just put } at the end only reason why I ask is Amuyea said } //
  8. i messed around and i think i fixed it but i got this Tweak.xm:49:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPlayerER4G... ^ Tweak.xm:51:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"),(void*... ^ Tweak.xm:53:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSuccessfulEv")... ^ Tweak.xm:55:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv"),(void*)... ^ Tweak.xm:57:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN6Player6IsDeadEv"),(void*)playerI... ^ Tweak.xm:59:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN14MissionManager15ReachedMaxLevel... ^ Tweak.xm:61:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWithPlayerER... ^ Tweak.xm:63:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv"),(void*)play... ^ Tweak.xm:65:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithPlayerER4...
  9. here is the tweak.xm #include <substrate.h> static bool missileCollision() { return FALSE; } static bool shopItemsPurchased() { return TRUE; } static void shopItemsPurchased2() { } static int getCurrency() { return 99999999; } static bool playerIsDead() { return FALSE; } static void missionMaxLevel() { } static bool slotTokenCollision() { return FALSE; } static bool playerIsImmune() { return TRUE; } static bool ObstacleColliding() { return FALSE; } %ctor { MSHookFunction(MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPlayerER4Game"),(void*)missileCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"),(void*)shopItemsPurchased, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSuccessfulEv"),(void*)shopItemsPurchased2, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv"),(void*)getCurrency, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN6Player6IsDeadEv"),(void*)playerIsDead, NULL); MSHookFunction(MSFindSymbol(NULL, " __ZN14MissionManager15ReachedMaxLevelEv"),(void*)missionMaxLevel, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWithPlayerER4Game"),(void*)slotTokenCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv"),(void*)playerIsImmune, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithPlayerER4Game"),(void*)ObstacleColliding, NULL);
  10. i PMed you my tweak.xm i searched the feature unlock all items i think i may have found something
  11. then why did you release a patcher of that game in vip cheats
  12. im gonna send you my tweak.xm
  13. what do you mean by game name
  14. when i type make package > Making all for tweak Hidden ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… Tweak.xm:49:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPlayerER4G... ^ Tweak.xm:51:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"),(void*... ^ Tweak.xm:53:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSuccessfulEv")... ^ Tweak.xm:55:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv"),(void*)... ^ Tweak.xm:57:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN6Player6IsDeadEv"),(void*)playerI... ^ Tweak.xm:59:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN14MissionManager15ReachedMaxLevel... ^ Tweak.xm:61:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWithPlayerER... ^ Tweak.xm:63:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv"),(void*)play... ^ Tweak.xm:65:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithPlayerER4... ^ 9 error generated. make[3]: *** [/home/taylormeyer/theos/makefiles/instance/rules.mk:284: /home/taylormeyer/Hidden.theos/obj/debug/armv7/Tweak.xm.a5c61f40.o] Error 1 make[2]: *** [/home/taylormeyer/theos/makefiles/instance/library.mk:32: /home/taylormeyer/Hidden/.theos/obj/debug/armv7/Hidden.dylib] Error 2 make[1]: *** [/home/taylormeyer/theos/makefiles/instance/library.mk:24: internal-library-all_] Error 2 make: *** [/home/taylormeyer/theos/makefiles/master/rules.mk:90: Hidden.all.tweak.variables] Error 2 then when i type make troubleshoot it says make: *** [/home/taylormeyer/theos/makefiles/master/rules.mk:166:
  15. Nice
  16. Try onavo Vpn is amazing
  17. i gave you REP on both post and to make the letmedebug work on ios 9 will i have to add that one line code in my makefile
  18. thanks buddy i put that in now the BASH_PROFILE file the lines at the bottom are export THEOS=/home/*/theos/ export THEOS_MAKE_PATH=/home/*/theos/makefiles/ is that correct
  19. this is the project https://github.com/sharedRoutine/letmedebug
  20. love you daddy
×
  • 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