This is a problem due to the leader's account name is to long and the chat being read for the game name is "in the game xxxx-01 (private). instead of reading "the game xxxx-01 (private).
You will notice this line in the NTBotLeech.ntj file:
var regGameNameEnglish=/^\s*(the\s)?(game\s)?([\w\s-]*\w)\s\(private\)\.\s*$/gi;
The fix for this is fairly simple. You can see the words (the\s)?(game\s)?
You need to check your leader's lines when you /f l in game. the second line is being read. If the secodn line reads "in the game xxxx-01 (private)." then you have to add (in\s)? before (the\s)?(game\s)?
End result: var regGameNameEnglish=/^\s*(in\s)?(the\s)?(game\s)?([\w\s-]*\w)\s\(private\)\.\s*$/gi;
You must then find the line:
game = lines[friend + 1].replace(regGameNameEnglish, "$3");
Change the $3 to $4 (this changed the word that is read from the 3rd to the 4th.
IF you have more words to enter, follow the same format for both edits.