Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.

i need a script (again...) for k1

Page: 1 of 1
 Canderis
09-13-2008, 8:48 PM
#1
Can anyone give me a script that adds a class to a party member?
 TriggerGod
09-13-2008, 9:03 PM
#2
Can anyone give me a script that adds a class to a party member?

EDIT:
Whoops. Didn't see the K1 part. Sorry :(
 deathdisco
09-15-2008, 12:22 AM
#3
//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.
 Canderis
09-15-2008, 12:24 AM
#4
thank you i tried to figure it out my self but it didn't work that well....
Page: 1 of 1