-
Posts
456 -
Joined
-
Last visited
Everything posted by B3albakii
-
Help/Support why no one here is helping me ?
B3albakii replied to B3albakii's topic in Help & Support
%ctor { MSHookFunction((void*)(_dyld_get_image_vmaddr_slide(0) + 0x),(void*)101E48CB8,(void**)&old_101E48CB8); } like this ? -
Help/Support why no one here is helping me ?
B3albakii replied to B3albakii's topic in Help & Support
Yes i wqs using this -
// Properties public int goldAvailable { get; set; } public int foodAvailable { get; set; } // Methods public void .ctor(); // RVA: 0x101E48CB8 Offset: 0x1E48CB8 public int get_goldAvailable(); // RVA: 0x101E3338C Offset: 0x1E3338C that what i got from dump.cs and in IDA i got WorldWarDotData$$set_goldAvailable WorldWarDotData$$get_goldAvailable and this is my tweak.x #import <substrate.h> #import <Foundation/Foundation.h> static void setGold() { } static int getGold() { return 9999999; } %ctor { MSHookFunction(MSFindSymbol(NULL, "__WorldWarDotData$$set_goldAvailable"),(void*)setGold, NULL); MSHookFunction(MSFindSymbol(NULL, "__WorldWarDotData$$get_goldAvailable"),(int*)getGold, NULL); } but it is not working whats wrong ?
-
Lets see.
-
// Properties public int goldAvailable { get; set; } public int foodAvailable { get; set; } // Methods public void .ctor(); // RVA: 0x101E48CB8 Offset: 0x1E48CB8 public int get_goldAvailable(); // RVA: 0x101E3338C Offset: 0x1E3338C that what i got from dump.cs and in IDA i got WorldWarDotData$$set_goldAvailable WorldWarDotData$$get_goldAvailable and this is my tweak.x #import <substrate.h> #import <Foundation/Foundation.h> static void setGold() { } static int getGold() { return 9999999; } %ctor { MSHookFunction(MSFindSymbol(NULL, "__WorldWarDotData$$set_goldAvailable"),(void*)setGold, NULL); MSHookFunction(MSFindSymbol(NULL, "__WorldWarDotData$$get_goldAvailable"),(int*)getGold, NULL); } but it is not working whats wrong ?
-
[MSHook] Modern Combat 2 1.2.6 iOS 8 Source
B3albakii replied to mehdiphone's topic in Coding Center
Good -
pro
-
DIY Hack PUBG MOBILE Anti-Ban - Hosts & Tweak 0.15.0
B3albakii replied to Yusaaktas's topic in DIY Cheats
Test Test -
i know how to use %hook method but i have this code if(GetPrefBool(@"key1")) { vm_writeData(0x10092DEE8, 0x1F2003D5); // how to put it in my tweak.x ? @import Foundation; @import UIKit; #import <substrate.h> #import "vm_writeData.h" #define PLIST_PATH @"/var/mobile/Library/Preferences/com.ali.blo.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %ctor { if(GetPrefBool(@"key1")) { vm_writeData(0x10092DEE8, 0x1F2003D5); // } like this or no thx
-
Hey i am trying to learn ida .. the game is Pou i know i can hack it with flex but as i said wanna learn ida text:000000010003D630 ; ShopItem - (int)coins __text:000000010003D630 __text:000000010003D630 ; int __cdecl -[ShopItem coins](struct ShopItem *self, SEL) __text:000000010003D630 __ShopItem_coins_ ; DATA XREF: __objc_const:0000000100534180o __text:000000010003D630 ADRP X8, #_OBJC_IVAR_$_ShopItem.coins@PAGE ; int coins; __text:000000010003D634 LDRSW X8, [X8,#_OBJC_IVAR_$_ShopItem.coins@PAGEOFF] ; int coins; __text:000000010003D638 LDR W0, [X0,X8] __text:000000010003D63C RET __text:000000010003D63C ; End of function -[ShopItem coins] and this is my tweak.x #include <substrate.h> int Money() { return 9999; } %ctor{ MSHookFunction(((void*)MSFindSymbol(NULL, "__ShopItem_coins_")),(void*)Money, NULL); } i can compile this but nothing happen in the game ... any help please
-
did u know how to find @intell @Zahir can u explain please
-
thx
-
Ok
-
Tweak Hack Files - File Manager & Browser V 6.1.7 Hack
B3albakii replied to B3albakii's topic in Free Jailbreak Cheats
welcome