Weapon LoggerI'm trying to do a logger, and here is the code I'm using to log values: Code: char* WepName = (char*)(Weapon + 0x000008); ofile << "JamesRo: ID = " << i << ", Nome = " << WepName << ", Dano = " << *(float*)(Weapon + 0x81C) << ", Alcance = " << *(float*)(Weapon + 0x80C) << "\n"; All values except for the weapon name(which is always empty) are correct. What am I doing wrong?