public static class Conversions
{
public static uint PlayerState = 0xF43B00;
public static byte[] ReverseBytes(byte[] input)
{
Array.Reverse(input);
return input;
}
}
public static void SV_GameSendServerCommand(int Client, string Command)
{
RPC.Call(0x53D984, new object[]
{
Client,
0,
Command
});
}
private void GiveWeapon(int client, int weapon, int ammo, int akimbo)
{
RPC.Call(0x290504, (uint)(Conversions.PlayerState + (client * 0x3700)), weapon, akimbo);
RPC.Call(0x244E84, (uint)(Conversions.PlayerState + (client * 0x3700)), weapon, 0, ammo, 1);
RPC.Call(0x53D984, client, 0, "a \"" + weapon + "\"");
}
GiveWeapon(0, (weapon id here), 999, 0);
public static class Conversions
{
public static uint PlayerState = 0xF43B00;
public static byte[] ReverseBytes(byte[] input)
{
Array.Reverse(input);
return input;
}
}
public static void SV_GameSendServerCommand(int Client, string Command)
{
RPC.Call(0x53D984, new object[]
{
Client,
0,
Command
});
}
private void GiveWeapon(int client, int weapon, int ammo, int akimbo)
{
RPC.Call(0x290504, (uint)(Conversions.PlayerState + (client * 0x3700)), weapon, akimbo);
RPC.Call(0x244E84, (uint)(Conversions.PlayerState + (client * 0x3700)), weapon, 0, ammo, 1);
RPC.Call(0x53D984, client, 0, "a \"" + weapon + "\"");
}
GiveWeapon(0, (weapon id here), 999, 0);



private void GiveWeapon(int client, int weapon, int ammo, int akimbo)
{
CallFunction(0x290504, (uint)(0xF43B00 + (client * 0x3700)), weapon, akimbo);
CallFunction(0x00244E84, (uint)(0xF43B00 + (client * 0x3700)), weapon, 0, ammo, 1);
CallFunction(0x53D984, client, 0, "a \"" + weapon + "\"");
}
//0x290504 - G_GivePlayerWeapon Offset
//0x00244E84 - Add_Ammo Offset
//0x53D984 - SV Offset
//0xF43B00 - G_Client Offset
//0x3700 - Index/Intervnal


GiveWeapon(0, 20, 999, 0); - Machine Gun
GiveWeapon(0, 121, 999, 0); - Odin Smoke Gun
GiveWeapon(0, 37, 999, 0); - I.M.S
GiveWeapon(0, 120, 999, 0); - Loki 40mm
GiveWeapon(0, 118, 999, 0); - Loki 105mm
GiveWeapon(0, 119, 999, 0); - Odin Care Package Gun

private void GiveWeapon(int client, int weapon, int ammo, int akimbo)
{
CallFunction(0x290504, (uint)(0xF43B00 + (client * 0x3700)), weapon, akimbo);
CallFunction(0x00244E84, (uint)(0xF43B00 + (client * 0x3700)), weapon, 0, ammo, 1);
CallFunction(0x53D984, client, 0, "a \"" + weapon + "\"");
}
//0x290504 - G_GivePlayerWeapon Offset
//0x00244E84 - Add_Ammo Offset
//0x53D984 - SV Offset
//0xF43B00 - G_Client Offset
//0x3700 - Index/Intervnal


GiveWeapon(0, 20, 999, 0); - Machine Gun
GiveWeapon(0, 121, 999, 0); - Odin Smoke Gun
GiveWeapon(0, 37, 999, 0); - I.M.S
GiveWeapon(0, 120, 999, 0); - Loki 40mm
GiveWeapon(0, 118, 999, 0); - Loki 105mm
GiveWeapon(0, 119, 999, 0); - Odin Care Package Gun

Copyright © 2026, NextGenUpdate.
All Rights Reserved.