So, how would I format the message acording to the number of substrings? I know that I can find their number with
get_msg_args(), but how to add them in the message?
PHP Code:
new szSubString[get_msg_args()][32]
// This is invalid, because it isn't a constant expression
format(szMessage, charsmax(szMessage), "%s", szMessage, szSubstring[0], szSubstring[1], ...) // ?
This has been bugging me for a long time and I still don't have a clue how to do it. I just need the %s parameters to be automatically replaced by the respective substrings.
__________________