Jump to content

How do I find the correct path of a game to make a deb file for a hack?


xLay

7 posts in this topic

Recommended Posts

Posted

Hi guys, I’m currently in the works of making a deb file for a game I’ve been hacking for years.

now every device or every installation of the game has a different folder name.

how can I point a deb to install these files in the correct path for installation? I’ve got past experience from making a deb file in the past but all I did was copy and edit someone else’s .deb file. 

Thank you. 👍

Posted

If you are talking about the Data directory, then only package the save you want and make a Save Game cheat . If you are editing the Bundle files then you need to make an ipa file and put it in Non-JB. The way this would be possible with a deb is to make a shell script that would look for the directory by checking the unique files inside the game. And that script would be run on installation since you can specify that in the control file. Cheers and good luck! :) 

Posted

How can I replace this file in this directory /var/mobile/Containers/Data/Application/940B8E06-2AE7-42A8-87D3-B820EDC4CE87/Documents/packages/insertzipfilehere.zip

notice the 940B8E06-2AE7-42A8-87D3-B820EDC4CE87 will be different on every phone, how do I make sure I bypass that? I’ve done it before but it’s been a while.

EDIT: Found a CRC Manipulator for the patched zip files that contain the files for me to edit, it's CRC server sided so any modded slot games that are tampered with changes the checksum and replaces it with the original zip so that is sorted, just need to make a deb file to  copy the modified zip file to this directory:
/var/mobile/Containers/Data/Application/940B8E06-2AE7-42A8-87D3-B820EDC4CE87/Documents/packages/insertzipfilehere.zip

 

Posted
53 minutes ago, LayA said:

How can I replace this file in this directory /var/mobile/Containers/Data/Application/940B8E06-2AE7-42A8-87D3-B820EDC4CE87/Documents/games/cegcmorechilli/configuration.xml 

notice the 940B8E06-2AE7-42A8-87D3-B820EDC4CE87 will be different on every phone, how do I make sure I bypass that? I’ve done it before but it’s been a while.

EDIT: Found a CRC Manipulator for the patched zip files that contain the files for me to edit, it's CRC server sided so any modded slot games that are tampered with changes the checksum and replaces it with the original zip so that is sorted, just need to make a deb file to  copy the modified zip file to this directory:
/var/mobile/Containers/Data/Application/940B8E06-2AE7-42A8-87D3-B820EDC4CE87/Documents/packages/insertzipfilehere.zip

 

I would suggest you make a Tweak with theos (if you don’t have it installed, I can build it for you :) ) that would have this code in Tweak.xm

#include <stdio.h>
#include "zipfile2chararray.h" // A FILE WITH YOUR ZIP FILE PUT AS A CHAR ARRAY

%ctor {
  NSString DocumentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES) objectAtIndex:0];
  char *FilePath = [[NSString stringWithFormat:@"%@/packages/hack.zip", DocumentsDirectory] UTF8String];
  FILE *zipFile = fopen(FilePath, "w");
  if (zipFile) {
    fprintf(zipFile, "%s", zipFileContents);
    fclose(zipFile);
  }
}

 

Posted
25 minutes ago, bR34Kr said:

I would suggest you make a Tweak with theos (if you don’t have it installed, I can build it for you :) ) that would have this code in Tweak.xm


#include <stdio.h>
#include "zipfile2chararray.h" // A FILE WITH YOUR ZIP FILE PUT AS A CHAR ARRAY

%ctor {
  NSString DocumentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES) objectAtIndex:0];
  char *FilePath = [[NSString stringWithFormat:@"%@/packages/hack.zip", DocumentsDirectory] UTF8String];
  FILE *zipFile = fopen(FilePath, "w");
  if (zipFile) {
    fprintf(zipFile, "%s", zipFileContents);
    fclose(zipFile);
  }
}

 

I don't have theos installed currently, if you can build one for me that will help me so much. make sure you credit yourself in the description, i will attach the zip file also and give you the exact path it needs to go, it needs to replace the original zip file.
just name it "Moon Race Hack"
the app by the way is https://apps.apple.com/au/app/lightning-link-casino/id1243005112

Zip: https://www65.zippyshare.com/v/JxbZhO43/file.html

Path: /var/mobile/Containers/Data/Application/940B8E06-2AE7-42A8-87D3-B820EDC4CE87/Documents/packages/ 

Thank you!

Posted
On 10/4/2019 at 11:36 AM, LayA said:

 

I don't have theos installed currently, if you can build one for me that will help me so much. make sure you credit yourself in the description, i will attach the zip file also and give you the exact path it needs to go, it needs to replace the original zip file.
just name it "Moon Race Hack"
the app by the way is https://apps.apple.com/au/app/lightning-link-casino/id1243005112

Zip: https://www65.zippyshare.com/v/JxbZhO43/file.html

Path: /var/mobile/Containers/Data/Application/940B8E06-2AE7-42A8-87D3-B820EDC4CE87/Documents/packages/ 

Thank you!

I pray you get this to work I will pay for a lightning link mod for ios :D

Archived

