static class Addresses
{
public static uint
g_entity = 0xFCA280,
playerstate = 0x110a280,
playerstateSize = 0x3980,
g_entitySize = 0x280,
health = 0x19c,
playername = 0x0110D68C;
}
static class Angles
{
public static uint
Angles_X = 0x64,
Angles_Y = 0x60,
Angles_Z = 0x68;
origin_x = 0x1c,
origin_y = 0x20,
origin_z = 0x24;
}
static uint G_Entity(int client)
{
return Addresses.g_entity + (uint) client * Addresses.g_entitySize;
}
static uint Playerstate(int client)
{
return Addresses.playerstate + (uint)client * Addresses.playerstateSize;
}
public void Godmode(int client, bool state)
{
if (state)
{
PS3.WriteInt32(G_Entity(client), 17777215);
}
else
{
PS3.WriteInt32(G_Entity(client), 100);
}
}
public void ChangeName(int client, string name)
{
PS3.WriteString(Playerstate(client), name);
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.