20 lines
773 B
Plaintext
20 lines
773 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KuljherWarrior",
|
||
|
GetLocation(GetNearestObjectByTag("KuljherAttack1")));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KuljherWarrior",
|
||
|
GetLocation(GetNearestObjectByTag("KuljherAttack")));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KuljherWarrior",
|
||
|
GetLocation(GetNearestObjectByTag("KuljherAttack3")));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KuljherWarrior",
|
||
|
GetLocation(GetNearestObjectByTag("KuljherAttack4")));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KuljherWarrior",
|
||
|
GetLocation(GetNearestObjectByTag("KuljherAttack5")));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KuljherWarrior",
|
||
|
GetLocation(GetNearestObjectByTag("KuljherAttack6")));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KuljherWarrior",
|
||
|
GetLocation(GetNearestObjectByTag("KuljherAttack7")));
|
||
|
}
|
||
|
|