Hi, i have made a code. Its meant to announce a "Sentence" but i dont know how to make a string into a sentece. The string up to now only announces the first word of the sentece.
//Announce
}else if(memcmp((void*)lpcLine, "/announce ", 10) == 0){
bRet = false;
char AMsg[200];
sscanf(lpcLine, "/announce %s", &AMsg);
PostAnnounce(AMsg);
eg: /announce Hello Their
and all i see then is
Hello
instead of Hello Their