10 lines
237 B
Plaintext
10 lines
237 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetClickingObject();
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
ClearAllActions();
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
AssignCommand(oPC, ActionStartConversation(oPC, "conv_startjour", TRUE, FALSE));
|
||
|
}
|