Quote:
Originally Posted by maqi
In the first case you don't have the buffer as an argument.... There is nothing wrong with charsmax
Code:
parse( CommandsName[ command ], charsmax( menu ) );
-->
Code:
parse( CommandsName[ command ], menu, charsmax( menu ) );
|
oh Thank you

.
It is also advisable to change this to charsmax?
Code:
parse( message, cmd, 63, arg, 63, arg1, 63, arg2, 63, arg3, 63 );