Jump to content

[Solved] Make .dylib files in Terminal


Go to solution Solved by akke92,

27 posts in this topic

Recommended Posts

Posted (edited)

Which probably means you're not linking correctly :p

 

Show me your tweak.xm and you makefile, i'll fix it

Not sure what linking means as i'm very new at this but :p

 

Sure, here they are!

 

Tweak.xm

%hook PineGameDelegate
-(void)applicationDidBecomeActive:(id)argument {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"This is the Title" message:@"This is the Message" delegate:nil cancelButtonTitle:@"This is the Button Text" otherButtonTitles:nil];
[alert show];
[alert release];
}
%end

minehack.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Filter</key>
<dict>
<key>Bundles</key>
<array>
<string>DungeonDigger.PineEntertainment.Com</string>
</array>
</dict>
</dict>
</plist>
Updated by akke92
Posted

Not sure what linking means as i'm very new at this but :p

 

Sure, here they are!

 

Tweak.xm

"

%hook PineGameDelegate

-(void)applicationDidBecomeActive:(id)argument {UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"This is the Title" message:@"This is the Message" delegate:nil cancelButtonTitle:@"This is the Button Text" otherButtonTitles:nil];[alert show];[alert release];}%end

"

 

minehack.plist

"

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">

<plist version="1.0">

<dict>

<key>Filter</key>

<dict>

<key>Bundles</key>

<array>

<string>DungeonDigger.PineEntertainment.Com</string>

</array>

</dict>

</dict>

</plist>

"

That's not your makefile :S did you make a preference bundle?

Posted

That's not your makefile :S did you make a preference bundle?

Ohh shit sorry.... Here's the Makefile

And what do you mean? How do i make a preference bundle? :p 

