Rezhified

Veteran
Messages
69
Reaction score
43
Points
803
GSX Scripts
Requirements - GSX Studio (By SeriousHD)
Download -
You do not have permission to view link Log in or register now.


Videos

Codes
Scripts
Uav - By Rezhified
Code:
uav()
{
   self.Uav = booleanOpposite(self.Uav);
   if(self.Uav)
   {
       array bytes = {0x2C, 0x03, 0x00, 0x01};
       SetBytes(0x33CB4, bytes);
   }
   else
   {
       array bytes = {0x2C, 0x03, 0x00, 0x00};
       SetBytes(0x33CB4, bytes);
   }
}
Vsat - By Rezhified
Code:
vsat()
{
   self.Vsat = booleanOpposite(self.Vsat);
   if(self.Vsat)
   {
       array bytes = {0x60, 0x00, 0x00, 0x00};
       SetBytes(0x00033C60, bytes);
   }
   else
   {
       array bytes = {0x40, 0x81, 0x00, 0x44};
       SetBytes(0x00033C60, bytes);
   }
}
Wallhack - By Rezhified
Code:
Wallhack()
{
   self.Wallhack= booleanOpposite(self.Wallhack);
   if(self.Wallhack)
   {
       array bytes = {0x38, 0xC0, 0xFF, 0xFF};
       SetBytes(0x000834D0, bytes);
   }
   else
   {
       array bytes = {0x38, 0xC0, 0x00, 0x00};
       SetBytes(0x000834D0, bytes);
   }
}
Level 55 - By Rezhified
Code:
level55()
{
   array bytes = { 0x0, 0xFF, 0x12 };
   SetBytes(0x026FD02C, bytes);
}
Prestige Master - By Rezhified
Code:
prestigeMaster()
{
   array bytes = { 0x0B, 0x00, 0x00 };
   SetBytes(0x26FD014, bytes);
}
10 Classes - By Iwau
Code:
classes10()
{
    array bytes ={0x44, 0x80, 0x08, 0x10, 0x01, 0x22, 0x40, 0x04};
    SetBytes(0x02708522,bytes);
    self iprintln("^110 Classes ^2Set!");
}
Post Your new Scripts And The Creator Below I Will Include Them In The Thread!

 
Last edited:

ANDYMODZYT

Veteran
Messages
81
Reaction score
26
Points
803
Ok i think its broken cos i installed it all the files are there but when i open it pops up in task manger but 5 secs later it closes
 

Richi987

Veteran
Messages
77
Reaction score
42
Points
793
Ok i think its broken cos i installed it all the files are there but when i open it pops up in task manger but 5 secs later it closes
You anti virus kills it, what you have to do is add an exception to you anti virus which is gsx studio
 

The Dark Side

Former Staff Member
Messages
1,007
Reaction score
784
Points
993
Do you want to know how to do stats?
Honestly i'd like to know how to pull offsets and learn all about setting bytes and all that stuff. :smile:

Because tbh i know nothing about it! I haven't seen any good tuts around. Maybe this is your chance to make one? :wink:
 

Rezhified

Veteran
Messages
69
Reaction score
43
Points
803
Honestly i'd like to know how to pull offsets and learn all about setting bytes and all that stuff. :smile:

Because tbh i know nothing about it! I haven't seen any good tuts around. Maybe this is your chance to make one? :wink:
Maybe... But I have a feeling old gen is dying for modding now that you can mod on ps4 so I dont know if people want a tutorial on debugger and ida ill do one!
 
Top