This topic is now archived and is closed to further replies.

  • Our picks

    • Hello Town: Merge & Succeed v2.7 [ +3 Cheats ] Currency Max
      Modded/Hacked App: Hello Town By Springcomes Co., Ltd.
      Bundle ID: com.spcomes.hellotown
      iTunes Store Link: https://apps.apple.com/us/app/hello-town/id6737850281?uo=4


      Hack Features

      - Diamonds
      - Gold
      - Energy Freeze



      For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Agree
        • Thanks
        • Winner
        • Like
      • 21 replies
    • Hello Town: Merge & Succeed v2.7 [ +3 Jailed ] Currency Max
      Modded/Hacked App: Hello Town By Springcomes Co., Ltd.
      Bundle ID: com.spcomes.hellotown
      iTunes Store Link: https://apps.apple.com/us/app/hello-town/id6737850281?uo=4

       

      Hack Features

      - Diamonds
      - Gold
      - Energy Freeze



      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 23 replies
    • Loadout Warrior v2.3.6 [ +5 Jailed ] ADS NO
      Modded/Hacked App: Loadout Warrior By MobGame Pte. LTD
      Bundle ID: com.mobgame.loadout.warrior
      iTunes Store Link: https://apps.apple.com/us/app/loadout-warrior/id6743389761?uo=4
       

      🤩 Hack Features

      - ADS NO [ Rewards Free ]

      - Battle Coins

      - HP

      - ATK

      - ATK CD
        • Informative
        • Like
      • 13 replies
    • Loadout Warrior v2.3.6 [ +5 Cheats ] ADS NO
      Modded/Hacked App: Loadout Warrior By MobGame Pte. LTD
      Bundle ID: com.mobgame.loadout.warrior
      iTunes Store Link: https://apps.apple.com/us/app/loadout-warrior/id6743389761?uo=4
       

      🤩 Hack Features

      - ADS NO [ Rewards Free ]

      - Battle Coins

      - HP

      - ATK

      - ATK CD
        • Thanks
        • Winner
        • Like
      • 7 replies
    • Pop Island v1.2.1 [ +1 Cheats ] Coins Max
      Modded/Hacked App: Pop Island By HISTAR INTERACTIVE PTE. LTD.
      Bundle ID: com.hmbdgames.match
      iTunes Store Link: https://apps.apple.com/us/app/pop-island/id6505047210?uo=4


      🤩 Hack Features

      - Coins [ Win Match Disable After Hack ]


        • Agree
        • Like
      • 22 replies
    • Pop Island v1.2.1 [ +1 Jailed ] Coins Max
      Modded/Hacked App: Pop Island By HISTAR INTERACTIVE PTE. LTD.
      Bundle ID: com.hmbdgames.match
      iTunes Store Link: https://apps.apple.com/us/app/pop-island/id6505047210?uo=4


      🤩 Hack Features

      - Coins [ Win Match Disable After Hack ]


        • Agree
        • Winner
        • Like
      • 22 replies
    • Dream Resort - Match 3 Games v1.6.6 [ +7 Jailed ] Auto Win
      Modded/Hacked App: Dream Resort - Match 3 Games By F.O.G LIMITED
      Bundle ID: com.dream.resort.candy.match.mania.ios
      iTunes Store Link: https://apps.apple.com/us/app/dream-resort-match-3-games/id6737011572?uo=4
       

      🚀 Hack Features

      - Auto ADS Disable

      - Coins

      - Diamonds

      - Lives Cost

      - Moves Freeze

      - Booster [ Buy Get Unlimited After use Then work ]

      - Auto win 


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Agree
        • Winner
        • Like
      • 24 replies
    • Dream Resort - Match 3 Games v1.6.6 [ +7 Cheats ] Auto Win
      Modded/Hacked App: Dream Resort - Match 3 Games By F.O.G LIMITED
      Bundle ID: com.dream.resort.candy.match.mania.ios
      iTunes Store Link: https://apps.apple.com/us/app/dream-resort-match-3-games/id6737011572?uo=4

       

      🔧 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      🚀 Hack Features

      - Auto ADS Disable

      - Coins

      - Diamonds

      - Lives Cost

      - Moves Freeze

      - Booster [ Buy Get Unlimited After use Then work ]

      - Auto win 


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Thanks
        • Like
      • 24 replies
    • Match Villains v1.36.1 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Match Villains By Good Job Games Bilisim Yazilim ve Pazarlama AS
      Bundle ID: com.goodjobgames.matchvillains
      iTunes Store Link: https://apps.apple.com/us/app/match-villains/id6479752688?uo=4
       

      🚀 Hack Features

      - Coins
      - Lives
      - Moves Freeze
      - Booster


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Thanks
        • Like
      • 24 replies
    • Match Villains v1.36.1 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Match Villains By Good Job Games Bilisim Yazilim ve Pazarlama AS
      Bundle ID: com.goodjobgames.matchvillains
      iTunes Store Link: https://apps.apple.com/us/app/match-villains/id6479752688?uo=4
       

      🚀 Hack Features

      - Coins
      - Lives
      - Moves Freeze
      - Booster


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Agree
        • Like
      • 27 replies
    • Kitchen Masters v17.4.0 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Kitchen Masters By Bigger Oyun Yazilim ve Pazarlama Anonim Sirketi
      Bundle ID: com.bigger.kitchenmasters
      iTunes Store Link: https://apps.apple.com/ph/app/kitchen-masters/id6474870266?uo=4


      🤩 Hack Features

      - Coins

      - Cash

      - Lives

      - Tile Cost 0
        • Agree
        • Thanks
        • Like
      • 12 replies
    • Kitchen Masters v17.4.0 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Kitchen Masters By Bigger Oyun Yazilim ve Pazarlama Anonim Sirketi
      Bundle ID: com.bigger.kitchenmasters
      iTunes Store Link: https://apps.apple.com/ph/app/kitchen-masters/id6474870266?uo=4
       

      🤩 Hack Features

      - Coins

      - Cash

      - Lives

      - Tile Cost 0
        • Agree
        • Haha
        • Like
      • 20 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