Initial Commit
Initial Commit
This commit is contained in:
14
_module/nss/quest_esbanatk.nss
Normal file
14
_module/nss/quest_esbanatk.nss
Normal file
@@ -0,0 +1,14 @@
|
||||
void main()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
object oObject = GetFirstObjectInArea(GetArea(OBJECT_SELF));
|
||||
while (oObject != OBJECT_INVALID)
|
||||
{
|
||||
if (GetTag(oObject) == "anc_roadbandit")
|
||||
{
|
||||
SetIsTemporaryEnemy(oPC, oObject);
|
||||
AssignCommand(oObject, ActionAttack(oPC));
|
||||
}
|
||||
oObject = GetNextObjectInArea(GetArea(OBJECT_SELF));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user