Hi,
 
 I would like to make NPCs only target and attack certain NPCs eg. Luke and Kyle to attack a Reborn but ignore another Reborn that is in their vincinity.
 
 I've tried the 'enemy target' command in BehavEd and the 'locked enemy' commands but have not got them to work. :(
 
 Does anyone have an idea on how to do this?
 
 -Blaster
  
 
  
  
    Please! Can any one help? :(
  
 
  
  
    post your script and I'll have a look at it
  
 
  
  
    I haven't made a script. I need to know how to make it to do what I want it to do before I make a script.
 
 Please help! It's important I know how to do this.
  
 
  
  
    OK, you have Vader and Luke right? Give them each and NPC_targetname, these are the names you'll use to refer to them in your script.
 
 Example
 
 Key:NPC_targetname
 Value:Vader
 
 the ICARUS commands would look like this:
 
 //Generated by BehavEd
 
 rem ( "comment" );
 
 affect ( "vader", /*@AFFECT_TYPE*/ FLUSH )
 {
 set ( /*@SET_TYPES*/ "SET_ENEMY", "Luke" );
 }
 
 I haven't tried this myself so there are no guarantees but it's a start. I don't see what's preventing them from acquiring new enemies though.
  
 
  
  
    Thanks Mercenary! I'll give it go.
  
 
  
  
    I'm afraid that doesn't work Vader still attacks me as well as Luke.