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
 
  Stranded II
 Stranded II  Raptor Queen not working
 Raptor Queen not working 
  1
 1 
 Offline
 Offline
 create [PARAMETERS]
 create [PARAMETERS] create ( [PARAMETERS] ) ;
 create ( [PARAMETERS] ) ;  
   Hurri04
 Hurri04 and it's not needed to add bracket, isn't it ?
  and it's not needed to add bracket, isn't it ? 
 