/help command problem

Drop an English version of helpmsgstr.lua into datalua filesdatainfo or patch it into your GRF.
Thank you sir. 
default_biggrin.png


 
Do you know hot to disable showing this messages when you logged in? Cause i tried to looking for usages of this variable(HelpMsgStr). Found function in common.lub file which use this variable. Also tried to search usages of this function, but with no result((.

function getHelpMsg(idx)
  if HelpMsgStr == nil then
    return ""
  end
  if HelpMsgStr[idx] == nil then
    return ""
  end
  return HelpMsgStr[idx]
end
 
 
Last edited by a moderator:
you could erase what's in the helpmsgstr file maybe?

 
I mean do not show comand list when user logged in. Only when he enters /h or /help.

 
Back
Top