Jump to content

Baroto

Senior Member
  • Posts

    128
  • Joined

  • Last visited

Everything posted by Baroto

  1. if you see pop up when joox start? Rivew Followers+ Here https://www.facebook.com/fajar.loro/videos/969012403202775/?permPage=1
  2. Social Fans: reports and analytics Itunes Link : https://itunes.apple.com/us/app/social-fans-reports-analytics/id1164407864?mt=8 Feature : -Unlock Social Fans Package 2 (Rp.519.000) -Unlock Social Fans Package 4 (Rp.519.000) -Unlock Social Fans Packa 5 (Rp.89.000) Screenshot DOWNLOAD [Hidden Content]
  3. does not work where? Followers+ Here https://itunes.apple.com/us/app/followers-+-for-instagram/id566223681?mt=8
  4. Klik dulu kalau ada trialnya um.
  5. Here https://drive.google.com/file/d/0B_pXUnppEIqmUzFXcUpBSmk4OVU/view?usp=sharing
  6. whether Appears When Starting Application pop up?
  7. MOVE TO : Assalamualikum.. Itunes Link : https://itunes.apple.com/us/app/muslim-pro-prayer-times-azan/id388389451?mt=8 Fiture Unlock : -Remove ADS -Additional Voice -Customize my APP Screenshot
  8. Itunes Link : https://itunes.apple.com/my/app/joox-music-live-now!/id914406371?mt=8 Features: -JOOX VIP to enjoy unlimited music. -free ad -Listen to music without ads. -Listen to songs offline with no data -Enjoy downloaded songs as often as you want. -Streaming quality -Play at will -Enjoy all songs -DTS effect until 2063 (unlimited) -Karaoke Plus Download Link : [Hidden Content] Download Link Deb : [Hidden Content] Screenshot :
  9. hello mr. if you can create a custom alert view when you first open the app. pop up like this https://iosgods.com/topic/27214-how-to-do-sclalertview-in-a-theos-tweak-like-this/. I've tried to apply. but always error https://iosgods.com/topic/36339-sclalertview-style-troubleserrors/#entry1229566
  10. thanks so much for its support..
  11. if you can fix this? %hook BBMCoreAccess -(void) sendTypingNotificationForConversationURI:(id)arg1 isTyping:(bool) { arg1 = FALSE; return %orig; } %end
  12. Tks. here : #include <substrate.h> %hook BBMCoreAccess -(void) sendTypingNotificationForConversationURI:(id)arg1 isTyping:(bool) { arg1 = FALSE; return %orig; } %end %hook BBMCoreAccessGroup -(void) sendTypingNotificationForConversationURI:(id)arg1 { arg1 = NULL; return %orig; } %end %hook BBMCoreAccess -(void) markEphemeralMessageAsViewed:(id)arg1 { arg1 = NULL; return %orig; } %end %hook BBMCoreAccess -(void) markMessagesRead:(id)arg1 withConversationURI:(id)arg2 { arg2 = NULL; arg1 = NULL; return %orig; } %end %hook BBMCoreAccess -(bool) isRateBBMEnabled { return TRUE; } %end %hook BBMCoreAccess -(void) setRateBBMEnabled:(bool)arg1 { arg1 = TRUE; return %orig; } %end %hook BBMCoreAccess -(id) adsEnabled { return NULL; } %end %hook BBMCoreAccess -(id) getAllAds { return NULL; } %end %hook BBMEphemeralMetaData -(double) remainingTime { return FALSE; } %end %hook BBMPingLimitHelper -(bool) isLimitReached { return TRUE; } %end %hook BBMSystemMessageCell -(bool) isRead { return TRUE; } %end %hook BBMSystemMessageCell -(void) setIsRead:(bool)arg1 { arg1 = TRUE; return %orig; } %end %hook BBMMessage -(bool) canBeMarkedRead { return TRUE; } %end %hook BBMMessageCell +(bool) automaticallyNotifiesObserversOfMessage { return TRUE; } %end %hook BBMGenEphemeralMetaData -(bool) isScreenshot { return TRUE; } %end
  13. Thanks. all problems had been solved, now I discovered this. Tweak.xm:4:185: error: expected class member or base class name ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^ Tweak.xm:4:184: error: only constructors take base initializers ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^
  14. Hello all. I tried to compile tweak like this http://pastebin.com/ZFP6g62e. but I found an error like this Tweak.xm:4:185: error: expected class member or base class name ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^ Tweak.xm:4:184: error: only constructors take base initializers ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^ Tweak.xm:5:1: error: use of undeclared identifier 'arg2'; did you mean 'arg1'? arg2 = TRUE; ^~~~ arg1 Tweak.xm:4:179: note: 'arg1' declared here ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(bool) { ^ Tweak.xm:5:6: error: assigning to 'id' from incompatible type 'int' arg2 = TRUE; ^ ~~~~ Tweak.xm:12:8: error: expected expression arg1 = ; ^ Tweak.xm:19:8: error: expected expression arg1 = ; ^ Tweak.xm:25:172: error: expected class member or base class name ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(id) { ^ Tweak.xm:25:171: error: only constructors take base initializers ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(id) { ^ Tweak.xm:26:1: error: use of undeclared identifier 'arg2'; did you mean 'arg1'? arg2 = ; ^~~~ arg1 Tweak.xm:25:166: note: 'arg1' declared here ...BBMCoreAccess* _LOGOS_SELF_CONST self, SEL _cmd, id arg1):(id) { ^ Tweak.xm:26:8: error: expected expression arg2 = ; ^ Tweak.xm:27:8: error: expected expression arg1 = ; ^ Tweak.xm:47:1: error: non-void function '_logos_method$_ungrouped$BBMCoreAccess$adsEnabled' should return a value [-Wreturn-type] return ; ^ Tweak.xm:53:1: error: non-void function '_logos_method$_ungrouped$BBMCoreAccess$getAllAds' should return a value [-Wreturn-type] return ; ^ Tweak.xm:59:1: error: non-void function '_logos_method$_ungrouped$BBMEphemeralMetaData$remainingTime' should return a value [-Wreturn-type] return ; ^ 14 errors generated. make[3]: *** [/users/pxcex/Desktop/Tweak/bbm/.theos/obj/debug/armv7/Tweak.xm.2995620b.o] Error 1 make[2]: *** [/users/pxcex/Desktop/Tweak/bbm/.theos/obj/debug/armv7/bbm.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [bbm.all.tweak.variables] Error 2 whether there is a solution. Thank you very much.
  15. BIGO LIVE - Live Broadcasting Version of the app: 2.4.0 iTunes URL for the app: https://itunes.apple.com/us/app/bigo-live-live-broadcasting/id1077137248?mt=8 Requested features: unlimited diamons Jailbroken or Non-Jailbroken: Jailbroken Thank you!
  16. please provide headers for me..
  17. I also several times been viewed 10 error . so, what is the solution?
  18. tks mr shmo. but I still find the same error. . If mr shmoo kindly provide SCLAlertview tutorial style from scratch? Such incredible tweak you. Just SCLAlertview.
  19. if you mean CFLAGS = -w in makefile ?
  20. already apply from there. but the problem remains the same. the same problems as https://iosgods.com/topic/30440-sclalertview-troubleserrors/ /var/theos/include/SCLAlertView//SCLAlertView.m:1584:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1584:9: error: '__weak' only applies to Objective-C object or block pointer types; type here is 'int' [-Werror,-Wignored-attributes] __weak typeof(self) weakSelf = self; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1584:23: error: a parameter list without types is only allowed in a function definition __weak typeof(self) weakSelf = self; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1584:28: error: expected ';' at end of declaration __weak typeof(self) weakSelf = self; ^ ; /var/theos/include/SCLAlertView//SCLAlertView.m:1586:13: error: use of undeclared identifier 'weakSelf' weakSelf.parameterTitle = title; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1587:20: error: use of undeclared identifier 'weakSelf' return weakSelf; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1618:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1618:9: error: '__weak' only applies to Objective-C object or block pointer types; type here is 'int' [-Werror,-Wignored-attributes] __weak typeof(self) weakSelf = self; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1618:23: error: a parameter list without types is only allowed in a function definition __weak typeof(self) weakSelf = self; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1618:28: error: expected ';' at end of declaration __weak typeof(self) weakSelf = self; ^ ; /var/theos/include/SCLAlertView//SCLAlertView.m:1620:13: error: use of undeclared identifier 'weakSelf' weakSelf.parameterTitle = title; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1621:20: error: use of undeclared identifier 'weakSelf' return weakSelf; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1628:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1628:9: error: '__weak' only applies to Objective-C object or block pointer types; type here is 'int' [-Werror,-Wignored-attributes] __weak typeof(self) weakSelf = self; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1628:23: error: a parameter list without types is only allowed in a function definition __weak typeof(self) weakSelf = self; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1628:28: error: expected ';' at end of declaration __weak typeof(self) weakSelf = self; ^ ; /var/theos/include/SCLAlertView//SCLAlertView.m:1630:13: error: use of undeclared identifier 'weakSelf' weakSelf.parameterTarget = target; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1631:20: error: use of undeclared identifier 'weakSelf' return weakSelf; ^ /var/theos/include/SCLAlertView//SCLAlertView.m:1638:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ fatal error: too many errors emitted, stopping now [-ferror-limit=] 20 errors generated.
  21. where I get SCLAlertView headers update?
  22. I have it from https://github.com/theos/headers mr DiDA
  23. hallo mr DiDA. my sdks : iPhoneOS9.2.sdk
×
  • 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