Page 1 of 1

parent/creator exists?

PostPosted: Tue Nov 30, 2004 4:06 am
by jazz_e_bob
What is the best way to test if an actors parent/creator exists?

PostPosted: Tue Nov 30, 2004 11:47 am
by makslane
Test the parent or creator name:

if(strcmp(parent.clonename, "")==0)
{
//No parent
}

PostPosted: Tue Nov 30, 2004 2:12 pm
by jazz_e_bob
Thanks! :)