local rcc = RunConsoleCommand
function RunConsoleCommand(what)
print(' running command '..what )
return rcc(what)
end
local rcc = RunConsoleCommand
function RunConsoleCommand(what, ...)
if ... then
MsgN("Running command: "..what)
Msg("Arguments: ")
MsgN(...)
else
MsgN("Running command: "..what)
MsgN("No arguments")
end
return rcc(what, ...)
end