Downloads containing andknuckles.mut

Downloads
Name Author Game Mode Rating
JJ2 1.23 vanilla: Miscellaneous stuff Violet CLM Multiple N/A Download file

File preview

#pragma name "& Knuckles"

bool onLocalChat(string &in stringReceived, CHAT::Type chatType) {
	if (chatType == CHAT::WHISPER) //can't accurately replicate whisper chat
		return false;
	if (!jjRegexSearch(stringReceived, "& Knuckles")) {
		jjChat(stringReceived + " & Knuckles", chatType == CHAT::TEAMCHAT);
		return true;
	}
	return false;
}