Jump to content

2 posts in this topic

Recommended Posts

Posted (edited)

Hello guys!

It has been a while since I posted a topic, and I have become inactive.

I would just like to share part of my final project in my AP Computer Science class.

My teacher told my class to create any game we wanted using java eclipse and only the console.

So I created a randomly generated maze, it is not complete yet, I still have to add some functions n crap.

But basically you start off with 200 points and lose 5 points every step you take, type "u" to go up, "d" to go down, "r" to go right, and "l" to go left. (Pretty basic)

If you run the script in eclipse it is self explanatory. I put so many notes in the script so if you want to follow/learn the code you can try to.

Welp here it is:

Spoiler

import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.io.*; 
import java.util.ArrayList;
import java.util.Random;
import java.util.Scanner;
public class CopyOfmaze {
	public static void main(String args[])
	{
		Scanner kbReader = new Scanner(System.in);//Declaring user input
		//Creating Arrays to hold maze data
		String printmaze[][]=new String[41][31];//Maze that will be printed (holds string values)
		
		boolean checkmaze[][]=new boolean[41][31];//Maze that tells if a wall can be removed (holds boolean values)
		
		boolean checkmaze2[][]=new boolean[41][31];//Maze to hold path of start to finish (solution)
		
		//---------Setting check maze default (tells if walls can be removed)------------//
		for(int i=0; i<41; i++){
			for(int u=0; u<31; u++){
				checkmaze[i][u]=true;
		}}
		//Sets all values of array to true
		
		//---------Setting check maze2 default (start to finish)------------//
		for(int i=0; i<41; i++){
			for(int u=0; u<31; u++){
				checkmaze2[i][u]=true;
		}}
		//Sets all values of array to true
		
		//------------Setting values of default maze (maze with no path)-----------//
		for(int i=0; i<41; i+=2){
			for(int u=0; u<31; u+=2){
				printmaze[i][u]=":";
		}}
		for(int j=0; j<20; j++){
			for(int k=0; k<15; k++){
					printmaze[(2*j)][(k*2)+1]="--";//Creates top wall
					printmaze[(2*j)+2][(k*2)+1]="--";//Creates bottom wall
					printmaze[(2*j)+1][(k*2)]="I";//Creates left wall
					printmaze[(2*j)+1][(k*2)+2]="I";//Creates right wall
					printmaze[(2*j)+1][(k*2)+1]="  ";//Creates middle wall
		}}
		
		//-------------Random Path From Finish -> Start------------//
		printmaze[0][15]="  ";//Makes beginning of maze
		int x=1;//Makes first spot below(right under top) start of maze
		int y=15;//Makes first spot in middle (in between right and left) of maze
		while(x>-1&&x<41&&y>-1&&y<31){//While the maze is inside bounds
		Random ran = new Random();
		int randomNum = ran.nextInt(4)+1;//Creates random number 1-4
		
		checkmaze2[x][y]=false;//Sets path from start to finish false
		
		if(randomNum==1){//If random number is 1, eliminates wall below spot
			printmaze[x+1][y]="  ";//bottom
			checkmaze[x-1][y]=false;//Sets top wall permanently by setting 
			checkmaze[x][y-1]=false;//Sets left wall permanently
			checkmaze[x][y+1]=false;//Sets right wall permanently
			x=x+2;}//Moves spot down one
		
		if(randomNum==2&&y>2){//If random number is 2, eliminates wall left of spot
			printmaze[x][y-1]=" ";//left
			checkmaze[x-1][y]=false;//Sets top wall permanently
			checkmaze[x+1][y]=false;//Sets bottom wall permanently
			checkmaze[x][y+1]=false;//Sets right wall permanently
			y=y-2;}//Moves spot left one
		
		if(randomNum==3&&y<28){//If random number is 3, eliminates right wall
			printmaze[x][y+1]=" ";//right
			checkmaze[x-1][y]=false;//Sets top wall permanently
			checkmaze[x+1][y]=false;//Sets bottom wall permanently
			checkmaze[x][y-1]=false;//Sets left wall permanently
			y=y+2;}//Moves spot right one
		
		if(randomNum==4&&x>2&&checkmaze[x-1][y]==true){//If random number is 4, eliminates top wall
			printmaze[x-1][y]="  ";//top
			checkmaze[x+1][y]=false;//Sets bottom wall permanently
			checkmaze[x][y-1]=false;//Sets left wall permanently
			checkmaze[x][y+1]=false;//Sets right wall permanently
			x=x-2;}//Moves spot up one
		}
		
		//--------------Changing check maze (makes it so border wall can't be removed)---------//
		for(int u=1; u<41;u+=2){
			checkmaze[u][0]=false;//Sets left wall to false
			checkmaze[u][30]=false;}//Sets right wall to false
		for(int i=1; i<30;i+=2){
			checkmaze[0][i]=false;//Sets top wall to false
			checkmaze[40][i]=false;}//Sets bottom wall to false
		
		
		//--------------Creates misleading paths---------//
				for(int a=1;a<41;a+=2){
					//System.out.println("");
					for(int q=1;q<30;q+=2){//Goes through every spot in maze
						Random ran = new Random();
						int randomNum = ran.nextInt(4)+1;//Finds a random number 1-4
						//Checks if bottom wall is removable, if not it goes to next statement
						if(randomNum==1&&checkmaze[a+1][q]==false){
							randomNum=2;
						}
						//Checks if bottom wall is already open, if not it goes to next statement
						if(randomNum==1&&printmaze[a+1][q].equals("  ")){
							randomNum=2;
						}
						if(randomNum==1&&a<39&&checkmaze[a+1][q]==true){ 
							printmaze[a+1][q]="  ";//Opens bottom wall, if the if statements above were false
							//System.out.print("bottom ");
						}
						//Checks if top wall is removable, if not it goes to next statement
						if(randomNum==2&&checkmaze[a-1][q]==false){
							randomNum=3;
						}
						//Checks if top wall is already open, if not it goes to next statement
						if(randomNum==2&&printmaze[a-1][q].equals("  ")){
							randomNum=3;
						}
						if(randomNum==2&&a>1&&checkmaze[a-1][q]==true){
							printmaze[a-1][q]="  ";//Opens top wall, if the if statements above were false
							//System.out.print("top ");
						}
						//Checks if right wall is removable, if not it goes to next statement
						if(randomNum==3&&checkmaze[a][q+1]==false){
							randomNum=4;
						}
						//Checks if right wall is already open, if not it goes to next statement
						if(randomNum==3&&printmaze[a][q+1].equals(" ")){
							randomNum=4;
						}
						if(randomNum==3&&q<29&&checkmaze[a][q+1]==true){
							printmaze[a][q+1]=" ";//Opens right wall, if the if statements above were false
							//System.out.print("right ");
						}
						//Checks if left wall is removable, if not it goes to next statement
						if(randomNum==4&&checkmaze[a][q-1]==false){
							randomNum=1;
						}
						//Checks if left wall is already open, if not it goes to next statement
						if(randomNum==4&&printmaze[a][q-1].equals(" ")){
							randomNum=1;
						}
						if(randomNum==4&&q>1&&checkmaze[a][q-1]==true){
							printmaze[a][q-1]=" ";//Opens left wall, if the if statements above were false
							//System.out.print("left ");
						}
						if(randomNum==1&&a<39&&checkmaze[a+1][q]==true){
							printmaze[a+1][q]="  ";//Opens bottom wall, if the if statements above were false
							//System.out.print("bottom ");
						}
				}}
		
				
				
				//--------------Changing check maze---------//			
				for(int u=0; u<41;u+=2){
					for(int i=0; i<31; i++){//Goes through walls
						if(printmaze[u][i]!="--"){//If wall is open
							checkmaze[u][i]=true;//Sets wall to true
				}}}
				for(int u=0; u<41;u++){
					for(int i=0; i<31; i++){//Goes through maze
						if(printmaze[u][i]==" "){//If wall is open
							checkmaze[u][i]=true;}//Sets wall to true
						if(printmaze[u][i]=="  "){//If wall is open
							checkmaze[u][i]=true;}//Sets wall to true
				}}
		
		
		//---------------Fixing Open Areas--------------//
				int swi=0;//Makes value 0
				for(x=1;x<39;x+=2){
					for(y=0; y<29; y+=2){//Goes through maze spots
						if(swi%2==0&&printmaze[x][y]==" "&&printmaze[x+2][y]==" "&&printmaze[x+1][y-1]=="  "&&printmaze[x+1][y+1]=="  "){
							//If the value swi is divisible by 2 (even)
							//Also if there is large space in maze
							swi++;//Adds one to value
							printmaze[x+1][y-1]="--";//Makes left spot of open space closed
							checkmaze[x+1][y-1]=false;//Sets wall to false so it can't be removed
						}
						if(swi%2==1&&printmaze[x][y]==" "&&printmaze[x+2][y]==" "&&printmaze[x+1][y-1]=="  "&&printmaze[x+1][y+1]=="  "){
							//If the value swi is not divisible by 2 (odd)
							//Also if there is large space in maze
							swi++;//Adds one to value
							printmaze[x+1][y+1]="--";//Makes left spot of open space closed
							checkmaze[x+1][y+1]=false;//Sets wall to false so it can't be removed
						}	
				}}
		//------------------Fixing closed in areas-------------//
				int ti=0;
				for(x=1;x<40;x+=2){
					for(y=1; y<30; y+=2){
						if(y>1&&checkmaze[x-1][y]==false&&checkmaze[x+1][y]==false&&checkmaze[x][y-1]==false){
							//If top bottom left walls are false
							checkmaze[x][y-1]=true;//makes left wall true
							printmaze[x][y-1]=" ";//Opens left wall
							}
						
						if(y<29&&checkmaze[x-1][y]==false&&checkmaze[x+1][y]==false&&checkmaze[x][y+1]==false){
							//If top bottom right walls are false
							checkmaze[x][y+1]=true;//makes right wall true
							printmaze[x][y+1]=" ";//Opens right wall
							}
						if(x>1&&checkmaze[x-1][y]==false&&checkmaze[x][y+1]==false&&checkmaze[x][y-1]==false){
							//If top right left walls are false
							checkmaze[x-1][y]=true;//makes left wall true
							printmaze[x-1][y]="  ";//Opens left wall
							}
						
						if(x<39&&checkmaze[x+1][y]==false&&checkmaze[x][y+1]==false&&checkmaze[x][y-1]==false){
							//If bottom right left walls are false
							checkmaze[x+1][y]=true;//makes bottom wall true
							printmaze[x+1][y]="  ";//Opens bottom wall
							}	
						ti++;
						
				}}
				
		//Changing stuff again to make sure everything runs smoothly
		//This is already in code above
				for(int u=1; u<41;u+=2){
					checkmaze[u][0]=false;//Sets left wall to false
					checkmaze[u][30]=false;}//Sets right wall to false
				for(int i=1; i<30;i+=2){
					checkmaze[0][i]=false;//Sets top wall to false
					checkmaze[40][i]=false;}//Sets bottom wall to false
		
				for(int u=0; u<41;u+=2){
					for(int i=0; i<31; i++){//Goes through walls
						if(printmaze[u][i]!="--"){//If wall is open
							checkmaze[u][i]=true;//Sets wall to true
				}}}
				for(int u=0; u<41;u++){
					for(int i=0; i<31; i++){//Goes through maze
						if(printmaze[u][i]==" "){//If wall is open
							checkmaze[u][i]=true;}//Sets wall to true
						if(printmaze[u][i]=="  "){//If wall is open
							checkmaze[u][i]=true;}//Sets wall to true
				}}
		
		
		/* *******************************Made these into a comment because I used them to only look the maze data**********************
		//---------------prints maze-------------//
		for(int u=0; u<41;u++){
			System.out.println("");
			for(int i=0; i<31; i++){//Goes through maze
				System.out.print(printmaze[u][i]);//Prints values of maze 
		}}
		
		//-------------prints check maze----------------//
		System.out.println("");
		for(int u=0; u<41;u++){
			System.out.println("");
			for(int i=0; i<31; i++){//Goes through maze
				if(checkmaze[u][i]==true){//If wall is removable
					System.out.print(printmaze[u][i]);//Prints regular maze value
				}
				if(checkmaze[u][i]==false&&u%2==0){//If wall is permanent
					System.out.print("FF");//Prints FF
				}
				else if(checkmaze[u][i]==false){//If wall is permanent
					System.out.print("F");//Prints F
				}
		}}
		
		//-------------prints check maze2----------------//
				System.out.println("");
				for(int u=0; u<41;u++){
					System.out.println("");
					for(int i=0; i<31; i++){//Goes through maze
						if(checkmaze2[u][i]==true){//If wall is removable
							System.out.print(printmaze[u][i]);//Prints regular maze value
						}
						if(checkmaze2[u][i]==false){//If wall is permanent
							System.out.print("FF");//Prints F
						}
				}}
		*/
				
		//-----------------Explains game to user----------------//
				String con="";
				//Explaining game and point system
				System.out.println("Welcome to A-Maze-ing, a fun maze game.");
				System.out.println("In this game you start off with 200 points, each step you take you lose 5 points.");
				System.out.println("You can use portals labled P1, P2 and P3 to move around the maze faster, they do not lower the amount of points you have.");
				System.out.println("The goal of the game is to reach the end of the maze with the most points.");
				System.out.println("Type in c to continue");//Tells user to type c to continue
				con=kbReader.next( );//Takes in user input
				while(!con.equals("c")){//while c does not equal c
					System.out.println("Type in c to continue");
					con=kbReader.next( );//Takes in user input
				}		
				
				
		//*******************************************//
		//******************In Progress**************//
		//*******************************************//
		//-----------Creating Portals------------------//
		Random ran = new Random();
		for(int i=0;i<3;i++){
			int p = ran.nextInt(39)+2;//Finds a random number 1-40
			int v = ran.nextInt(29)+2;//Finds a random number 1-30
			while(checkmaze2[p][v]==true||p%2==0||v%2==0){
				p = ran.nextInt(39)+2;//Finds a random number 1-40
				v = ran.nextInt(29)+2;//Finds a random number 1-30
			}
			int z = ran.nextInt(39)+2;//Finds a random number 1-40
			int q = ran.nextInt(29)+2;//Finds a random number 1-30
			while(checkmaze2[z][q]==false||z%2==0||q%2==0){
				z = ran.nextInt(39)+2;//Finds a random number 1-40
				q = ran.nextInt(29)+2;//Finds a random number 1-30
			}
			if(i==0){
			printmaze[p][v]="P1";
			printmaze[z][q]="P1";}
			if(i==1){
			printmaze[p][v]="P2";
			printmaze[z][q]="P2";}
			if(i==2){
			printmaze[p][v]="P3";
			printmaze[z][q]="P3";}
			
		}
		
		//--------------User entering their character-----//
		int points=200;//Number of points you start off with
		int steps=0;//Number of steps taken
		String chara=" ";//Auto-sets character to empty space
		System.out.println("");
		System.out.println("Type in the 2 letter string you want your character to be.");
		chara=kbReader.next( );//Sets character to what user inputs
		
		while(chara.length()!=2){//While the character is not 2 letters long it will continue asking the user to input a character
		System.out.println("That string is not 2 letters long, please type in another string.");
		chara=kbReader.next( );//Sets character to what user inputs
		}
		printmaze[1][15]=chara;//Puts the character into the beginning of the maze
		int cx=1;
		int cy=15;
		
		//---------------prints maze-------------//
		System.out.println("***********************");
		System.out.println("* Points:"+points+"  Steps:"+steps+" *");//Prints points and number of steps
		System.out.print("***********************");
				for(int u=0; u<41;u++){
					System.out.println("");
					for(int i=0; i<31; i++){//Goes through maze
						System.out.print(printmaze[u][i]);//Prints out the maze values
				}}
		System.out.println("");
		boolean lose=false;//Lose is set to false default
		boolean win=false;//Win is set to false default
		//-------------------------------------------------//
		//----------------User Input/Game------------------//
		//-------------------------------------------------//
		boolean game=true;//Game is set to true default
		while(game==true){//While game is true game runs
		lose=false;//Lose is set to false default
		win=false;//Win is set to false default
			
		//--------------Finds end-------------------//
		int en=0;
			for(int i=1; i<30;i+=2){//goes through bottom border of maze
			if(printmaze[40][i]=="  "){//If spot is open
				en=i;}//Sets value to end spot
		}
		String mov="";
		
		System.out.println("Type which direction you want to move: u for up, d for down, l for left,and r for right.");
		mov=kbReader.next( );//Sets value to user input
		
		//--------If user inputs a word not in a direction----------------//
		while(mov!="r"&&mov!="l"&&mov!="d"&&mov=="u"){//While user input is not a proper direction
			System.out.println("Sorry that was not a direction, please type in a proper direction.");
			mov=kbReader.next( );//Sets value to user input, because it was not a proper direction
		}
		//---------If user tries going through walls------//
		while(mov.equals("u")&&cx==1||mov.equals("r")&&printmaze[cx][cy+1]!=" "||mov.equals("l")&&printmaze[cx][cy-1]!=" "||mov.equals("d")&&printmaze[cx+1][cy]!="  "||mov.equals("u")&&printmaze[cx-1][cy]!="  "){
			System.out.println("You can't move in that direction, please type in a proper direction.");
			mov=kbReader.next( );//Sets value to user input, because user tried going through a wall
		}
		
		if(mov.equals("u")&&cx>1&&printmaze[cx-1][cy]=="  "){//If user entered up
			printmaze[cx][cy]="  ";//Removes character from previous place
			cx-=2;//Changes place up one
			printmaze[cx][cy]=chara;//Sets place as character
			steps++;//Adds one to steps
			points-=5;//Subtracts five from points
		}
		if(mov.equals("d")&&cx<39&&printmaze[cx+1][cy]=="  "){
			printmaze[cx][cy]="  ";//Removes character from previous place
			cx+=2;//Changes place down one
			printmaze[cx][cy]=chara;//Sets place as character
			steps++;//Adds one to steps
			points-=5;//Subtracts five from points
		}
		if(mov.equals("l")&&cy>1&&printmaze[cx][cy-1]==" "){
			printmaze[cx][cy]="  ";//Removes character from previous place
			cy-=2;//Changes place left one
			printmaze[cx][cy]=chara;//Sets place as character
			steps++;//Adds one to steps
			points-=5;//Subtracts five from points
		}
		if(mov.equals("r")&&cy<29&&printmaze[cx][cy+1]==" "){
			printmaze[cx][cy]="  ";//Removes character from previous place
			cy+=2;//Changes place right one
			printmaze[cx][cy]=chara;//Sets place as character
			steps++;//Adds one to steps
			points-=5;//Subtracts five from points
		}
		
		if(points<=0){//If points are less than or equal to 0
			lose=true;//User loses
		}
		if(points<=0){//If points are less than or equal to 0
			game=false;//game ends
		}
		if(cx==39&&cy==en&&mov.equals("d")){//If user enters down right above end of maze
			win=true;//User wins
		}
		if(cx==39&&cy==en&&mov.equals("d")){//If user enters down right above end of maze
			game=false;//Game ends
		}
		
		//-----------------Prints Board--------------//
		if(points>99&&steps<10){
		System.out.println("***********************");
		System.out.println("* Points:"+points+"  Steps:"+steps+" *");//Prints points and number of steps
		System.out.print("***********************");}
		if(points<100&&steps<10){
			System.out.println("***********************");
			System.out.println("* Points:"+points+"  Steps:"+steps+"  *");//Prints points and number of steps
			System.out.print("***********************");
		}
		if(points<100&&steps>9){
			System.out.println("***********************");
			System.out.println("*Points:"+points+"  Steps:"+steps+" *");//Prints points and number of steps
			System.out.print("***********************");
		}
		if(points>99&&steps>9){
			System.out.println("***********************");
			System.out.println("*Points:"+points+"   Steps:"+steps+" *");//Prints points and number of steps
			System.out.print("***********************");
		}
		
		for(int u=0; u<41;u++){
			System.out.println("");
			for(int i=0; i<31; i++){//Goes through maze
				System.out.print(printmaze[u][i]);//prints maze values
		}}
		System.out.println("");
		
		}
		
		
		if(win==true){//If user wins
			System.out.println("***********************");
			System.out.println("*   CONGRATULATIONS   *");//Prints Congratulations
			System.out.println("*      YOU   WON      *");//Prints You Win
			System.out.println("***********************");
			System.out.println("");
			System.out.println(" ...       ...    .........      ...         ...");
			System.out.println("  ...     ...    ...........     ...         ...");
			System.out.println("   ...   ...    ...       ...    ...         ...");
			System.out.println("    ... ...    ...         ...   ...         ...");
			System.out.println("     .....     ...         ...   ...         ...");
			System.out.println("      ...      ...         ...    ...       ...");
			System.out.println("      ...       ...       ...     ...       ...");
			System.out.println("      ...        ...........       ...........");
			System.out.println("      ...         .........         .........");
			System.out.println(" ");
			System.out.println("   ...          ...   ...........   ...     ...");
			System.out.println("   ...          ...       ...       .....   ...");
			System.out.println("   ...    ...   ...       ...       ......  ...");
			System.out.println("   ...   .....  ...       ...       ... ... ...");
			System.out.println("    ... ... ... ...       ...       ...  ......");
			System.out.println("     .....   .....    ...........   ...   .....");
		}
		
		
		
		if(lose==true){//If user wins
			System.out.println("*************************");
			System.out.println("*         SORRY         *");//Prints Sorry
			System.out.println("*       YOU  LOST       *");//Prints You Lost
			System.out.println("* YOU RAN OUT OF POINTS *");//Prints You Lost
			System.out.println("*************************");
			System.out.println("");
			System.out.println("     ...       ...    .........      ...         ...");
			System.out.println("      ...     ...    ...........     ...         ...");
			System.out.println("       ...   ...    ...       ...    ...         ...");
			System.out.println("        ... ...    ...         ...   ...         ...");
			System.out.println("         .....     ...         ...   ...         ...");
			System.out.println("          ...      ...         ...    ...       ...");
			System.out.println("          ...       ...       ...     ...       ...");
			System.out.println("          ...        ...........       ...........");
			System.out.println("          ...         .........         .........");
			System.out.println(" ");
			System.out.println(" ...           .........       ..........   ............... ");
			System.out.println(" ...          ...........     ............  ............... ");
			System.out.println(" ...         ...       ...    ...       ...       ...       ");
			System.out.println(" ...        ...         ...    ....    ...        ...         ");
			System.out.println(" ...        ...         ...      ....             ...       ");
			System.out.println(" ...        ...         ...        ....           ...       ");
			System.out.println(" ...         ...       ...   ...     ....         ...       ");
			System.out.println(" .........    ...........     ............        ...       ");
			System.out.println(" .........     .........      ...........         ...       ");	
		}
	}
}

 

 

