10 lines
214 B
Plaintext
10 lines
214 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oTarget = OBJECT_SELF;
|
|
|
|
AssignCommand(oPC, ClearAllActions());
|
|
AssignCommand(oPC, ActionSpeakString("Foul magic!"));
|
|
AssignCommand(oPC, ActionAttack(oTarget));
|
|
}
|