?
2 Dinge erstens zu meinem Problem das konnte ich nun lösen und es funktioniert auch super indem ich das gemacht habe:
char NamePrefix[][5] = {
"", "bel", "nar",
"xan", "bell", "natr",
"ev", "pe", "da", "wen"
};
char NameSuffix[][5] = {
"", "us", "ix", "ox", "ith",
"ath", "um", "ator", "or", "axia",
"imus", "ais", "itur", "orex", "o",
"y"
};
const char NameStems[][10] = {
"adur", "aes", "anim", "apoll", "imac",
"educ", "equis", "extr", "guius", "hann",
"equi", "amora", "hum", "iace", "ille",
"inept", "iuv", "obe", "ocul", "orbis"
};
char playerName[21];
char* randomName(char* playerName)
{
playerName[0] = 0;
strcat(playerName, NamePrefix[(rand() % 10)]);
strcat(playerName, NameSuffix[(rand() % 20)]);
strcat(playerName, NameStems[(rand() % 16)]);
playerName[0] = toupper(playerName[0]);
std::cout << playerName << std::endl;
return playerName;
}
case 4:
Console::WriteLine("Random Number: ");
WriteProcessMemory(handle, (LPVOID)varobj.localName, randomName(playerName), sizeof(playerName), NULL); //Write to the local adress memory and change the value
Console::WriteLine("\nWhat did you want to cheat up: ");
break;
Wie du gesagt hast habe ich jetzt ein neues Projekt ohne Cli erstellt und tue von meinem altem Projekt nur die Funktionen übernehmen.
2tens:
Zudem was du zu C++/Cli geschrieben hast(und den link) konnte ich das hier raus zulesen bitte korrigiere mich falls es nicht stimmt.
Cli nimmt man wenn man ein fertiges C++ Programm hat und das mit .net verbinden will.
und was ich nicht weiß kann man auch ohne Cli .net programmieren oder ist das zwingend. Ich weiß das man mit c# .net programmieren kann geht das aber auch mit C++?