18 lines
311 B
Plaintext
18 lines
311 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("KingRall");
|
|
|
|
AssignCommand(oTarget, ActionAttack(GetObjectByTag("ATsuWarrior")));
|
|
|
|
oTarget = GetObjectByTag("ATsuWarr");
|
|
|
|
AssignCommand(oTarget, ActionAttack(GetObjectByTag("KingRall")));
|
|
|
|
}
|