Jump to content

I need help on MsFunction


Go to solution Solved by Rook,

8 posts in this topic

Recommended Posts

Posted (edited)

I went to use my sister computer and found this function I search for craft and recipe and this what I found

 

#import <CoreFoundation/CoreFoundation.h>
#import <substrate.h>
#import <Foundation/Foundation.h>

bool (*old__ZN6PlayerCan14CraftRecipeER6Recipe) ();

bool $__ZN6Player14CanCraftRecipeER6Recipe()
{
return true;
}

bool (*old__ZN6Player7HasItemEiv) ();

bool $__ZN6Player7HasItemEiv() 
{
return true;
}

bool (*old__ZN6Player16DiscoveredRecipeER6Recipe) ();

bool $__ZN6Player16DiscoveredRecipeER6Recipe() 
{
return true;
}

bool (*old__ZN6Player20FoundCraftingStationEi) ();

bool $__ZN6Player20FoundCraftingStationEi()
{
return true;
}

bool (*old__ZN6Player21IsNearCraftingStationER6Recipe) ();

bool $__ZN6Player21IsNearCraftingStationER6Recipe()
{
return true;
}


__attribute__((constructor)) void DylibMain()
{
MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6Player14CanCraftRecipeER6Recipe")),(bool*)$__ZN6Player14CanCraftRecipeER6Recipe,(bool**)&old__ZN6Player14CanCraftRecipeER6Recipe);




MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6Player7HasItemEiv")),(bool*)$__ZN6Player7HasItemEiv,(bool**)&old__ZN6Player7HasItemEiv);



MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6Player16DiscoveredRecipeER6Recipe")),(bool*)$__ZN6Player16DiscoveredRecipeER6Recipe,(bool**)&old__ZN6Player16DiscoveredRecipeER6Recipe);


MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6Player20FoundCraftingStationEi")),(bool*)$__ZN6Player20FoundCraftingStationEi,(bool**)&old_ZN6Player20FoundCraftingStationEi);


MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6Player21IsNearCraftingStationER6Recipe")),(bool*)$__ZN6Player21IsNearCraftingStationER6Recipe(bool**)&old__ZN6Player21IsNearCraftingStationER6Recipe);
}

%hook AppDelegate
- (void)applicationDidBecomeActive:(id)non {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Credits:" message:@"Hack By Kenny808" delegate:nil cancelButtonTitle:@"Thank You!" otherButtonTitles:nil];
[alert show];
[alert release];
}
%end

%hook FlurryUtil
+ (BOOL)deviceIsJailbroken {
return false;
}
%end

%hook EveryplayCommon
+ (BOOL)isJailbroken {
return false;
}
%end
Iam still getting errors this game is terrarai and feature is freecraft I know this hack exist but I was just practicing

image.jpg

Updated by kenny808
  • Solution
Posted

I don't know if it works or not though... It just compiled without any errors. :MeGusta:
 

#import <CoreFoundation/CoreFoundation.h>
#import <substrate.h>
#import <Foundation/Foundation.h>

bool (*old__ZN6PlayerCanCraftRecipeER6Recipe) ();

bool $__ZN6PlayerCanCraftRecipeER6Recipe()
{
return true;
}

bool (*old__ZN6Player7HasItemEiv) ();

bool $__ZN6Player7HasItemEiv()
{
return true;
}

bool (*old__ZN6Player16DiscoveredRecipeER6Recipe) ();

bool $__ZN6Player16DiscoveredRecipeER6Recipe()
{
return true;
}

bool (*old__ZN6Player20FoundCraftingStationEi) ();

bool $__ZN6Player20FoundCraftingStationEi()
{
return true;
}

bool (*old__ZN6Player21IsNearCraftingStationER6Recipe) ();

bool $__ZN6Player21IsNearCraftingStationER6Recipe()
{
return true;
}


__attribute__((constructor)) void DylibMain()
{
MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6PlayerCanCraftRecipeER6Recipe")),(bool*)$__ZN6PlayerCanCraftRecipeER6Recipe,(bool**)&old__ZN6PlayerCanCraftRecipeER6Recipe);


MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6Player7HasItemEiv")),(bool*)$__ZN6Player7HasItemEiv,(bool**)&old__ZN6Player7HasItemEiv);


MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6Player16DiscoveredRecipeER6Recipe")),(bool*)$__ZN6Player16DiscoveredRecipeER6Recipe,(bool**)&old__ZN6Player16DiscoveredRecipeER6Recipe);

MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6Player20FoundCraftingStationEi")),(bool*)$__ZN6Player20FoundCraftingStationEi,(bool**)&old__ZN6Player20FoundCraftingStationEi);

MSHookFunction(((bool*)MSFindSymbol(NULL, "__ZN6Player21IsNearCraftingStationER6Recipe")),(bool*)$__ZN6Player21IsNearCraftingStationER6Recipe,(bool**)&old__ZN6Player21IsNearCraftingStationER6Recipe);
}

%hook AppDelegate
- (void)applicationDidBecomeActive:(id)non {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Credits:" message:@"Hack By Kenny808" delegate:nil cancelButtonTitle:@"Thank You!" otherButtonTitles:nil];
[alert show];
[alert release];
}
%end

%hook FlurryUtil
+ (BOOL)deviceIsJailbroken {
return false;
}
%end

%hook EveryplayCommon
+ (BOOL)isJailbroken {
return false;
}
%end

Make sure you have added

projectname_FRAMEWORKS = UIKit

in the Makefile.

Posted

Yeah it seems correct. Works for me too :p

Does it work on the game though?  :shifty:

Posted

Yea I compile it thanks i just fix some mistakes xD...

And the hack is working :)

Awesome! :D

Posted (edited)

Going to post on sinful since the hack exist here xD but thanks @@DiDA

 

/topic locked problem solve

Updated by kenny808
Posted

You're welcome @ :D

 

If you have any more questions, make a new support topic. :)

Guest
This topic is now closed to further replies.
×
  • 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