-
Posts
443 -
Joined
-
Last visited
Everything posted by 45GTR
-
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
LOL thanks for helping me with my project -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
ok no worries! Any other sources for some neat tricks other than UIAlerts and stuff? -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Ah ok, it works!!!! Any idea how to add a centred image in the settings to make it look professional? Do you want to go in the creds? -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
im getting nothing to be done errors -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
ill try it, is it ok to recompile a tweak which is already installed? -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
DiDA everything works, but i don't know where to put this: <dict> <key>cell</key> <string>PSButtonCell</string> <key>label</key> <string>Respring</string> <key>action</key> <string>respring</string> </dict> -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Now it says something about looking for a open tag on line 5 -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
here is some extra info, when opening the plist from ifile it says; property list/var/mobile.asd/AsD/Resources/AsD.plist invalid: close tag on line 32 doesnt match open tag array? -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Oh ok thanks, trying to Add a respring button but my pref is blank in settings: <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com...yList-1.0.dtd"> <plist version="1.0"> <dict> <key>entry</key> <dict> <key>cell</key> <string>PSLinkCell</string> <key>icon</key> <string>icon.png</string> <key>label</key> <string>LockDelete</string> </dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>label</key> <string>Prevent Apps From Being Deleted</string></dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.AsD.pref</string> <key>key</key> <string>kUninstall</string> <key>label</key> <string>Enable LockDelete</string> </dict> </dict> <key>cell</key> <string>PSButtonCell</string> <key>label</key> <string>Respring</string> <key>action</key> <string>respring</string> </dict> </array> <key>title</key> <string>LockDelete</string> </dict> </plist> -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Awesome! How do i change the name of the settings for my tweak? when i click the tab it says the name of my tweak but when outside it says 'AsD' -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Oh btw how do you add multiple things to he turned on from one switch -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Yep! Pref is now working, just gonna add some fun stuff -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Oh sh** sorry, I've had a long week and was tired -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
now this: http://imgur.com/ilF4kch -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
no headers from another source -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
i went back to the previous sdk, apparently the IOSSURFACE error is to do with bad headers, have u got a link for a other one? -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
mmm can't find it -
yayyy my tweak.xm is ^ this is my plist now: <!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>icon</key> <string>icon.png</string> <key>label</key> <string>XXX Hack</string> </dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>label</key> <string>Tons of coins for you</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.AsD.pref</string> <key>key</key> <string>kUninstall</string> <key>label</key> <string>Infinite Coins</string> </dict> </array> <key>title</key> <string>XXX Hack</string> </dict> </plist> I still haven't changed some titles
-
Yep changing that then re-compiling you forgot to hook
-
hey guys can someone please help me create a pref bundle for my tweak? it is greatly appreciated! I'l give you guys my tweak.xm and plist stuff. Tweak: #define PLIST_PATH @"/var/mobile/Library/Preferences/pref.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook SBIconController -(BOOL)allowsUninstall{ return FALSE; } %end Plist in resources: <!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>icon</key> <string>icon.png</string> <key>label</key> <string>XXX Hack</string> </dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>label</key> <string>Enable!</string></dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.AsD.pref</string> <key>key</key> <string>allowsUninstall</string> <key>label</key> <string>Infinite Coins</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>label</key> <string>High number of gems</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>xxxx</string> <key>key</key> <string>kGems</string> <key>label</key> <string>Infinite Gems</string> </dict> </array> <key>title</key> <string>XXX Hack</string> </dict> </plist> This bundle ^ isn't complete so your help is greatly appreciated! Thanks!
-
We won't ever know what happened.
-
:laughing:
-
Awesome! Enjoy your device, how did everybody know your birthday?!
-
HBD Bro!! What did u get?