/*
-
Made By TEC -
Discord: tec#0001 -
Date: 3/30/20 -
Time: 5:41 -
Game: Forward Assault -
Device: IOS
*/
- Add All the file to the folder where the "Tweak.xm" is in
- Add "#import "MassKill.h" to the Tweak.xm
- Add The "DoMassKill(player)" into the player Update hook
#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); }