If you know the exact number of args, you could probably do this, although I don't know how safe it is:
Code:
my_func1()
{
new string[64] = "Hello %s, and die"
new name[] = "Hawk552"
my_func2(string,63,name)
}
my_func2(str[],len,format1[])
{
format(string,len,string,format1)
}
__________________