Hi,

It seems that it is not possible to use a pointer to a pointer in Lite-C - can anyone confirm this?

The manual didn't seem to say anything about it frown

I tried testing it with this code, which resulted in a crash ("invalid arguments"):
Code:
void test(RPGItem** _temp)
{
	str_cat(_temp.name,"\ntest");
}