MyProjects / Objective-C / new 16.mm
new 16.mm
Raw
#include <substrate.h>

%hook MOXSettingsDataProvider
-(bool) isBoostFeatureOn {
return TRUE;
}
%end

%hook MOXSettingsViewController
-(bool) isBoostFeatureOn {
return TRUE;
}
%end

%hook FIRAInAppPurchaseProductCache
-(id) cachedProductForProductIdentifier:(id)arg1 {
return %orig;
}
%end

%hook Bumble.MOXPhotoVerificationFlow
+(bool) isFeatureOn {
return TRUE;
}
%end

%hook MOXSuperSwipeFeature
+(bool) enabled {
return TRUE;
}
%end

%hook MOXChatInputFeature
-(bool) enabled {
return TRUE;
}
%end

%hook BMAWhatsNewService
-(bool) isFeatureEnabled:(id)arg1 {
return TRUE;
}
%end

%hook MOXProfileContainerViewController
-(bool) isViBeeFeatureEnabled {
return TRUE;
}
%end

%hook GAITrackerImpl
-(bool) shouldRateLimit {
return FALSE;
}
%end

%hook MOXApplicationConfiguration
-(bool) isSuperswipeWhatsNewAllowed {
return TRUE;
}
%end

%hook MOXRewindAction
-(bool) enabled {
return TRUE;
}
%end

%hook MOXRewindVotesFlow
-(bool) available {
return TRUE;
}
%end

%hook MOXRewindVotesDataProvider
-(bool) canRewindLastVote {
return TRUE;
}
%end

%hook MOXChatSession
-(bool) isMessageSendingAllowed {
return TRUE;
}
%end

%hook MOXChatActionsController
-(bool) isMultimediaActionAllowed {
return TRUE;
}
%end

%hook MOXEditProfileDataProvider
-(bool) allowEditGender {
return TRUE;
}
%end

%hook MOXProfileData
-(bool) allowEditGender {
return TRUE;
}
%end

%hook MOXChatSession
-(bool) isMediaSendingAllowed {
return TRUE;
}
%end