ata Grid View' object.
byte[] Client0 = new byte[24]; //Gets the Bytes of the defined offset below, It's [24] because of the character length of the players name.
YourAPI.GetMemory(0x0110D694, Client0); //Getting the Memory of Client 0.
string Client0Name = Encoding.ASCII.GetString(Client0); //Gets the String of Client 0's name.
YourLabelName.Text = Client0Name; //Changing your Label(s) text to the Players name.
[HR][/HR]
You can use a '
ataGridView' with this.
uint CalculateAddress(uint Address, int Client, uint Offset)
{
//This adds up address + the offset (aka mod).
//Then adds the client number, * by the size of the structure which in this case is 0x5808.
//Then returns the total value.
return Address + Offset + ((uint)Client * 0x580
;
}
for (int i = 0; i < 18; i++)// Loops from 0 - 17, since we have 18 clients, player 1 is client 0, player 18 is client 17.
{
uint AddressToRead = CalculateAddress(0x01780F28, i, 0x5544);//Address is our client 0 main address, i is the client number which increases, 0x5544 is the Name offset.
string PlayersName = YourAPI.Extension.ReadString(AddressToRead);//Read the name from the address
dataGridView1.Rows.Add(PlayersName); // Adds items to DataGridView
}
Client Addresses:
Client 0: 0x0110D694
Client 1: 0x01111014
Client 2: 0x01114994
Client 3: 0x01118314
Client 4: 0x0111BC94
Client 5: 0x0111F614
Client 6: 0x01122F94
Client 7: 0x01126914
Client 8: 0x0112A294
Client 9: 0x0112DC14
Client 10: 0x01131594
Client 11: 0x01134F14
Client 12: 0x01138894
Client 13: 0x0113C214
Client 14: 0x0113FB94
Client 15: 0x01143514
Client 16: 0x01146E94
Client 17: 0x0114A814
[/COLOR]
Byte[] bytes = new Byte[] { 0xFF }; //Defines the byte (0xFF enables godmode).
YourAPIName.SetMemory(0x0FCA41E, bytes); // 0x0FCA41E is the offset, "bytes" is 0xFF.
Byte[] bytes = new Byte[] { 0x00 }; //Defines the byte (0x00 disables godmode)
YourAPIName.SetMemory(0x0FCA41E, bytes); //Same exact thing as above.
our main address and our client 0's name address is 0x178646C. Therefore, our client 0's name offset is the value in relation to our main address. Therefore we do name address (0x178646C) - main address (0x01780F28= our offset, which in this case is 0x5544. (BO2 Addresses)
;Copyright © 2026, NextGenUpdate.
All Rights Reserved.