Initial Upload
Hack version 1.6.2
							
								
								
									
										1
									
								
								BlockheadsInventoryHack.plist
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					{ Filter = { Bundles = ( "com.majicjungle.blockheads" ); }; }
 | 
				
			||||||
							
								
								
									
										17
									
								
								Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,17 @@
 | 
				
			|||||||
 | 
					ARCHS = arm64 armv7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					include theos/makefiles/common.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					TWEAK_NAME = BlockheadsInventoryHack
 | 
				
			||||||
 | 
					BlockheadsInventoryHack_FILES = Tweak.xm
 | 
				
			||||||
 | 
					BlockheadsInventoryHack_FRAMEWORKS = UIKit
 | 
				
			||||||
 | 
					include $(THEOS_MAKE_PATH)/tweak.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					BUNDLE_NAME = BlockheadsInventory
 | 
				
			||||||
 | 
					BlockheadsInventory_INSTALL_PATH = /Library/MobileSubstrate/DynamicLibraries/
 | 
				
			||||||
 | 
					include $(THEOS)/makefiles/bundle.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					after-install::
 | 
				
			||||||
 | 
						install.exec "killall -9 Blockheads; killall -9 Preferences"
 | 
				
			||||||
 | 
					SUBPROJECTS += blockheadsinventory
 | 
				
			||||||
 | 
					include $(THEOS_MAKE_PATH)/aggregate.mk
 | 
				
			||||||
							
								
								
									
										3
									
								
								README
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					Blockheads In-Game Menu Hack Manager Source 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					This project is (c) 2014 - 2015 Gh0stByte of iOSCheaters.com
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								Resources/Button2.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.9 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								Resources/Button22.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 761 B  | 
							
								
								
									
										
											BIN
										
									
								
								Resources/Img.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 4.7 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								Resources/button.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.1 KiB  | 
							
								
								
									
										92
									
								
								blockheadsinventory/BlockheadsInventory.mm
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,92 @@
 | 
				
			|||||||
 | 
					#import <Preferences/Preferences.h>
 | 
				
			||||||
 | 
					#import <substrate.h>
 | 
				
			||||||
 | 
					#import <UIKit/UIKit.h>
 | 
				
			||||||
 | 
					#import <Foundation/Foundation.h>
 | 
				
			||||||
 | 
					#import <CoreFoundation/CoreFoundation.h>
 | 
				
			||||||
 | 
					@interface BlockheadsInventoryListController: PSListController {
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@implementation BlockheadsInventoryListController
 | 
				
			||||||
 | 
					bool ty = false;
 | 
				
			||||||
 | 
					- (id)init
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						if(ty)
 | 
				
			||||||
 | 
						{
 | 
				
			||||||
 | 
							UIAlertView *a = [[UIAlertView alloc] initWithTitle:@"Thank you!" message:@"Thank you for donating! It means a lot to me!\n~Gh0stByte" delegate:nil cancelButtonTitle:@"You're Welcome!" otherButtonTitles:nil]; [a show]; [a release];
 | 
				
			||||||
 | 
							ty = false;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						self = [super init];
 | 
				
			||||||
 | 
						if(self)
 | 
				
			||||||
 | 
						{
 | 
				
			||||||
 | 
							if(!((UINavigationItem*)self.navigationItem).rightBarButtonItem)
 | 
				
			||||||
 | 
							{
 | 
				
			||||||
 | 
								UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithTitle:@"Donate" style:UIBarButtonItemStyleBordered target:self action:@selector(donate)];
 | 
				
			||||||
 | 
								((UINavigationItem*)self.navigationItem).rightBarButtonItem = button;
 | 
				
			||||||
 | 
								[button release];
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						CGRect screenRect = [[UIScreen mainScreen] bounds];
 | 
				
			||||||
 | 
						CGFloat screenWidth = screenRect.size.width;
 | 
				
			||||||
 | 
						CGFloat screenHeight = screenRect.size.height;
 | 
				
			||||||
 | 
						//Adsense In Patchers
 | 
				
			||||||
 | 
						UIWebView *webview=[[UIWebView alloc]initWithFrame:CGRectMake(0, screenHeight -50, screenWidth,screenHeight-100)];
 | 
				
			||||||
 | 
					       	[self.view addSubview:webview];
 | 
				
			||||||
 | 
					       	webview.scrollView.scrollEnabled = NO; 
 | 
				
			||||||
 | 
							webview.scrollView.bounces = NO;
 | 
				
			||||||
 | 
						//webview.scalesPageToFit = YES;
 | 
				
			||||||
 | 
					       NSString *url=@"http://idroidcheats.net/iOS/index.html";
 | 
				
			||||||
 | 
						NSURL *nsurl=[NSURL URLWithString:url];
 | 
				
			||||||
 | 
						NSURLRequest *nsrequest=[NSURLRequest requestWithURL:nsurl];
 | 
				
			||||||
 | 
						[webview loadRequest:nsrequest];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return self;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					- (id)specifiers {
 | 
				
			||||||
 | 
						if(_specifiers == nil) {
 | 
				
			||||||
 | 
							_specifiers = [[self loadSpecifiersFromPlistName:@"BlockheadsInventory" target:self] retain];
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						return _specifiers;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					-(void)donate{
 | 
				
			||||||
 | 
						[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://bit.ly/Gh0stBytePayPal"]];
 | 
				
			||||||
 | 
						ty = true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					-(void)iOSCheaters
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://iOSCheaters.com"]];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					-(void)respring
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						system("killall SpringBoard");
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@interface HackSettingsListController : PSListController {}
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					@implementation HackSettingsListController
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					@interface Hack2SettingsListController : PSListController {}
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					@implementation Hack2SettingsListController
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					@interface ToggleSettingsListController : PSListController {}
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					@implementation ToggleSettingsListController
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					@interface CreditsSettingsListController : PSListController {}
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					@implementation CreditsSettingsListController
 | 
				
			||||||
 | 
					-(void)donate
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://bit.ly/Gh0stBytePayPal"]];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					-(void)iOSCheaters
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://iOSCheaters.com"]];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					@end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// vim:ft=objc
 | 
				
			||||||
 | 
					//m:ft=objc
 | 
				
			||||||
							
								
								
									
										14
									
								
								blockheadsinventory/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
				
			|||||||
 | 
					ARCHS = arm64 armv7
 | 
				
			||||||
 | 
					include theos/makefiles/common.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					BUNDLE_NAME = BlockheadsInventory
 | 
				
			||||||
 | 
					BlockheadsInventory_FILES = BlockheadsInventory.mm
 | 
				
			||||||
 | 
					BlockheadsInventory_INSTALL_PATH = /Library/PreferenceBundles
 | 
				
			||||||
 | 
					BlockheadsInventory_FRAMEWORKS = UIKit
 | 
				
			||||||
 | 
					BlockheadsInventory_PRIVATE_FRAMEWORKS = Preferences
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					include $(THEOS_MAKE_PATH)/bundle.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					internal-stage::
 | 
				
			||||||
 | 
						$(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END)
 | 
				
			||||||
 | 
						$(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/BlockheadsInventory.plist$(ECHO_END)
 | 
				
			||||||
							
								
								
									
										115
									
								
								blockheadsinventory/Resources/BlockheadsInventory.plist
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,115 @@
 | 
				
			|||||||
 | 
					<?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>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>Drawer.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Inventory Settings</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>Hack2SettingsListController</string>
 | 
				
			||||||
 | 
								<key>isController</key>
 | 
				
			||||||
 | 
								<string>1</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>switch.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Toggle Hacks</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>ToggleSettingsListController</string>
 | 
				
			||||||
 | 
								<key>isController</key>
 | 
				
			||||||
 | 
								<string>1</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>Settings.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Menu Settings</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>HackSettingsListController</string>
 | 
				
			||||||
 | 
								<key>isController</key>
 | 
				
			||||||
 | 
								<string>1</string>
 | 
				
			||||||
 | 
						</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Credits</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>CreditsSettingsListController</string>
 | 
				
			||||||
 | 
								<key>isController</key>
 | 
				
			||||||
 | 
								<string>1</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>action</key>
 | 
				
			||||||
 | 
								<string>respring</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSButtonCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Respring</string>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>Power.png</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>action</key>
 | 
				
			||||||
 | 
								<string>iOSCheaters</string>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>ioscheaters.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSButtonCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Visit Us!</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>footerText</key>
 | 
				
			||||||
 | 
								<string>Made by Gh0stByte of iOSCheaters.com</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Blockheads</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										58
									
								
								blockheadsinventory/Resources/Credits.plist
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,58 @@
 | 
				
			|||||||
 | 
					<?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>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Hack and Menu made by Gh0stByte</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Image Help from AlphaMATTER</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Patcher Help from r0r0</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>Paypal.png</string>
 | 
				
			||||||
 | 
								<key>action</key>
 | 
				
			||||||
 | 
								<string>donate</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSButtonCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Donate</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>footerText</key>
 | 
				
			||||||
 | 
								<string>Made by Gh0stByte of iOSCheaters.com</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>action</key>
 | 
				
			||||||
 | 
								<string>iOSCheaters</string>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>ioscheaters.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSButtonCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Visit Us!</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Credits</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/Drawer.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.2 KiB  | 
							
								
								
									
										28
									
								
								blockheadsinventory/Resources/Info.plist
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,28 @@
 | 
				
			|||||||
 | 
					<?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>CFBundleDevelopmentRegion</key>
 | 
				
			||||||
 | 
						<string>English</string>
 | 
				
			||||||
 | 
						<key>CFBundleExecutable</key>
 | 
				
			||||||
 | 
						<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
						<key>CFBundleIdentifier</key>
 | 
				
			||||||
 | 
						<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
						<key>CFBundleInfoDictionaryVersion</key>
 | 
				
			||||||
 | 
						<string>6.0</string>
 | 
				
			||||||
 | 
						<key>CFBundlePackageType</key>
 | 
				
			||||||
 | 
						<string>BNDL</string>
 | 
				
			||||||
 | 
						<key>CFBundleShortVersionString</key>
 | 
				
			||||||
 | 
						<string>1.0.0</string>
 | 
				
			||||||
 | 
						<key>CFBundleSignature</key>
 | 
				
			||||||
 | 
						<string>????</string>
 | 
				
			||||||
 | 
						<key>CFBundleVersion</key>
 | 
				
			||||||
 | 
						<string>1.0</string>
 | 
				
			||||||
 | 
						<key>DTPlatformName</key>
 | 
				
			||||||
 | 
						<string>iphoneos</string>
 | 
				
			||||||
 | 
						<key>MinimumOSVersion</key>
 | 
				
			||||||
 | 
						<string>3.0</string>
 | 
				
			||||||
 | 
						<key>NSPrincipalClass</key>
 | 
				
			||||||
 | 
						<string>BlockheadsInventoryListController</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										356
									
								
								blockheadsinventory/Resources/Inventory Settings.plist
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,356 @@
 | 
				
			|||||||
 | 
					<?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>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>face.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<true/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kOn</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Enable Inventory Hack</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>PostNotification</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkListCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<string>5</string>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>PSListItemsController</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kItems</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Inventory Item</string>
 | 
				
			||||||
 | 
								<key>validTitles</key>
 | 
				
			||||||
 | 
								<array>
 | 
				
			||||||
 | 
									<string>hand</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>flint</string>
 | 
				
			||||||
 | 
									<string>sticks</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>flint axe</string>
 | 
				
			||||||
 | 
									<string>flint spear</string>
 | 
				
			||||||
 | 
									<string>flint pickaxe</string>
 | 
				
			||||||
 | 
									<string>double time</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>time crystal</string>
 | 
				
			||||||
 | 
									<string>baskets</string>
 | 
				
			||||||
 | 
									<string>embers</string>
 | 
				
			||||||
 | 
									<string>charcoal</string>
 | 
				
			||||||
 | 
									<string>campfires</string>
 | 
				
			||||||
 | 
									<string>flint spades</string>
 | 
				
			||||||
 | 
									<string>basic torches</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>blockheads</string>
 | 
				
			||||||
 | 
									<string>food</string>
 | 
				
			||||||
 | 
									<string>apples</string>
 | 
				
			||||||
 | 
									<string>mangos</string>
 | 
				
			||||||
 | 
									<string>maple seeds</string>
 | 
				
			||||||
 | 
									<string>prickly pears</string>
 | 
				
			||||||
 | 
									<string>flint machetes</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>pine cones </string>
 | 
				
			||||||
 | 
									<string>clay</string>
 | 
				
			||||||
 | 
									<string>raw dodo meat</string>
 | 
				
			||||||
 | 
									<string>dodo feathers</string>
 | 
				
			||||||
 | 
									<string>copper ore</string>
 | 
				
			||||||
 | 
									<string>iron ore</string>
 | 
				
			||||||
 | 
									<string>stone axes</string>
 | 
				
			||||||
 | 
									<string>stone pickaxes</string>
 | 
				
			||||||
 | 
									<string>copper ingots</string>
 | 
				
			||||||
 | 
									<string>tin ore</string>
 | 
				
			||||||
 | 
									<string>tin ingots</string>
 | 
				
			||||||
 | 
									<string>bronze ingots</string>
 | 
				
			||||||
 | 
									<string>copper spears</string>
 | 
				
			||||||
 | 
									<string>tin spades</string>
 | 
				
			||||||
 | 
									<string>copper arrows</string>
 | 
				
			||||||
 | 
									<string>copper bow and arrows</string>
 | 
				
			||||||
 | 
									<string>bronze pickaxes</string>
 | 
				
			||||||
 | 
									<string>string</string>
 | 
				
			||||||
 | 
									<string>clay jugs</string>
 | 
				
			||||||
 | 
									<string>coconuts</string>
 | 
				
			||||||
 | 
									<string>oil lanterns </string>
 | 
				
			||||||
 | 
									<string>oil</string>
 | 
				
			||||||
 | 
									<string>bronze machetes</string>
 | 
				
			||||||
 | 
									<string>bronze swords </string>
 | 
				
			||||||
 | 
									<string>coal</string>
 | 
				
			||||||
 | 
									<string>wooden doors</string>
 | 
				
			||||||
 | 
									<string>ladders</string>
 | 
				
			||||||
 | 
									<string>flax seeds</string>
 | 
				
			||||||
 | 
									<string>flax</string>
 | 
				
			||||||
 | 
									<string>indian yellow</string>
 | 
				
			||||||
 | 
									<string>red ochre</string>
 | 
				
			||||||
 | 
									<string>windows</string>
 | 
				
			||||||
 | 
									<string>cooked dodo meat</string>
 | 
				
			||||||
 | 
									<string>oranges</string>
 | 
				
			||||||
 | 
									<string>sunflower seeds</string>
 | 
				
			||||||
 | 
									<string>corn</string>
 | 
				
			||||||
 | 
									<string>wooden beds</string>
 | 
				
			||||||
 | 
									<string>stone spades </string>
 | 
				
			||||||
 | 
									<string>iron ingots</string>
 | 
				
			||||||
 | 
									<string>iron pickaxes</string>
 | 
				
			||||||
 | 
									<string>iron machetes </string>
 | 
				
			||||||
 | 
									<string>iron swords </string>
 | 
				
			||||||
 | 
									<string>trapdoors </string>
 | 
				
			||||||
 | 
									<string>iron axes</string>
 | 
				
			||||||
 | 
									<string>carrots</string>
 | 
				
			||||||
 | 
									<string>gold ingots</string>
 | 
				
			||||||
 | 
									<string>gold nuggets</string>
 | 
				
			||||||
 | 
									<string>carrot on sticks</string>
 | 
				
			||||||
 | 
									<string>rubies</string>
 | 
				
			||||||
 | 
									<string>emeralds</string>
 | 
				
			||||||
 | 
									<string>cherries </string>
 | 
				
			||||||
 | 
									<string>coffee cherries </string>
 | 
				
			||||||
 | 
									<string>green coffee beans</string>
 | 
				
			||||||
 | 
									<string>cups</string>
 | 
				
			||||||
 | 
									<string>coffe</string>
 | 
				
			||||||
 | 
									<string>roasted coffee beans </string>
 | 
				
			||||||
 | 
									<string>linen </string>
 | 
				
			||||||
 | 
									<string>linen pants</string>
 | 
				
			||||||
 | 
									<string>linen shirts</string>
 | 
				
			||||||
 | 
									<string>sapphires </string>
 | 
				
			||||||
 | 
									<string>amethysts</string>
 | 
				
			||||||
 | 
									<string>diamonds</string>
 | 
				
			||||||
 | 
									<string>gold spades</string>
 | 
				
			||||||
 | 
									<string>gold pickaxes</string>
 | 
				
			||||||
 | 
									<string>dodo eggs</string>
 | 
				
			||||||
 | 
									<string>steel ingots</string>
 | 
				
			||||||
 | 
									<string>steel pickaxes</string>
 | 
				
			||||||
 | 
									<string>amethysts pickaxe</string>
 | 
				
			||||||
 | 
									<string>sapphire pickaxes</string>
 | 
				
			||||||
 | 
									<string>emerald pickaxes</string>
 | 
				
			||||||
 | 
									<string>ruby pickaxes</string>
 | 
				
			||||||
 | 
									<string>diamond pickaxes</string>
 | 
				
			||||||
 | 
									<string>ultramarine blue</string>
 | 
				
			||||||
 | 
									<string>carbon black</string>
 | 
				
			||||||
 | 
									<string>marble white</string>
 | 
				
			||||||
 | 
									<string>tin bucket</string>
 | 
				
			||||||
 | 
									<string>paint</string>
 | 
				
			||||||
 | 
									<string>paint stripper</string>
 | 
				
			||||||
 | 
									<string>bucket of water</string>
 | 
				
			||||||
 | 
									<string>pigment</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow?</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>emerald green</string>
 | 
				
			||||||
 | 
									<string>tyrian purple</string>
 | 
				
			||||||
 | 
									<string>boat</string>
 | 
				
			||||||
 | 
									<string>chilli</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow pants</string>
 | 
				
			||||||
 | 
									<string>unknown - ranbow shirt</string>
 | 
				
			||||||
 | 
									<string>linen cap</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow cap</string>
 | 
				
			||||||
 | 
									<string>linen brimmed hat</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow hat</string>
 | 
				
			||||||
 | 
									<string>copper blue</string>
 | 
				
			||||||
 | 
									<string>leather</string>
 | 
				
			||||||
 | 
									<string>fur</string>
 | 
				
			||||||
 | 
									<string>leather jacket</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow jacket</string>
 | 
				
			||||||
 | 
									<string>leather boots</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow boots</string>
 | 
				
			||||||
 | 
									<string>fur coat</string>
 | 
				
			||||||
 | 
									<string>fur boots</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>leather pants</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>unknown - arrow (up)</string>
 | 
				
			||||||
 | 
									<string>camera</string>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									<string>portal</string>
 | 
				
			||||||
 | 
									<string>amethyst portal</string>
 | 
				
			||||||
 | 
									<string>saphire portal</string>
 | 
				
			||||||
 | 
									<string>emerald portal</string>
 | 
				
			||||||
 | 
									<string>ruby portal</string>
 | 
				
			||||||
 | 
									<string>diamond portal</string>
 | 
				
			||||||
 | 
									<string>sunrise hat of fullness</string>
 | 
				
			||||||
 | 
									<string>sunset skirt of happiness</string>
 | 
				
			||||||
 | 
									<string>north pole hat of warmth</string>
 | 
				
			||||||
 | 
									<string>south pole boots of speed</string>
 | 
				
			||||||
 | 
									<string>kelp</string>
 | 
				
			||||||
 | 
									<string>amethyst chandelier</string>
 | 
				
			||||||
 | 
									<string>saphire chandelier</string>
 | 
				
			||||||
 | 
									<string>emerald chandelier</string>
 | 
				
			||||||
 | 
									<string>ruby chandelier</string>
 | 
				
			||||||
 | 
									<string>diamond chandelier</string>
 | 
				
			||||||
 | 
									<string>steel lanterns</string>
 | 
				
			||||||
 | 
								</array>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								<key>validValues</key>
 | 
				
			||||||
 | 
								<array>
 | 
				
			||||||
 | 
									<integer>1</integer>
 | 
				
			||||||
 | 
									<integer>2</integer>
 | 
				
			||||||
 | 
									<integer>3</integer>
 | 
				
			||||||
 | 
									<integer>4</integer>
 | 
				
			||||||
 | 
									<integer>5</integer>
 | 
				
			||||||
 | 
									<integer>6</integer>
 | 
				
			||||||
 | 
									<integer>7</integer>
 | 
				
			||||||
 | 
									<integer>8</integer>
 | 
				
			||||||
 | 
									<integer>9</integer>
 | 
				
			||||||
 | 
									<integer>10</integer>
 | 
				
			||||||
 | 
									<integer>11</integer>
 | 
				
			||||||
 | 
									<integer>12</integer>
 | 
				
			||||||
 | 
									<integer>13</integer>
 | 
				
			||||||
 | 
									<integer>14</integer>
 | 
				
			||||||
 | 
									<integer>15</integer>
 | 
				
			||||||
 | 
									<integer>16</integer>
 | 
				
			||||||
 | 
									<integer>17</integer>
 | 
				
			||||||
 | 
									<integer>18</integer>
 | 
				
			||||||
 | 
									<integer>19</integer>
 | 
				
			||||||
 | 
									<integer>20</integer>
 | 
				
			||||||
 | 
									<integer>21</integer>
 | 
				
			||||||
 | 
									<integer>22</integer>
 | 
				
			||||||
 | 
									<integer>23</integer>
 | 
				
			||||||
 | 
									<integer>24</integer>
 | 
				
			||||||
 | 
									<integer>25</integer>
 | 
				
			||||||
 | 
									<integer>26</integer>
 | 
				
			||||||
 | 
									<integer>27</integer>
 | 
				
			||||||
 | 
									<integer>28</integer>
 | 
				
			||||||
 | 
									<integer>29</integer>
 | 
				
			||||||
 | 
									<integer>30</integer>
 | 
				
			||||||
 | 
									<integer>31</integer>
 | 
				
			||||||
 | 
									<integer>32</integer>
 | 
				
			||||||
 | 
									<integer>33</integer>
 | 
				
			||||||
 | 
									<integer>34</integer>
 | 
				
			||||||
 | 
									<integer>35</integer>
 | 
				
			||||||
 | 
									<integer>36</integer>
 | 
				
			||||||
 | 
									<integer>37</integer>
 | 
				
			||||||
 | 
									<integer>38</integer>
 | 
				
			||||||
 | 
									<integer>39</integer>
 | 
				
			||||||
 | 
									<integer>40</integer>
 | 
				
			||||||
 | 
									<integer>41</integer>
 | 
				
			||||||
 | 
									<integer>42</integer>
 | 
				
			||||||
 | 
									<integer>43</integer>
 | 
				
			||||||
 | 
									<integer>44</integer>
 | 
				
			||||||
 | 
									<integer>45</integer>
 | 
				
			||||||
 | 
									<integer>46</integer>
 | 
				
			||||||
 | 
									<integer>47</integer>
 | 
				
			||||||
 | 
									<integer>48</integer>
 | 
				
			||||||
 | 
									<integer>49</integer>
 | 
				
			||||||
 | 
									<integer>50</integer>
 | 
				
			||||||
 | 
									<integer>51</integer>
 | 
				
			||||||
 | 
									<integer>52</integer>
 | 
				
			||||||
 | 
									<integer>53</integer>
 | 
				
			||||||
 | 
									<integer>54</integer>
 | 
				
			||||||
 | 
									<integer>55</integer>
 | 
				
			||||||
 | 
									<integer>56</integer>
 | 
				
			||||||
 | 
									<integer>57</integer>
 | 
				
			||||||
 | 
									<integer>58</integer>
 | 
				
			||||||
 | 
									<integer>59</integer>
 | 
				
			||||||
 | 
									<integer>60</integer>
 | 
				
			||||||
 | 
									<integer>61</integer>
 | 
				
			||||||
 | 
									<integer>62</integer>
 | 
				
			||||||
 | 
									<integer>63</integer>
 | 
				
			||||||
 | 
									<integer>64</integer>
 | 
				
			||||||
 | 
									<integer>65</integer>
 | 
				
			||||||
 | 
									<integer>66</integer>
 | 
				
			||||||
 | 
									<integer>67</integer>
 | 
				
			||||||
 | 
									<integer>68</integer>
 | 
				
			||||||
 | 
									<integer>69</integer>
 | 
				
			||||||
 | 
									<integer>70</integer>
 | 
				
			||||||
 | 
									<integer>71</integer>
 | 
				
			||||||
 | 
									<integer>72</integer>
 | 
				
			||||||
 | 
									<integer>73</integer>
 | 
				
			||||||
 | 
									<integer>74</integer>
 | 
				
			||||||
 | 
									<integer>75</integer>
 | 
				
			||||||
 | 
									<integer>76</integer>
 | 
				
			||||||
 | 
									<integer>77</integer>
 | 
				
			||||||
 | 
									<integer>78</integer>
 | 
				
			||||||
 | 
									<integer>79</integer>
 | 
				
			||||||
 | 
									<integer>80</integer>
 | 
				
			||||||
 | 
									<integer>81</integer>
 | 
				
			||||||
 | 
									<integer>82</integer>
 | 
				
			||||||
 | 
									<integer>83</integer>
 | 
				
			||||||
 | 
									<integer>84</integer>
 | 
				
			||||||
 | 
									<integer>85</integer>
 | 
				
			||||||
 | 
									<integer>86</integer>
 | 
				
			||||||
 | 
									<integer>87</integer>
 | 
				
			||||||
 | 
									<integer>88</integer>
 | 
				
			||||||
 | 
									<integer>89</integer>
 | 
				
			||||||
 | 
									<integer>90</integer>
 | 
				
			||||||
 | 
									<integer>91</integer>
 | 
				
			||||||
 | 
									<integer>92</integer>
 | 
				
			||||||
 | 
									<integer>93</integer>
 | 
				
			||||||
 | 
									<integer>94</integer>
 | 
				
			||||||
 | 
									<integer>95</integer>
 | 
				
			||||||
 | 
									<integer>96</integer>
 | 
				
			||||||
 | 
									<integer>97</integer>
 | 
				
			||||||
 | 
									<integer>98</integer>
 | 
				
			||||||
 | 
									<integer>99</integer>
 | 
				
			||||||
 | 
									<integer>100</integer>
 | 
				
			||||||
 | 
									<integer>101</integer>
 | 
				
			||||||
 | 
									<integer>102</integer>
 | 
				
			||||||
 | 
									<integer>103</integer>
 | 
				
			||||||
 | 
									<integer>104</integer>
 | 
				
			||||||
 | 
									<integer>105</integer>
 | 
				
			||||||
 | 
									<integer>106</integer>
 | 
				
			||||||
 | 
									<integer>107</integer>
 | 
				
			||||||
 | 
									<integer>108</integer>
 | 
				
			||||||
 | 
									<integer>109</integer>
 | 
				
			||||||
 | 
									<integer>110</integer>
 | 
				
			||||||
 | 
									<integer>111</integer>
 | 
				
			||||||
 | 
									<integer>112</integer>
 | 
				
			||||||
 | 
									<integer>113</integer>
 | 
				
			||||||
 | 
									<integer>114</integer>
 | 
				
			||||||
 | 
									<integer>115</integer>
 | 
				
			||||||
 | 
									<integer>116</integer>
 | 
				
			||||||
 | 
									<integer>117</integer>
 | 
				
			||||||
 | 
									<integer>118</integer>
 | 
				
			||||||
 | 
									<integer>119</integer>
 | 
				
			||||||
 | 
									<integer>120</integer>
 | 
				
			||||||
 | 
									<integer>121</integer>
 | 
				
			||||||
 | 
									<integer>122</integer>
 | 
				
			||||||
 | 
									<integer>123</integer>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									<integer>124</integer>
 | 
				
			||||||
 | 
									<integer>125</integer>
 | 
				
			||||||
 | 
									<integer>126</integer>
 | 
				
			||||||
 | 
									<integer>127</integer>
 | 
				
			||||||
 | 
									<integer>128</integer>
 | 
				
			||||||
 | 
									<integer>129</integer>
 | 
				
			||||||
 | 
									<integer>130</integer>
 | 
				
			||||||
 | 
									<integer>131</integer>
 | 
				
			||||||
 | 
									<integer>132</integer>
 | 
				
			||||||
 | 
									<integer>133</integer>
 | 
				
			||||||
 | 
									<integer>134</integer>
 | 
				
			||||||
 | 
									<integer>135</integer>
 | 
				
			||||||
 | 
									<integer>136</integer>
 | 
				
			||||||
 | 
									<integer>137</integer>
 | 
				
			||||||
 | 
									<integer>138</integer>
 | 
				
			||||||
 | 
									<integer>139</integer>
 | 
				
			||||||
 | 
									<integer>140</integer>
 | 
				
			||||||
 | 
									<integer>141</integer>
 | 
				
			||||||
 | 
									<integer>142</integer>
 | 
				
			||||||
 | 
									<integer>143</integer>
 | 
				
			||||||
 | 
									<integer>144</integer>
 | 
				
			||||||
 | 
									<integer>145</integer>
 | 
				
			||||||
 | 
									<integer>146</integer>
 | 
				
			||||||
 | 
									<integer>147</integer>
 | 
				
			||||||
 | 
									<integer>148</integer>
 | 
				
			||||||
 | 
									<integer>149</integer>
 | 
				
			||||||
 | 
									<integer>150</integer>
 | 
				
			||||||
 | 
								</array>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Inventory Settings</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										101
									
								
								blockheadsinventory/Resources/Menu Settings.plist
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,101 @@
 | 
				
			|||||||
 | 
					<?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>entry</key>
 | 
				
			||||||
 | 
						<dict>
 | 
				
			||||||
 | 
							<key>cell</key>
 | 
				
			||||||
 | 
							<string>PSLinkCell</string>
 | 
				
			||||||
 | 
							<key>label</key>
 | 
				
			||||||
 | 
							<string>Credits</string>
 | 
				
			||||||
 | 
						</dict>
 | 
				
			||||||
 | 
						<key>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<true/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kBOn</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Enable In-Game Menu</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
									<key>cell</key>
 | 
				
			||||||
 | 
									<string>PSEditTextCell</string>
 | 
				
			||||||
 | 
									<key>default</key>
 | 
				
			||||||
 | 
									<string>40</string>
 | 
				
			||||||
 | 
									<key>defaults</key>
 | 
				
			||||||
 | 
									<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
									<key>key</key>
 | 
				
			||||||
 | 
									<string>kX</string>
 | 
				
			||||||
 | 
									<key>label</key>
 | 
				
			||||||
 | 
									<string>Buton x coord</string>
 | 
				
			||||||
 | 
									<key>placeholder</key>
 | 
				
			||||||
 | 
									<string>0</string>
 | 
				
			||||||
 | 
									<key>isNumeric</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
									<key>noAutoCorrect</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
									<key>cell</key>
 | 
				
			||||||
 | 
									<string>PSEditTextCell</string>
 | 
				
			||||||
 | 
									<key>default</key>
 | 
				
			||||||
 | 
									<string>0</string>
 | 
				
			||||||
 | 
									<key>defaults</key>
 | 
				
			||||||
 | 
									<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
									<key>key</key>
 | 
				
			||||||
 | 
									<string>kY</string>
 | 
				
			||||||
 | 
									<key>label</key>
 | 
				
			||||||
 | 
									<string>Buton y coord</string>
 | 
				
			||||||
 | 
									<key>placeholder</key>
 | 
				
			||||||
 | 
									<string>0</string>
 | 
				
			||||||
 | 
									<key>isNumeric</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
									<key>noAutoCorrect</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kSearch</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Beta Item Search</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>footerText</key>
 | 
				
			||||||
 | 
								<string>Must restart blockheads app in order for settings to take effect</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Hack Settings</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/Paypal.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.7 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/Power.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.7 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/Settings.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/TheBlockheads.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.6 KiB  | 
							
								
								
									
										214
									
								
								blockheadsinventory/Resources/Toggle Hacks.plist
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,214 @@
 | 
				
			|||||||
 | 
					<?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>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>crystal.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kCrystalsBool</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Enable Crystal Hack</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
									<key>cell</key>
 | 
				
			||||||
 | 
									<string>PSEditTextCell</string>
 | 
				
			||||||
 | 
									<key>defaults</key>
 | 
				
			||||||
 | 
									<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
									<key>key</key>
 | 
				
			||||||
 | 
									<string>kCrystals</string>
 | 
				
			||||||
 | 
									<key>label</key>
 | 
				
			||||||
 | 
									<string>Crystal Count:</string>
 | 
				
			||||||
 | 
									<key>placeholder</key>
 | 
				
			||||||
 | 
									<string>Enter Desired Count</string>
 | 
				
			||||||
 | 
									<key>isNumeric</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
									<key>noAutoCorrect</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>coin.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kCoins</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Infinite Coins</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kSpeed</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Speed Boost</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kDoubleTime</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Double Time Unlocked</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kSleep</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Can Always Sleep</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kMeditate</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Can Always Meditate</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kView</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Crazy View Distance</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kSolar</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>SolarPanel Always Generate</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>portal.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kTeleport</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Can Always Teleport</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>block4.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kHD</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>HD Unlocked</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>portal.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kCraftItems</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Max Level (Everything)</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>portal.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kDie</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Immortality</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>block2.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kJetpack</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Jetpack Fuel</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Toggle Hacks</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block1.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block10.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block11.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block12.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block2.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block3.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block4.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block5.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block6.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block7.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block8.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/block9.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/clock.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/coin.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/crystal.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/dollar.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.6 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/exit.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/face.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.8 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/goldp.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/icon1.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/ioscheaters.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 787 B  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/portal.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/portal1.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/portal2.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/portal3.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/portal4.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/portal5.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/portal6.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/switch.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/Resources/system.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.6 KiB  | 
							
								
								
									
										21
									
								
								blockheadsinventory/entry.plist
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,21 @@
 | 
				
			|||||||
 | 
					<?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>entry</key>
 | 
				
			||||||
 | 
					  <dict>
 | 
				
			||||||
 | 
					    <key>bundle</key>
 | 
				
			||||||
 | 
					    <string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
					    <key>cell</key>
 | 
				
			||||||
 | 
					    <string>PSLinkCell</string>
 | 
				
			||||||
 | 
					    <key>detail</key>
 | 
				
			||||||
 | 
					    <string>BlockheadsInventoryListController</string>
 | 
				
			||||||
 | 
					    <key>icon</key>
 | 
				
			||||||
 | 
					    <string>icon.png</string>
 | 
				
			||||||
 | 
					    <key>isController</key>
 | 
				
			||||||
 | 
					    <string>1</string>
 | 
				
			||||||
 | 
					    <key>label</key>
 | 
				
			||||||
 | 
					    <string>Blockheads Inventory Hack</string>
 | 
				
			||||||
 | 
					  </dict>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										0
									
								
								blockheadsinventory/obj/.stamp
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,115 @@
 | 
				
			|||||||
 | 
					<?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>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>Drawer.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Inventory Settings</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>Hack2SettingsListController</string>
 | 
				
			||||||
 | 
								<key>isController</key>
 | 
				
			||||||
 | 
								<string>1</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>switch.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Toggle Hacks</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>ToggleSettingsListController</string>
 | 
				
			||||||
 | 
								<key>isController</key>
 | 
				
			||||||
 | 
								<string>1</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>Settings.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Menu Settings</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>HackSettingsListController</string>
 | 
				
			||||||
 | 
								<key>isController</key>
 | 
				
			||||||
 | 
								<string>1</string>
 | 
				
			||||||
 | 
						</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Credits</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>CreditsSettingsListController</string>
 | 
				
			||||||
 | 
								<key>isController</key>
 | 
				
			||||||
 | 
								<string>1</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>action</key>
 | 
				
			||||||
 | 
								<string>respring</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSButtonCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Respring</string>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>Power.png</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>action</key>
 | 
				
			||||||
 | 
								<string>iOSCheaters</string>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>ioscheaters.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSButtonCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Visit Us!</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>footerText</key>
 | 
				
			||||||
 | 
								<string>Made by Gh0stByte of iOSCheaters.com</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Blockheads</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
@ -0,0 +1,58 @@
 | 
				
			|||||||
 | 
					<?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>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Hack and Menu made by Gh0stByte</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Image Help from AlphaMATTER</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Patcher Help from r0r0</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>Paypal.png</string>
 | 
				
			||||||
 | 
								<key>action</key>
 | 
				
			||||||
 | 
								<string>donate</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSButtonCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Donate</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>footerText</key>
 | 
				
			||||||
 | 
								<string>Made by Gh0stByte of iOSCheaters.com</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>action</key>
 | 
				
			||||||
 | 
								<string>iOSCheaters</string>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>ioscheaters.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSButtonCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Visit Us!</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Credits</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/Drawer.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.2 KiB  | 
@ -0,0 +1,28 @@
 | 
				
			|||||||
 | 
					<?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>CFBundleDevelopmentRegion</key>
 | 
				
			||||||
 | 
						<string>English</string>
 | 
				
			||||||
 | 
						<key>CFBundleExecutable</key>
 | 
				
			||||||
 | 
						<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
						<key>CFBundleIdentifier</key>
 | 
				
			||||||
 | 
						<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
						<key>CFBundleInfoDictionaryVersion</key>
 | 
				
			||||||
 | 
						<string>6.0</string>
 | 
				
			||||||
 | 
						<key>CFBundlePackageType</key>
 | 
				
			||||||
 | 
						<string>BNDL</string>
 | 
				
			||||||
 | 
						<key>CFBundleShortVersionString</key>
 | 
				
			||||||
 | 
						<string>1.0.0</string>
 | 
				
			||||||
 | 
						<key>CFBundleSignature</key>
 | 
				
			||||||
 | 
						<string>????</string>
 | 
				
			||||||
 | 
						<key>CFBundleVersion</key>
 | 
				
			||||||
 | 
						<string>1.0</string>
 | 
				
			||||||
 | 
						<key>DTPlatformName</key>
 | 
				
			||||||
 | 
						<string>iphoneos</string>
 | 
				
			||||||
 | 
						<key>MinimumOSVersion</key>
 | 
				
			||||||
 | 
						<string>3.0</string>
 | 
				
			||||||
 | 
						<key>NSPrincipalClass</key>
 | 
				
			||||||
 | 
						<string>BlockheadsInventoryListController</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
@ -0,0 +1,356 @@
 | 
				
			|||||||
 | 
					<?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>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>face.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<true/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kOn</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Enable Inventory Hack</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>PostNotification</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSLinkListCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<string>5</string>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>detail</key>
 | 
				
			||||||
 | 
								<string>PSListItemsController</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kItems</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Inventory Item</string>
 | 
				
			||||||
 | 
								<key>validTitles</key>
 | 
				
			||||||
 | 
								<array>
 | 
				
			||||||
 | 
									<string>hand</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>flint</string>
 | 
				
			||||||
 | 
									<string>sticks</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>flint axe</string>
 | 
				
			||||||
 | 
									<string>flint spear</string>
 | 
				
			||||||
 | 
									<string>flint pickaxe</string>
 | 
				
			||||||
 | 
									<string>double time</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>time crystal</string>
 | 
				
			||||||
 | 
									<string>baskets</string>
 | 
				
			||||||
 | 
									<string>embers</string>
 | 
				
			||||||
 | 
									<string>charcoal</string>
 | 
				
			||||||
 | 
									<string>campfires</string>
 | 
				
			||||||
 | 
									<string>flint spades</string>
 | 
				
			||||||
 | 
									<string>basic torches</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>blockheads</string>
 | 
				
			||||||
 | 
									<string>food</string>
 | 
				
			||||||
 | 
									<string>apples</string>
 | 
				
			||||||
 | 
									<string>mangos</string>
 | 
				
			||||||
 | 
									<string>maple seeds</string>
 | 
				
			||||||
 | 
									<string>prickly pears</string>
 | 
				
			||||||
 | 
									<string>flint machetes</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>pine cones </string>
 | 
				
			||||||
 | 
									<string>clay</string>
 | 
				
			||||||
 | 
									<string>raw dodo meat</string>
 | 
				
			||||||
 | 
									<string>dodo feathers</string>
 | 
				
			||||||
 | 
									<string>copper ore</string>
 | 
				
			||||||
 | 
									<string>iron ore</string>
 | 
				
			||||||
 | 
									<string>stone axes</string>
 | 
				
			||||||
 | 
									<string>stone pickaxes</string>
 | 
				
			||||||
 | 
									<string>copper ingots</string>
 | 
				
			||||||
 | 
									<string>tin ore</string>
 | 
				
			||||||
 | 
									<string>tin ingots</string>
 | 
				
			||||||
 | 
									<string>bronze ingots</string>
 | 
				
			||||||
 | 
									<string>copper spears</string>
 | 
				
			||||||
 | 
									<string>tin spades</string>
 | 
				
			||||||
 | 
									<string>copper arrows</string>
 | 
				
			||||||
 | 
									<string>copper bow and arrows</string>
 | 
				
			||||||
 | 
									<string>bronze pickaxes</string>
 | 
				
			||||||
 | 
									<string>string</string>
 | 
				
			||||||
 | 
									<string>clay jugs</string>
 | 
				
			||||||
 | 
									<string>coconuts</string>
 | 
				
			||||||
 | 
									<string>oil lanterns </string>
 | 
				
			||||||
 | 
									<string>oil</string>
 | 
				
			||||||
 | 
									<string>bronze machetes</string>
 | 
				
			||||||
 | 
									<string>bronze swords </string>
 | 
				
			||||||
 | 
									<string>coal</string>
 | 
				
			||||||
 | 
									<string>wooden doors</string>
 | 
				
			||||||
 | 
									<string>ladders</string>
 | 
				
			||||||
 | 
									<string>flax seeds</string>
 | 
				
			||||||
 | 
									<string>flax</string>
 | 
				
			||||||
 | 
									<string>indian yellow</string>
 | 
				
			||||||
 | 
									<string>red ochre</string>
 | 
				
			||||||
 | 
									<string>windows</string>
 | 
				
			||||||
 | 
									<string>cooked dodo meat</string>
 | 
				
			||||||
 | 
									<string>oranges</string>
 | 
				
			||||||
 | 
									<string>sunflower seeds</string>
 | 
				
			||||||
 | 
									<string>corn</string>
 | 
				
			||||||
 | 
									<string>wooden beds</string>
 | 
				
			||||||
 | 
									<string>stone spades </string>
 | 
				
			||||||
 | 
									<string>iron ingots</string>
 | 
				
			||||||
 | 
									<string>iron pickaxes</string>
 | 
				
			||||||
 | 
									<string>iron machetes </string>
 | 
				
			||||||
 | 
									<string>iron swords </string>
 | 
				
			||||||
 | 
									<string>trapdoors </string>
 | 
				
			||||||
 | 
									<string>iron axes</string>
 | 
				
			||||||
 | 
									<string>carrots</string>
 | 
				
			||||||
 | 
									<string>gold ingots</string>
 | 
				
			||||||
 | 
									<string>gold nuggets</string>
 | 
				
			||||||
 | 
									<string>carrot on sticks</string>
 | 
				
			||||||
 | 
									<string>rubies</string>
 | 
				
			||||||
 | 
									<string>emeralds</string>
 | 
				
			||||||
 | 
									<string>cherries </string>
 | 
				
			||||||
 | 
									<string>coffee cherries </string>
 | 
				
			||||||
 | 
									<string>green coffee beans</string>
 | 
				
			||||||
 | 
									<string>cups</string>
 | 
				
			||||||
 | 
									<string>coffe</string>
 | 
				
			||||||
 | 
									<string>roasted coffee beans </string>
 | 
				
			||||||
 | 
									<string>linen </string>
 | 
				
			||||||
 | 
									<string>linen pants</string>
 | 
				
			||||||
 | 
									<string>linen shirts</string>
 | 
				
			||||||
 | 
									<string>sapphires </string>
 | 
				
			||||||
 | 
									<string>amethysts</string>
 | 
				
			||||||
 | 
									<string>diamonds</string>
 | 
				
			||||||
 | 
									<string>gold spades</string>
 | 
				
			||||||
 | 
									<string>gold pickaxes</string>
 | 
				
			||||||
 | 
									<string>dodo eggs</string>
 | 
				
			||||||
 | 
									<string>steel ingots</string>
 | 
				
			||||||
 | 
									<string>steel pickaxes</string>
 | 
				
			||||||
 | 
									<string>amethysts pickaxe</string>
 | 
				
			||||||
 | 
									<string>sapphire pickaxes</string>
 | 
				
			||||||
 | 
									<string>emerald pickaxes</string>
 | 
				
			||||||
 | 
									<string>ruby pickaxes</string>
 | 
				
			||||||
 | 
									<string>diamond pickaxes</string>
 | 
				
			||||||
 | 
									<string>ultramarine blue</string>
 | 
				
			||||||
 | 
									<string>carbon black</string>
 | 
				
			||||||
 | 
									<string>marble white</string>
 | 
				
			||||||
 | 
									<string>tin bucket</string>
 | 
				
			||||||
 | 
									<string>paint</string>
 | 
				
			||||||
 | 
									<string>paint stripper</string>
 | 
				
			||||||
 | 
									<string>bucket of water</string>
 | 
				
			||||||
 | 
									<string>pigment</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow?</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>emerald green</string>
 | 
				
			||||||
 | 
									<string>tyrian purple</string>
 | 
				
			||||||
 | 
									<string>boat</string>
 | 
				
			||||||
 | 
									<string>chilli</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow pants</string>
 | 
				
			||||||
 | 
									<string>unknown - ranbow shirt</string>
 | 
				
			||||||
 | 
									<string>linen cap</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow cap</string>
 | 
				
			||||||
 | 
									<string>linen brimmed hat</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow hat</string>
 | 
				
			||||||
 | 
									<string>copper blue</string>
 | 
				
			||||||
 | 
									<string>leather</string>
 | 
				
			||||||
 | 
									<string>fur</string>
 | 
				
			||||||
 | 
									<string>leather jacket</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow jacket</string>
 | 
				
			||||||
 | 
									<string>leather boots</string>
 | 
				
			||||||
 | 
									<string>unknown - rainbow boots</string>
 | 
				
			||||||
 | 
									<string>fur coat</string>
 | 
				
			||||||
 | 
									<string>fur boots</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>leather pants</string>
 | 
				
			||||||
 | 
									<string>unknown</string>
 | 
				
			||||||
 | 
									<string>unknown - arrow (up)</string>
 | 
				
			||||||
 | 
									<string>camera</string>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									<string>portal</string>
 | 
				
			||||||
 | 
									<string>amethyst portal</string>
 | 
				
			||||||
 | 
									<string>saphire portal</string>
 | 
				
			||||||
 | 
									<string>emerald portal</string>
 | 
				
			||||||
 | 
									<string>ruby portal</string>
 | 
				
			||||||
 | 
									<string>diamond portal</string>
 | 
				
			||||||
 | 
									<string>sunrise hat of fullness</string>
 | 
				
			||||||
 | 
									<string>sunset skirt of happiness</string>
 | 
				
			||||||
 | 
									<string>north pole hat of warmth</string>
 | 
				
			||||||
 | 
									<string>south pole boots of speed</string>
 | 
				
			||||||
 | 
									<string>kelp</string>
 | 
				
			||||||
 | 
									<string>amethyst chandelier</string>
 | 
				
			||||||
 | 
									<string>saphire chandelier</string>
 | 
				
			||||||
 | 
									<string>emerald chandelier</string>
 | 
				
			||||||
 | 
									<string>ruby chandelier</string>
 | 
				
			||||||
 | 
									<string>diamond chandelier</string>
 | 
				
			||||||
 | 
									<string>steel lanterns</string>
 | 
				
			||||||
 | 
								</array>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								<key>validValues</key>
 | 
				
			||||||
 | 
								<array>
 | 
				
			||||||
 | 
									<integer>1</integer>
 | 
				
			||||||
 | 
									<integer>2</integer>
 | 
				
			||||||
 | 
									<integer>3</integer>
 | 
				
			||||||
 | 
									<integer>4</integer>
 | 
				
			||||||
 | 
									<integer>5</integer>
 | 
				
			||||||
 | 
									<integer>6</integer>
 | 
				
			||||||
 | 
									<integer>7</integer>
 | 
				
			||||||
 | 
									<integer>8</integer>
 | 
				
			||||||
 | 
									<integer>9</integer>
 | 
				
			||||||
 | 
									<integer>10</integer>
 | 
				
			||||||
 | 
									<integer>11</integer>
 | 
				
			||||||
 | 
									<integer>12</integer>
 | 
				
			||||||
 | 
									<integer>13</integer>
 | 
				
			||||||
 | 
									<integer>14</integer>
 | 
				
			||||||
 | 
									<integer>15</integer>
 | 
				
			||||||
 | 
									<integer>16</integer>
 | 
				
			||||||
 | 
									<integer>17</integer>
 | 
				
			||||||
 | 
									<integer>18</integer>
 | 
				
			||||||
 | 
									<integer>19</integer>
 | 
				
			||||||
 | 
									<integer>20</integer>
 | 
				
			||||||
 | 
									<integer>21</integer>
 | 
				
			||||||
 | 
									<integer>22</integer>
 | 
				
			||||||
 | 
									<integer>23</integer>
 | 
				
			||||||
 | 
									<integer>24</integer>
 | 
				
			||||||
 | 
									<integer>25</integer>
 | 
				
			||||||
 | 
									<integer>26</integer>
 | 
				
			||||||
 | 
									<integer>27</integer>
 | 
				
			||||||
 | 
									<integer>28</integer>
 | 
				
			||||||
 | 
									<integer>29</integer>
 | 
				
			||||||
 | 
									<integer>30</integer>
 | 
				
			||||||
 | 
									<integer>31</integer>
 | 
				
			||||||
 | 
									<integer>32</integer>
 | 
				
			||||||
 | 
									<integer>33</integer>
 | 
				
			||||||
 | 
									<integer>34</integer>
 | 
				
			||||||
 | 
									<integer>35</integer>
 | 
				
			||||||
 | 
									<integer>36</integer>
 | 
				
			||||||
 | 
									<integer>37</integer>
 | 
				
			||||||
 | 
									<integer>38</integer>
 | 
				
			||||||
 | 
									<integer>39</integer>
 | 
				
			||||||
 | 
									<integer>40</integer>
 | 
				
			||||||
 | 
									<integer>41</integer>
 | 
				
			||||||
 | 
									<integer>42</integer>
 | 
				
			||||||
 | 
									<integer>43</integer>
 | 
				
			||||||
 | 
									<integer>44</integer>
 | 
				
			||||||
 | 
									<integer>45</integer>
 | 
				
			||||||
 | 
									<integer>46</integer>
 | 
				
			||||||
 | 
									<integer>47</integer>
 | 
				
			||||||
 | 
									<integer>48</integer>
 | 
				
			||||||
 | 
									<integer>49</integer>
 | 
				
			||||||
 | 
									<integer>50</integer>
 | 
				
			||||||
 | 
									<integer>51</integer>
 | 
				
			||||||
 | 
									<integer>52</integer>
 | 
				
			||||||
 | 
									<integer>53</integer>
 | 
				
			||||||
 | 
									<integer>54</integer>
 | 
				
			||||||
 | 
									<integer>55</integer>
 | 
				
			||||||
 | 
									<integer>56</integer>
 | 
				
			||||||
 | 
									<integer>57</integer>
 | 
				
			||||||
 | 
									<integer>58</integer>
 | 
				
			||||||
 | 
									<integer>59</integer>
 | 
				
			||||||
 | 
									<integer>60</integer>
 | 
				
			||||||
 | 
									<integer>61</integer>
 | 
				
			||||||
 | 
									<integer>62</integer>
 | 
				
			||||||
 | 
									<integer>63</integer>
 | 
				
			||||||
 | 
									<integer>64</integer>
 | 
				
			||||||
 | 
									<integer>65</integer>
 | 
				
			||||||
 | 
									<integer>66</integer>
 | 
				
			||||||
 | 
									<integer>67</integer>
 | 
				
			||||||
 | 
									<integer>68</integer>
 | 
				
			||||||
 | 
									<integer>69</integer>
 | 
				
			||||||
 | 
									<integer>70</integer>
 | 
				
			||||||
 | 
									<integer>71</integer>
 | 
				
			||||||
 | 
									<integer>72</integer>
 | 
				
			||||||
 | 
									<integer>73</integer>
 | 
				
			||||||
 | 
									<integer>74</integer>
 | 
				
			||||||
 | 
									<integer>75</integer>
 | 
				
			||||||
 | 
									<integer>76</integer>
 | 
				
			||||||
 | 
									<integer>77</integer>
 | 
				
			||||||
 | 
									<integer>78</integer>
 | 
				
			||||||
 | 
									<integer>79</integer>
 | 
				
			||||||
 | 
									<integer>80</integer>
 | 
				
			||||||
 | 
									<integer>81</integer>
 | 
				
			||||||
 | 
									<integer>82</integer>
 | 
				
			||||||
 | 
									<integer>83</integer>
 | 
				
			||||||
 | 
									<integer>84</integer>
 | 
				
			||||||
 | 
									<integer>85</integer>
 | 
				
			||||||
 | 
									<integer>86</integer>
 | 
				
			||||||
 | 
									<integer>87</integer>
 | 
				
			||||||
 | 
									<integer>88</integer>
 | 
				
			||||||
 | 
									<integer>89</integer>
 | 
				
			||||||
 | 
									<integer>90</integer>
 | 
				
			||||||
 | 
									<integer>91</integer>
 | 
				
			||||||
 | 
									<integer>92</integer>
 | 
				
			||||||
 | 
									<integer>93</integer>
 | 
				
			||||||
 | 
									<integer>94</integer>
 | 
				
			||||||
 | 
									<integer>95</integer>
 | 
				
			||||||
 | 
									<integer>96</integer>
 | 
				
			||||||
 | 
									<integer>97</integer>
 | 
				
			||||||
 | 
									<integer>98</integer>
 | 
				
			||||||
 | 
									<integer>99</integer>
 | 
				
			||||||
 | 
									<integer>100</integer>
 | 
				
			||||||
 | 
									<integer>101</integer>
 | 
				
			||||||
 | 
									<integer>102</integer>
 | 
				
			||||||
 | 
									<integer>103</integer>
 | 
				
			||||||
 | 
									<integer>104</integer>
 | 
				
			||||||
 | 
									<integer>105</integer>
 | 
				
			||||||
 | 
									<integer>106</integer>
 | 
				
			||||||
 | 
									<integer>107</integer>
 | 
				
			||||||
 | 
									<integer>108</integer>
 | 
				
			||||||
 | 
									<integer>109</integer>
 | 
				
			||||||
 | 
									<integer>110</integer>
 | 
				
			||||||
 | 
									<integer>111</integer>
 | 
				
			||||||
 | 
									<integer>112</integer>
 | 
				
			||||||
 | 
									<integer>113</integer>
 | 
				
			||||||
 | 
									<integer>114</integer>
 | 
				
			||||||
 | 
									<integer>115</integer>
 | 
				
			||||||
 | 
									<integer>116</integer>
 | 
				
			||||||
 | 
									<integer>117</integer>
 | 
				
			||||||
 | 
									<integer>118</integer>
 | 
				
			||||||
 | 
									<integer>119</integer>
 | 
				
			||||||
 | 
									<integer>120</integer>
 | 
				
			||||||
 | 
									<integer>121</integer>
 | 
				
			||||||
 | 
									<integer>122</integer>
 | 
				
			||||||
 | 
									<integer>123</integer>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									<integer>124</integer>
 | 
				
			||||||
 | 
									<integer>125</integer>
 | 
				
			||||||
 | 
									<integer>126</integer>
 | 
				
			||||||
 | 
									<integer>127</integer>
 | 
				
			||||||
 | 
									<integer>128</integer>
 | 
				
			||||||
 | 
									<integer>129</integer>
 | 
				
			||||||
 | 
									<integer>130</integer>
 | 
				
			||||||
 | 
									<integer>131</integer>
 | 
				
			||||||
 | 
									<integer>132</integer>
 | 
				
			||||||
 | 
									<integer>133</integer>
 | 
				
			||||||
 | 
									<integer>134</integer>
 | 
				
			||||||
 | 
									<integer>135</integer>
 | 
				
			||||||
 | 
									<integer>136</integer>
 | 
				
			||||||
 | 
									<integer>137</integer>
 | 
				
			||||||
 | 
									<integer>138</integer>
 | 
				
			||||||
 | 
									<integer>139</integer>
 | 
				
			||||||
 | 
									<integer>140</integer>
 | 
				
			||||||
 | 
									<integer>141</integer>
 | 
				
			||||||
 | 
									<integer>142</integer>
 | 
				
			||||||
 | 
									<integer>143</integer>
 | 
				
			||||||
 | 
									<integer>144</integer>
 | 
				
			||||||
 | 
									<integer>145</integer>
 | 
				
			||||||
 | 
									<integer>146</integer>
 | 
				
			||||||
 | 
									<integer>147</integer>
 | 
				
			||||||
 | 
									<integer>148</integer>
 | 
				
			||||||
 | 
									<integer>149</integer>
 | 
				
			||||||
 | 
									<integer>150</integer>
 | 
				
			||||||
 | 
								</array>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Inventory Settings</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
@ -0,0 +1,101 @@
 | 
				
			|||||||
 | 
					<?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>entry</key>
 | 
				
			||||||
 | 
						<dict>
 | 
				
			||||||
 | 
							<key>cell</key>
 | 
				
			||||||
 | 
							<string>PSLinkCell</string>
 | 
				
			||||||
 | 
							<key>label</key>
 | 
				
			||||||
 | 
							<string>Credits</string>
 | 
				
			||||||
 | 
						</dict>
 | 
				
			||||||
 | 
						<key>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<true/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kBOn</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Enable In-Game Menu</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
									<key>cell</key>
 | 
				
			||||||
 | 
									<string>PSEditTextCell</string>
 | 
				
			||||||
 | 
									<key>default</key>
 | 
				
			||||||
 | 
									<string>40</string>
 | 
				
			||||||
 | 
									<key>defaults</key>
 | 
				
			||||||
 | 
									<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
									<key>key</key>
 | 
				
			||||||
 | 
									<string>kX</string>
 | 
				
			||||||
 | 
									<key>label</key>
 | 
				
			||||||
 | 
									<string>Buton x coord</string>
 | 
				
			||||||
 | 
									<key>placeholder</key>
 | 
				
			||||||
 | 
									<string>0</string>
 | 
				
			||||||
 | 
									<key>isNumeric</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
									<key>noAutoCorrect</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
									<key>cell</key>
 | 
				
			||||||
 | 
									<string>PSEditTextCell</string>
 | 
				
			||||||
 | 
									<key>default</key>
 | 
				
			||||||
 | 
									<string>0</string>
 | 
				
			||||||
 | 
									<key>defaults</key>
 | 
				
			||||||
 | 
									<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
									<key>key</key>
 | 
				
			||||||
 | 
									<string>kY</string>
 | 
				
			||||||
 | 
									<key>label</key>
 | 
				
			||||||
 | 
									<string>Buton y coord</string>
 | 
				
			||||||
 | 
									<key>placeholder</key>
 | 
				
			||||||
 | 
									<string>0</string>
 | 
				
			||||||
 | 
									<key>isNumeric</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
									<key>noAutoCorrect</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string></string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kSearch</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Beta Item Search</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSGroupCell</string>
 | 
				
			||||||
 | 
								<key>footerText</key>
 | 
				
			||||||
 | 
								<string>Must restart blockheads app in order for settings to take effect</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Hack Settings</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/Paypal.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.7 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/Power.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.7 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/Settings.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
		 After Width: | Height: | Size: 1.6 KiB  | 
@ -0,0 +1,214 @@
 | 
				
			|||||||
 | 
					<?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>items</key>
 | 
				
			||||||
 | 
						<array>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>crystal.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kCrystalsBool</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Enable Crystal Hack</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
									<key>cell</key>
 | 
				
			||||||
 | 
									<string>PSEditTextCell</string>
 | 
				
			||||||
 | 
									<key>defaults</key>
 | 
				
			||||||
 | 
									<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
									<key>key</key>
 | 
				
			||||||
 | 
									<string>kCrystals</string>
 | 
				
			||||||
 | 
									<key>label</key>
 | 
				
			||||||
 | 
									<string>Crystal Count:</string>
 | 
				
			||||||
 | 
									<key>placeholder</key>
 | 
				
			||||||
 | 
									<string>Enter Desired Count</string>
 | 
				
			||||||
 | 
									<key>isNumeric</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
									<key>noAutoCorrect</key>
 | 
				
			||||||
 | 
									<true/>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>coin.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kCoins</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Infinite Coins</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kSpeed</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Speed Boost</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kDoubleTime</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Double Time Unlocked</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kSleep</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Can Always Sleep</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kMeditate</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Can Always Meditate</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kView</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Crazy View Distance</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>clock.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kSolar</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>SolarPanel Always Generate</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>portal.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kTeleport</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Can Always Teleport</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>block4.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kHD</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>HD Unlocked</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>portal.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kCraftItems</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Max Level (Everything)</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>portal.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kDie</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Immortality</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					<dict>
 | 
				
			||||||
 | 
								<key>icon</key>
 | 
				
			||||||
 | 
								<string>block2.png</string>
 | 
				
			||||||
 | 
								<key>cell</key>
 | 
				
			||||||
 | 
								<string>PSSwitchCell</string>
 | 
				
			||||||
 | 
								<key>default</key>
 | 
				
			||||||
 | 
								<false/>
 | 
				
			||||||
 | 
								<key>defaults</key>
 | 
				
			||||||
 | 
								<string>BlockheadsInventory</string>
 | 
				
			||||||
 | 
								<key>key</key>
 | 
				
			||||||
 | 
								<string>kJetpack</string>
 | 
				
			||||||
 | 
								<key>label</key>
 | 
				
			||||||
 | 
								<string>Jetpack Fuel</string>
 | 
				
			||||||
 | 
							</dict>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						</array>
 | 
				
			||||||
 | 
						<key>title</key>
 | 
				
			||||||
 | 
						<string>Toggle Hacks</string>
 | 
				
			||||||
 | 
					</dict>
 | 
				
			||||||
 | 
					</plist>
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block1.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block10.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block11.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block12.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block2.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block3.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block4.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block5.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block6.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block7.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block8.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/block9.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/clock.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/coin.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/crystal.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/dollar.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.6 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/exit.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/face.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.8 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/goldp.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/icon1.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
| 
		 After Width: | Height: | Size: 787 B  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/portal.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/portal1.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/portal2.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/portal3.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/portal4.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/portal5.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/portal6.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/switch.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.0 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.bundle/system.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.6 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								blockheadsinventory/obj/BlockheadsInventory.mm.94cfd537.o
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										1
									
								
								blockheadsinventory/theos
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					/var/theos
 | 
				
			||||||