Sorry for being such a noob :(

include theos/makefiles/common.mk

TWEAK_NAME = minehack
minehack_FILES = Tweak.xm
minehack_FRAMEWORKS = UIKit

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
        install.exec "killall -9 SpringBoard"
Posted

Ohh shit sorry.... Here's the Makefile

And what do you mean? How do i make a preference bundle? :p 

Sorry for being such a noob :(

 

include theos/makefiles/common.mk

TWEAK_NAME = minehack
minehack_FILES = Tweak.xm
minehack_FRAMEWORKS = UIKit

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
        install.exec "killall -9 SpringBoard"

No need to make one, what iOS are you on?

Posted (edited)

Oh okey, i'm running iOS 9.3.3 on a iPhone 6s+ :)

Tweak.xm :

 

 

%hook AppDelegate

 

-(BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 {

 

UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"APPNAME"

message:@" Cheat By Crypto" delegate:self cancelButtonTitle:@"Thanks!" otherButtonTitles:@"For more hacks, Click Here!", nil];

[alert show];

[alert release];

return %orig();

%new

}

 

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {

if(buttonIndex !=alertView.cancelButtonIndex)

{

[[uIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://iosgods.com]];

}

}

 

%end

 

 

Makefile :

 

ARCHS = armv7 arm64

TARGET = iphone:clang:latest:latest

#CFLAGS = -fobjc-arc

#THEOS_PACKAGE_DIR_NAME = debs

 

include theos/makefiles/common.mk

 

TWEAK_NAME = fruit

minehack_FILES = Tweak.xm

minehack_FRAMEWORKS = UIKit

minehack_LDFLAGS += -Wl,-segalign,4000

CFLAGS =-w

include $(THEOS_MAKE_PATH)/tweak.mk

 

after-install::

install.exec "killall -9 SpringBoard"

 

 

Try that and compile again. For the tweak.xm just change the credits and appname to what you want.

Updated by Crypto
Posted

Tweak.xm :

 

 

%hook AppDelegate

 

-(BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 {

 

UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"APPNAME"

message:@" Cheat By Crypto" delegate:self cancelButtonTitle:@"Thanks!" otherButtonTitles:@"For more hacks, Click Here!", nil];

[alert show];

[alert release];

return %orig();

%new

}

 

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {

if(buttonIndex !=alertView.cancelButtonIndex)

{

[[uIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://iosgods.com]];

}

}

 

%end

 

 

Makefile :

 

ARCHS = armv7 arm64

TARGET = iphone:clang:latest:latest

#CFLAGS = -fobjc-arc

#THEOS_PACKAGE_DIR_NAME = debs

 

include theos/makefiles/common.mk

 

TWEAK_NAME = fruit

minehack_FILES = Tweak.xm

minehack_FRAMEWORKS = UIKit

minehack_LDFLAGS += -Wl,-segalign,4000

CFLAGS =-w

include $(THEOS_MAKE_PATH)/tweak.mk

 

after-install::

install.exec "killall -9 SpringBoard"

 

 

Try that and compile again. For the tweak.xm just change the credits and appname to what you want.

 

I Tried it and this is what i got from the Terminal while compiling

Axels-iPhone:~/minehack root# make package install
Makefile:16: *** missing separator.  Stop.
Axels-iPhone:~/minehack root#

Posted

 

I Tried it and this is what i got from the Terminal while compiling

Axels-iPhone:~/minehack root# make package install
Makefile:16: *** missing separator.  Stop.
Axels-iPhone:~/minehack root#

I realised what the problem was and i solved it, now it compiled without errors and after respring i tried launching the game but still no UI poped up...

This is so frustrating, been trying all day to get a simple UI to popup but looks like i have to keep trying! :(

Posted

I realised what the problem was and i solved it, now it compiled without errors and after respring i tried launching the game but still no UI poped up...

This is so frustrating, been trying all day to get a simple UI to popup but looks like i have to keep trying! :(

Oops, you gotta add :

#import <UIKit/UIKit.h>

 

On top of your tweak.xm

Posted

Oops, you gotta add :

#import <UIKit/UIKit.h>

 

On top of your tweak.xm

Tried it, still no UI pops up after respring and upon launching of the game.. :(

Maybe it's not so weird though as i can't find a target class called AppDelegate in Flex for this game, might have to use another target class that actually exists? :p 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Wasteland:Rogue Survivor v1.9 Jailed Cheats
      Modded/Hacked App: Wasteland:Rogue Survivor By 正琼 胡
      Bundle ID: com.dlxstudio.LastDeadlands
      App Store Link: https://apps.apple.com/us/app/wasteland-rogue-survivor/id6753933764?uo=4

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - God Mode
      - Multiply Attack
      - Infinite Currencies
      - Infinite Materials
      - PREMIUM / No Ads

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/205963-wastelandrogue-survivor-v19-jailed-cheats/
        • Like
      • 4 replies
    • Three Kingdoms: Grand Strategy v1.0.4 Jailed Cheats +1
      Modded/Hacked App: Three Kingdoms: Grand Strategy By KONG SOFTWARE JOINT STOCK COMPANY
      Bundle ID: com.kongsoftware.project04tkgs.gl
      App Store Link: https://apps.apple.com/us/app/three-kingdoms-grand-strategy/id6755294564?uo=4

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - Free iAP (Turn on inside iOSGods Menu first)

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/206958-three-kingdoms-grand-strategy-v104-jailed-cheats-1/
      • 0 replies
    • Agar.io v26.5.0 Jailed Cheats +1
      Modded/Hacked App: Agar.io by Miniclip SA
      Bundle ID: com.miniclip.agar.io
      iTunes Store Link: https://itunes.apple.com/us/app/agar-io/id995999703?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Normal Mode Zoom Hack - Tested with value 0.08 - More Zoom = More Small Value
      - BR Mode Zoom Hack - Tested with value 0.08 - More Zoom = More Small Value


      Hack Download Link: https://iosgods.com/topic/82572-arm64-agario-v230-jailed-cheats-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,278 replies
    • Travel Town - Merge Adventure v2.12.1462 Jailed Cheats +1
      Modded/Hacked App: Travel Town - Merge Adventure By Magmatic Games Ltd
      Bundle ID: io.randomco.travel
      iTunes Store Link: https://apps.apple.com/us/app/travel-town-merge-adventure/id1521236603?uo=4


      Hack Features:
      - Infinite Currencies


      iOS Hack Download Link: https://iosgods.com/topic/148953-travel-town-merge-adventure-v212287-jailed-cheats-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 926 replies
    • Idle Lumber Empire - Wood Game Cheats v1.12.3 +2
      Modded/Hacked App: Lumber Empire: Idle Tycoon By ADQUANTUM LTD
      Bundle ID: com.lumber.inc
      iTunes Store Link: https://apps.apple.com/us/app/lumber-empire-idle-tycoon/id1552153525?uo=4


      Hack Features:
      - Freeze Currencies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/150641-lumber-empire-idle-tycoon-v135-jailed-cheats-1/


      iOS Hack Download Link: https://iosgods.com/topic/150640-lumber-empire-idle-tycoon-cheats-v135-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 659 replies
    • Squad Alpha - Action Shooting v1.7.33 [ +20 Cheats ] Currency Max
      Modded/Hacked App: Squad Alpha - Action Shooting By SayGames LTD
      Bundle ID: com.game.missioncrit
      iTunes Store Link: https://apps.apple.com/us/app/squad-alpha-action-shooting/id1571487050?uo=4

      Hack Features:
      - ADS Free 

      - ViP Member [ Active ] 

      - ViP PoPup Disable 

      - Gems Unlimited [ Daily Offer ]

      - Elite Pass [ Active ]

      - Elite Pass+ [ Active ]

      - Elite Pass [ Claim Unlimited ]

      - Elite Pass+ [ Claim Unlimited ]

      - Free Pass [ Claim Unlimited ]

      - Elite Pass LvL Skip [ Price -9999 ] Increased Gems

      - Loot Box [ Price -9999 ] Increased Gems

      - Inventory Expand [ Price -9999 ] Increased Gems

      - Inventory Space [ First Open Inventory Then Enable Cheat Next + ADD Then Buy Get Max Space ]

      - Health Max

      - DMG Unlimited

      - Speed Movement

      - Ammo Max

      - No Reload

      - Enemy Freeze

      - Wall Hack [ Move Anywhere ]

      Note:- Don"t Abuse The Hack Maybe Banned I'M Not Responsible 


      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/
        • Informative
        • Agree
        • Winner
        • Like
      • 47 replies
    • Squad Alpha - Action Shooting v1.7.33 [ +20 Jailed ] Currency Max
      Modded/Hacked App: Squad Alpha - Action Shooting By SayGames LTD
      Bundle ID: com.game.missioncrit
      iTunes Store Link: https://apps.apple.com/us/app/squad-alpha-action-shooting/id1571487050?uo=4


      Hack Features:

      - ADS Free 

      - ViP Member [ Active ] 

      - ViP PoPup Disable 

      - Gems Unlimited [ Daily Offer ]

      - Elite Pass [ Active ]

      - Elite Pass+ [ Active ]

      - Elite Pass [ Claim Unlimited ]

      - Elite Pass+ [ Claim Unlimited ]

      - Free Pass [ Claim Unlimited ]

      - Elite Pass LvL Skip [ Price -9999 ] Increased Gems

      - Loot Box [ Price -9999 ] Increased Gems

      - Inventory Expand [ Price -9999 ] Increased Gems

      - Inventory Space [ First Open Inventory Then Enable Cheat Next + ADD Then Buy Get Max Space ]

      - Health Max

      - DMG Unlimited

      - Speed Movement

      - Ammo Max

      - No Reload

      - Enemy Freeze

      - Wall Hack [ Move Anywhere ]

      Note:- Don"t Abuse The Hack Maybe Banned I'M Not Responsible 

       
      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 48 replies
    • Warventure: Stickman Clash v1.0.253 [ +14 Cheats ] Currency Max
      Modded/Hacked App: Warventure: Stickman Clash By Pusilung HK Limited
      Bundle ID: com.thp020.stickman.casual.war.game
      App Store Link: https://apps.apple.com/ph/app/warventure-stickman-clash/id6753664361?uo=4

      🤩 Hack Features

      - ADS No / Rewards Free
      - Speed 2X Active
      - Unlimited Gems
      - Unlimited Ruby / Hero & Pet Up
      - Unlimited Coins
      - Unlimited Energy
      - Unlimited Silver Keys
      - Unlimited Golden Keys
      - Unlimited Legendry Keys
      - Premium Pass Active +4
      - ATK / Equip
      - HP / Equip
      - DEF / Equip
      - iGG Speed / Faster Skip Wave

      Note:- Currency & Resources Visual But Works
        • Winner
        • Like
      • 5 replies
    • Warventure: Stickman Clash v1.0.253 [ +14 Jailed ] Currency Max
      Modded/Hacked App: Warventure: Stickman Clash By Pusilung HK Limited
      Bundle ID: com.thp020.stickman.casual.war.game
      App Store Link: https://apps.apple.com/ph/app/warventure-stickman-clash/id6753664361?uo=4

      🤩 Hack Features

      - ADS No / Rewards Free
      - Speed 2X Active
      - Unlimited Gems
      - Unlimited Ruby / Hero & Pet Up
      - Unlimited Coins
      - Unlimited Energy
      - Unlimited Silver Keys
      - Unlimited Golden Keys
      - Unlimited Legendry Keys
      - Premium Pass Active +4
      - ATK / Equip
      - HP / Equip
      - DEF / Equip
      - iGG Speed / Faster Skip Wave

      Note:- Currency & Resources Visual But Works
        • Winner
        • Like
      • 9 replies
    • Modded/Hacked App: Mattel Match By Uken Inc.
      Bundle ID: com.uken.mattel.match
      App Store Link: https://apps.apple.com/us/app/mattel-match/id6621181299?uo=4

       

      🤩 Hack Features

      - Unlimited Everything
      - Auto Win
      - Freeze Timer
      • 0 replies
    • Mattel Match +3 Jailed Cheats [ Unlimited Everything ]
      Modded/Hacked App: Mattel Match By Uken Inc.
      Bundle ID: com.uken.mattel.match
      App Store Link: https://apps.apple.com/us/app/mattel-match/id6621181299?uo=4

       

      🤩 Hack Features

      - Unlimited Everything
      - Auto Win
      - Freeze Timer
      • 0 replies
    • Tower Defense Rumble v7476 [ +10 Cheats ] Easy Win
      Modded/Hacked App: Tower Defense Rumble By DU-EON YOO
      Bundle ID: com.i.dfr
      App Store Link: https://apps.apple.com/ph/app/tower-defense-rumble/id6738600584?uo=4

      🤩 Hack Features

      - Always Last Wave / Easy Win
      Tower Status
      - ATK Max
      - HP Max
      - Range Max
      - ATK CD
      Base Tower Status
      - ATK Max
      - HP Max
      - Range Max
      - ATK CD
      - ATK Speed
      • 9 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