9 lines
172 B
Plaintext
9 lines
172 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int nTalkTimes = GetLocalInt( oPC, "DEV_TALKTIME11");
|
||
|
if (100 == nTalkTimes) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|
||
|
|