I was working on some boss units, but my Raptor Queen isn't working. It is supposed to summon a raptor when it hits me and 3 when dead. Anyone could help me and tell me what is the problem with this script?
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
script=start
on:ai_attack {
create "unit",2,getx("self"),getz("self")
}
}
on:kill {
event "iskill_hunt","global";
create "unit",2,getx("self"),getz("self")
create "unit",2,getx("self"),getz("self")
create "unit",2,getx("self"),getz("self")
}
script=end