Jump to content

Rook

Administrator
  • Posts

    66,796
  • Joined

  • Last visited

Everything posted by Rook

  1. Well, he's saying: MikkA VietNam Fking P?
  2. "vl" means that? wtf1?
  3. What does it say?
  4. Wait for it to finish updating...? Have you tried rebooting your phone? If that doesn't fix it, reinstall Cydia.
  5. Hello and Welcome! Thank you for supporting the forum! We hope you'll like it here.
  6. Rook

    Hi

    Welcome to iOSGods!
  7. You already have 3 warning points? Are you trying to get banned?
  8. Rook

    Count to 4,000

    1222 lol
  9. Create it. Have you even seen the tutorial? http://iosgods.com/topic/656-video-how-to-set-up-theos-on-your-idevice/
  10. Go to /var/theos/sdks/ and send the archive there then extract it using iFile.
  11. He can Jailbreak and install it then restore back.
  12. That wasn't there when he asked this question though
  13. He already made a tutorial on it. http://iosgods.com/topic/1744-tutorial-how-to-make-a-mshook-patcher/
  14. Rook

    Hahahah

    I moved it to Spam City after he posted it in VIP.
  15. Rook

    Hahahah

    Do you want a warning?
  16. Just the basics of Objective C is enough.
  17. Hey! Welcome to iOSGods!
  18. He can't read the Cheaters section without being a Cheater though. If you have any questions, make a support topic and we'll gladly assist you. These are the tools we use: http://iosgods.com/forum/17-tools/ Wat indeed.
  19. Please don't quote anything from the hidden content.
  20. Nice Tutorial Kenny. It'd be helpful for members if you could copy paste the Tweak.xm's content and add them in [code ] tags here on the forum.
  21. The Chinese GameMaster tool? This is so gonna get patched
  22. Hey Friendly person! It's nice to have you a part of this community! I hope you like it here! if you don't, we'll kill you with kindness.
  23. Become one of the world's earliest Swift developers with this introductory course on Apple’s new programming language. Initial Setup and Swift Basics Operators, Strings, Characters, and Collection Types Evolving from Objective C Control Flow A Modern Language Evolved from Objective C Swift is a multi-paradigm programming language developed by Apple for use with iOS and OS X. Designed to replace Objective C, work began on Swift in 2010 and the first mobile app was debuted in June 2014 at the Worldwide Developers Conference. Despite its goal of replacing Objective C, Swift is capable of working alongside the more dated Objective C language while using the Cocoa and Cocoa Touch frameworks. Swift is built with the LLVM compiler included in Xcode 6 beta, and uses the Objective-C runtime, allowing Objective-C, Objective-C++ and Swift code to run within a single program. During it’s debut, Swift was described as “Objective C without the C” by Apple’s VP of Software Engineering Craig Federighi. Contents and Overview Through 95+ video lectures and 4 hours of content, you will be lead through setting up Swift locally, the basics of the language, how it compares to other common languages (including Objective C), and how to get started on new projects. The course is designed to provide a comprehensive introduction to Swift, so that you can begin experimenting right away. Upon completion, you will understand the foundations of Swift code and will be able to develop custom applications. You will also get experience working with Xcode's new .playground file. By enrolling in this course you will be months ahead of other developers attempting learn the new Swift programming language by navigating Apple's 500-page instructional document. Course material is regularly refreshed to include all of the newest updates and information, and since you’re granted lifetime access upon registering, you can rely on this course to keep your Swift skills on the cutting edge. Category: Development / Mobile Apps What are the requirements?Developer access to Xcode 6 beta A Mac computer that can run Xcode 6 Enrolled in a paid developer program (iOS or Mac is fine) What am I going to get from this course?Over 95 lectures and 5 hours of content! Video walkthroughs showing you how to use Swift Work with Xcode's new .playground file What is the target audience?Objective-C developers wanting to learn Swift New programmers wanting to learn Swift https://www.udemy.com/swift-learn-apples-new-programming-language-by-examples/ Download Mediafire: [Hidden Content] Support the author if it helped you out in any way.
  24. Darude - Sandstorm
  25. Hello! In this tutorial I will be showing you how to add a Text Cell with a Switch where the user can choose the amount of currency he/she desires. I will be using the app "Pou" as an example. Alright, let's begin! 1. Start a new Patcher. login as: root [email protected]'s password: iOSGods-iPhone:~ root# /var/theos/bin/nic.pl NIC 2.0 - New Instance Creator ------------------------------ [1.] iphone/application [2.] iphone/library [3.] iphone/preference_bundle [4.] iphone/tool [5.] iphone/tweak Choose a Template (required): 5 Project Name (required): pouhack Package Name [com.yourcompany.pouhack]: com.iosgods.pouhack Author/Maintainer Name [System Administrator]: DiDA [iphone/tweak] MobileSubstrate Bundle filter [com.apple.springboard]: me.pou.app [iphone/tweak] List of applications to terminate upon installation (space-separated, '-' for none) [SpringBoard]: - Instantiating iphone/tweak in pouhack/... Done. iOSGods-iPhone:~ root# cd /var/root/pouhack iOSGods-iPhone:~/pouhack root# /var/theos/bin/nic.pl NIC 2.0 - New Instance Creator ------------------------------ [1.] iphone/application [2.] iphone/library [3.] iphone/preference_bundle [4.] iphone/tool [5.] iphone/tweak Choose a Template (required): 3 Project Name (required): poupref Package Name [com.yourcompany.poupref]: com.iosgods.poupref Author/Maintainer Name [System Administrator]: DiDA Instantiating iphone/preference_bundle in poupref/... Adding 'poupref' as an aggregate subproject in Theos makefile 'Makefile'. Done. iOSGods-iPhone:~/pouhack root# 2. Open the Tweak.xm file and add these lines to it: #include <Foundation/Foundation.h> %hook Coins - (int)have { NSDictionary *iosgods = [NSDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"/var/mobile/Library/Preferences/com.iosgods.poupref.plist"]]; return [[iosgods objectForKey:@"kCoins"] intValue]; } %end Copy paste them from here: http://pastebin.com/jN9VV563 3. Like I said, I will be using Pou as an example so some stuff will be a bit different with other apps. 4. Go to /pouhack/poupref/Resources/ and edit the poupref.plist file so it looks like this: <?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>Pou Hack iOSGods.com</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.poupref</string> <key>key</key> <string>kCoins</string> // Button key <key>label</key> <string>Coins Hack</string> // Button text </dict> <dict> <key>cell</key> <string>PSEditTextCell</string> <key>defaults</key> <string>com.iosgods.poupref</string> <key>detail</key> <string>PSDetailController</string> <key>key</key> <string>kCoins</string> // Your key <key>label</key> <string></string> <key>placeholder</key> <string>Enter the amount of coins you want.</string> //placeholder text that will appear. </dict> </array> <key>title</key> <string>Pou Hack</string> //Hack title </dict> </plist> Copy it from here: http://pastebin.com/r69RsC3s 5. Save it and send it back to the poupref folder. 6. Now cd into your project folder and build the package. Note: if you get missing header files, download this archive and extract it to /var/theos/include/ [Hidden Content] Once you installed the tweak, go to settings and turn the hack on and enter the amount of coins you'd like. You're done! For more information on PSEditTextCell, see the iPhoneDevWiki page: http://iphonedevwiki.net/index.php/Preferences_specifier_plist#PSEditTextCell_.26_PSSecureEditTextCell Project files: [Hidden Content]
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines