Jump to content

Danny Dariel

Member
  • Posts

    99
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone 7 Plus
  • iOS Version
    15.8.2
  • Jailbroken
    No
  • Android Device
    None
  • Android Version
    None
  • Rooted
    No
  • Gender
    Male
  • Location
    República Dominicana , Dominican Republic
  • Interests
    free hacks for everyone, I need help with my code
  • Game Center

Recent Profile Visitors

445 profile views

Danny Dariel's Achievements

Enthusiast

Enthusiast (6/14)

  • 2 Years In
  • Interesting Stuff
  • Ultra Dedicated
  • Part of a Club
  • Appreciating Others

Recent Badges

9

Reputation

  1. Well, I'm creating a cheat on the game called free fire specifically in the sensitivity section of the game it is a quite unusual hack and I am facing the following error when I modify the horizontal value in the executable file the game crashes the horizontal value is -90 ... 90 in another part of the code next to Y axis it is -180 ... 180 then the horizontal value I change it to -91 ... 90 and in the other part of the code -181 ... 180 also in the executable it says that Y axis horizontal are accompanied also says that the larger the values are, the more responsive the camera is @Laxus
  2. update please
  3. incredible job @Laxus How do they release hacks so fast? They even release them for devices without jailbreak. I'm trying to make my own tweak on the Free Fire game. Who can help me with this long process?
  4. Update my code : #import <UIKit/UIKit.h> #import <GarenaFreeFire/GarenaFreeFire.h> %hook GarenaFreeFire - (void)showAlert { %orig; // Original call to showAlert function dispatch_async(dispatch_get_main_queue(), ^{ [self showAlertCustom]; }); } - (void)showAlertCustom { UIAlertController *customAlert = [UIAlertController alertControllerWithTitle:@"Hello!" message:@"Hacks for everyone" preferredStyle:UIAlertControllerStyleActionSheet]; UIAlertAction *customAction = [UIAlertAction actionWithTitle:@"Custom Option" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) { [self showSensitivityMenu]; }]; [customAlert addAction:customAction]; [self presentViewController:customAlert animated:YES completion:nil]; } - (void)showSensitivityMenu { // Put your sensitivity menu code here (make sure it uses %orig; if needed) %orig; // calling original `showSensitivityMenu` method // Add custom logic for sensitivity menu, independent settings for vertical and horizontal sensitivity } // Assuming showSensibilityVertical and showSensibilityHorizontal are needed methods - (void)showSensibilityVertical { // Put your vertical sensitivity logic here %orig; // calling original `showSensibilityVertical` method } - (void)showSensibilityHorizontal { // Put your horizontal sensitivity logic here %orig; // calling original `showSensibilityHorizontal` method } %end
  5. Update version : #import "MyTweak.h" %hook GarenaFreeFire - (void)showAlert { %orig; // Muestro mi alerta personalizada UIAlertController *customAlert = [UIAlertController alertControllerWithTitle:@"¡Hola!" message:@"Esta es tu alerta personalizada" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil]; [customAlert addAction:okAction]; [self presentViewController:customAlert animated:YES completion:nil]; } - (void)showSensitivityMenu { %orig; // Muestro mi menú de sensibilidad personalizado UIAlertController *sensitivityMenu = [UIAlertController alertControllerWithTitle:@"Sensibilidad" message:nil preferredStyle:UIAlertControllerStyleActionSheet]; UIAlertAction *option1 = [UIAlertAction actionWithTitle:@"Opción 1" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { // Acción para la opción 1 }]; UIAlertAction *option2 = [UIAlertAction actionWithTitle:@"Opción 2" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { // Acción para la opción 2 }]; UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancelar" style:UIAlertActionStyleCancel handler:nil]; [sensitivityMenu addAction:option1]; [sensitivityMenu addAction:option2]; [sensitivityMenu addAction:cancelAction]; [self presentViewController:sensitivityMenu animated:YES completion:nil]; } %end
  6. You have to have the hacking characteristics clear because later it will be a waste of time
  7. @Rook update this game and put new hacks in it since most of it is useless since the game comes with aim assist that only needs to shoot, a no recoil or a semi aimbot or wallhack is better This trick is not updated, you cannot complain, you should have asked for an update since you saw that it is not updated to the corresponding version.
  8. My code so far: #import "MyTweak.h" %hook SBLaunchAlert - (void)alertViewWillShow:(UIAlertView*)alertView { %orig; UIAlertView *customAlert = [[UIAlertView alloc] initWithTitle:@"¡Hola!" message:@"Esta es tu alerta personalizada" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]; [customAlert show]; } %end %hook SBTouchHandler - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { %orig; UIActionSheet *sensitivityMenu = [[UIActionSheet alloc] initWithTitle:@"Sensibilidad" delegate:nil cancelButtonTitle:@"Cancelar" destructiveButtonTitle:nil otherButtonTitles:@"Opción 1", @"Opción 2", nil]; [sensitivityMenu showFromRect:[touches.anyObject locationInView:touches.anyObject.window] inView:touches.anyObject.window animated:YES]; if ([sensitivityMenu clickedButtonIndex] == 0) { // Acción para la opción 1 } else if ([sensitivityMenu clickedButtonIndex] == 1) { // Acción para la opción 2 } } %end
  9. Good job bro
×
  • 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