Updated by StrangePickle

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

    • June’s Journey: Hidden Objects v3.33.5 Jailed Cheats +2
      Modded/Hacked App: June’s Journey: Hidden Objects By wooga gmbh
      Bundle ID: net.wooga.junes-journey-hidden-object-mystery-game
      iTunes Store Link: https://apps.apple.com/us/app/junes-journey-hidden-objects/id1200391796?uo=4


      Hack Features:
      - Infinite Currencies
      - Instant Hint


      iOS Hack Download IPA Link: https://iosgods.com/topic/176104-june%E2%80%99s-journey-hidden-objects-v2946-jailed-cheats-2/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 40 replies
    • Shadow Knight Ninja Games RPG v3.24.335 +3 Jailed Cheats
      Modded/Hacked App: Shadow Knight Ninja Games RPG By Fansipan Limited
      Bundle ID: com.fansipan.stickman.fight.shadow.knight
      iTunes Store Link: https://apps.apple.com/us/app/shadow-knight-ninja-games-rpg/id1502347241?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Custom Damage
      - Never Die
      - Always Win in PvP [Shows defeat but you still win]


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

       Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 32 replies
    • Shadow Knight Ninja Games RPG v3.24.335 +3 Cheats
      Modded/Hacked App: Shadow Knight-Ninja Dark Soul By Fansipan Limited
      Bundle ID: com.fansipan.stickman.fight.shadow.knight
      iTunes Store Link: https://apps.apple.com/us/app/shadow-knight-ninja-dark-soul/id1502347241?uo=4


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


      Hack Features:
      - Custom Damage
      - Never Die
      - Always Win in PvP [Shows defeat but you still win]


      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.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: 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 7: 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, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - @Zahir


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 260 replies
    • Bowmasters - Multiplayer Game v8.0.10 +3 Jailed Cheats
      Modded/Hacked App: Bowmasters - Multiplayer Game By Playgendary Limited
      Bundle ID: com.playgendary.bowmasters
      iTunes Store Link: https://apps.apple.com/us/app/bowmasters-multiplayer-game/id1118431695?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Unlimited Coins
      - Unlimited Gems
      - No Ads


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 103 replies
    • Godzilla x Kong: Titan Chasers v1.1.1 +2 Jailed Cheats
      Modded/Hacked App: Godzilla x Kong: Titan Chasers By Tilting Point LLC
      Bundle ID: com.tiltingpoint.monster
      iTunes Store Link: https://apps.apple.com/us/app/godzilla-x-kong-titan-chasers/id1670938027?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 36 replies
    • Bowmasters - Multiplayer Game v8.0.10 +3 Cheats
      Modded/Hacked App: Bowmasters - Multiplayer Game By Playgendary GmbH
      Bundle ID: com.playgendary.bowmasters
      iTunes Store Link: https://apps.apple.com/us/app/bowmasters-multiplayer-game/id1118431695?uo=4


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


      Hack Features:
      - Unlimited Coins
      - Unlimited Gems
      - No Ads


      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.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: 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 7: 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, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 265 replies
    • Pixel Heroic Legend-Idle Party v1.2.3 +2 Jailed Cheats
      Modded/Hacked App: Pixel Heroic Legend-Idle Party By Dreamplaygames Inc.
      Bundle ID: com.dreamplay.pixelheroiclegend
      iTunes Store Link: https://apps.apple.com/us/app/pixel-heroic-legend-idle-party/id6529533655?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

      - Damage Multiplier
      - Freeze Currencies


      Jailbreak required iOS hacks: 

       

      iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic which includes a video example.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 5: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 6: Enter your Apple Account email when prompted, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles / VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.

       

      Credits

      - AlyssaX64

       

      Cheat Video/Screenshots

      N/A
        • Agree
        • Thanks
        • Winner
        • Like
      • 46 replies
    • Pixel Heroic Legend-Idle Party v1.2.3 +2 Cheats
      Modded/Hacked App: Pixel Heroic Legend-Idle Party By Dreamplaygames Inc.
      Bundle ID: com.dreamplay.pixelheroiclegend
      iTunes Store Link: https://apps.apple.com/us/app/pixel-heroic-legend-idle-party/id6529533655?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

      - Damage Multiplier
      - Freeze Currencies


      For Non-Jailbroken & No Jailbreak required hacks: 

       

      iOS Hack Download Link


      Hidden Content

      Download Hack







       

      iOS Installation Instructions

      STEP 1: Download the .deb 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 needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue 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

       

      More iOS App Hacks & Android Modded APKs

      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOSGods No Jailbreak Section for a variety of modded games and apps for non-jailbroken iOS devices.

      Need Modded Android APKs too? Head over to the iOSGods Android Section for custom APK mods, cheats, and more.
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 47 replies
    • Godzilla x Kong: Titan Chasers v1.1.1 +2 Cheats
      Modded/Hacked App: Godzilla x Kong: Titan Chasers By Tilting Point LLC
      Bundle ID: com.tiltingpoint.monster
      iTunes Store Link: https://apps.apple.com/us/app/godzilla-x-kong-titan-chasers/id1670938027?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


      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
        • Informative
        • Haha
        • Thanks
        • Winner
        • Like
      • 44 replies
    • Johnny Trigger v1.12.45 +3 Cheats
      Modded/Hacked App: Johnny Trigger By SayGames LLC
      Bundle ID: com.time.trigger
      iTunes Store Link: https://apps.apple.com/us/app/johnny-trigger/id1491328118

      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - Filza / iFile or iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate or Substitute.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - gems - press restore purchase
      - money - press music button 
      - vip



      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.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will then need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: 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 7: 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 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, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 147 replies
    • Johnny Trigger v1.12.45 +3 Jailed Cheats
      Modded/Hacked App: Johnny Trigger By SayGames LLC
      Bundle ID: com.time.trigger
      iTunes Store Link: https://apps.apple.com/us/app/johnny-trigger/id1491328118?uo=4&at=1010lce4

      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Cydia Impactor.
      - A Computer Running Windows/Mac/Linux.


      Hack Features:
      - Add Gems - Tap on Restore Purchases in Settings
      - Add Money - Tap on Music in Settings
      - Unlock Everything - Tap on Haptic in Settings
      - Move Next Level - Tap on Sounds in Settings
      - Unlimited Ammo
      - No Ads Bought

      This hack works on the latest x64 or ARM64 iDevices: iPhone 5s, 6, 6 Plus, 6s, 6s Plus, 7, 7 Plus, 8, 8 Plus, X, Xr, Xs, Xs Max, SE, iPod Touch 6G, iPad Air, Air 2, Pro & iPad Mini 2, 3, 4 and later.


      Jailbreak required hack(s): https://iosgods.com/topic/118978-johnny-trigger-v164-add-gems-more/?tab=comments#comment-3675764


      iOS Hack Download Link:

      Hidden Content
      Download iOSGods App







      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer.
      STEP 3: Download Cydia Impactor and extract the archive.
      STEP 4: Open/Run Cydia Impactor on your computer then connect your iOS Device and wait until your device name shows up on Cydia Impactor.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Cydia Impactor application.
      STEP 6: You will now be asked to enter your iTunes/Apple ID email login & then your password. Go ahead and enter the required information..
      STEP 7: Wait for Cydia Impactor to finish sideloading/installing the hacked IPA.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will now need to go to Settings -> General -> Profiles & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.
      NOTE: For free Apple Developer accounts you will need to repeat this process every 7 days. Using a disposable Apple ID for this process is suggested but not required. Jailbroken iDevices can skip using Cydia Impactor and just install the IPA mod with AppSync & IPA Installer (or alternatives) from Cydia. If you have any questions or problems, read our Cydia Impactor topic and if you don't find a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - @DanYal


      Cheat Video/Screenshots:

      N/A
        • Agree
        • Haha
        • Winner
        • Like
      • 150 replies
    • Project Entropy v1.13.0 +2 Cheats
      Modded/Hacked App: Project Entropy By FunPlus International AG
      Bundle ID: com.entropy.global
      iTunes Store Link: https://apps.apple.com/us/app/project-entropy/id6443792064?uo=4

       

      📌 Mod Requirements

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

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Multiplier

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb 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 needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue 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

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
        • Thanks
        • Like
      • 7 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