10 lines
259 B
Plaintext
10 lines
259 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
// object oPC = GetLastSpeaker();
|
||
|
object oPC = OBJECT_SELF;
|
||
|
SetLocalString(oPC, "cc_event", "chk_17");
|
||
|
ExecuteScript("cc_event", oPC);
|
||
|
if (GetLocalString(oPC, "cc_event") == "1") return TRUE;
|
||
|
return FALSE;
|
||
|
}
|