11 lines
239 B
Plaintext
11 lines
239 B
Plaintext
int StartingConditional()
|
|
{
|
|
//If no name is entered, bring up the convo node to restore default name
|
|
string sName = GetLocalString(OBJECT_SELF,"vulc_newname");
|
|
if(sName=="")
|
|
{
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|