char* szWords[] = { "caralho", "porra" };
if (IsGoldGrade(pObj)) //Ignore, its ok. //Crashing after i added the
{
for (int x = 0; x < sizeof(szWords); x++) {
if (strstr((strlwr((char*)szWords[x])), szChat)) {
char szBuffer[256];
sprintf(szBuffer, "You can't type %s", szWords[x]);
Announce(pObj, szBuffer);
memset(szBuffer, 0, 256);
return;
}
}
}
Idk,但我不能用它作爲「代碼」在stackoverflow上。爲什麼我的應用程序崩潰?我的代碼有什麼問題?
引擎收錄:http://pastebin.com/u8yit8Rw
PS:因爲使用IM的Visual Studio 2003
至少告訴我們是什麼錯誤... – csmckelvey
你好。我在我的遊戲服務器上使用。錯誤是,當這個函數執行時,我的遊戲崩潰了。 – Lcs
Pastebin上的文件包含可能被堆棧溢出禁止的單詞。刪除這些單詞,你應該能夠將整個代碼粘貼到你的問題中。 –