Rezhified
Veteran
- Messages
- 69
- Reaction score
- 43
- Points
- 803
GSX Scripts
Requirements - GSX Studio (By SeriousHD)
Download -
Videos
Codes
Scripts
Uav - By Rezhified
Vsat - By Rezhified
Wallhack - By Rezhified
Level 55 - By Rezhified
Prestige Master - By Rezhified
10 Classes - By Iwau
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);
}
}
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);
}
}
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);
}
}
Code:
level55()
{
array bytes = { 0x0, 0xFF, 0x12 };
SetBytes(0x026FD02C, bytes);
}
Code:
prestigeMaster()
{
array bytes = { 0x0B, 0x00, 0x00 };
SetBytes(0x26FD014, bytes);
}
Code:
classes10()
{
array bytes ={0x44, 0x80, 0x08, 0x10, 0x01, 0x22, 0x40, 0x04};
SetBytes(0x02708522,bytes);
self iprintln("^110 Classes ^2Set!");
}
Last edited: