9 lines
235 B
Plaintext
9 lines
235 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
int nParm=GetLocalInt(oPC,"nParm");
|
||
|
SetLocalInt(oPC,"bContingency",TRUE);
|
||
|
SetLocalInt(oPC,"nContingencyType",nParm);
|
||
|
DelayCommand(30.0,DeleteLocalInt(oPC,"bContingency"));
|
||
|
}
|