i fixed it now i think the dll i already had as a reference had broken somehow so nevermind i got a new one now but i need some help...
How do i add a client list into my RTM menu?
the current one i have uses "dataGridView" but the string i have gets an error
Code:
public string GetName(int client)
{
byte[] buffer = new byte[20];
GetMemory(NameAddress + 0X3980 * (uint)client, buffer);
string names = Encoding.ASCII.GetString(buffer);
names = names.Replace("\0", "");
return names;
}
==============================
the error is the GetMemory(NameAddress
the error is "The name 'NameAddress' does not exist in the current context"
i got this from the post
You must login or register to view this content.