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