Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 588 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 588 Bytes

/*

  • Made By TEC
    
  • Discord: tec#0001
    
  • Date: 3/30/20
    
  • Time: 5:41
    
  • Game: Forward Assault
    
  • Device: IOS
    

*/

How To Use

  1. Add All the file to the folder where the "Tweak.xm" is in
  2. Add "#import "MassKill.h" to the Tweak.xm
  3. Add The "DoMassKill(player)" into the player Update hook

Example:

#import "Macros.h" #import "MassKill.h"

void (*_Player_Update)(void *player); void Player_Update(void *player){

DoMassKill(player);

_Player_Update(player); }

void setup() { HOOK(0x1018A16C8 /Player.Update() Offset/, Player_Update, _Player_Update); }