Can anyone give me a script that adds a class to a party member?
  
 
  
  
    Can anyone give me a script that adds a class to a party member?
 
 EDIT:
 Whoops. Didn't see the K1 part. Sorry :(
  
 
  
  
    //SOLDIER= 0
 //SCOUT= 1
 //SCOUNDREL= 2
 //JEDIGUARDIAN= 3
 //JEDICONSULAR= 4
 //JEDISENTINEL= 5
 //COMBATDROID= 6
 //EXPERTDROID= 7
 //MINION = 8
 
 void main() 
 {
 object oNPC=GetObjectByTag("npc_tag"); //NPC's tag goes here.
 AddMultiClass(4, oNPC); //choose one of the above. 4=JediConsular
 }
 
 This should do it. I've used it many times.
  
 
  
  
    thank you i tried to figure it out my self but it didn't work that well....