Jump to content

Home

K1 Re-recruiting Carth and Canderous?


GeorgNihilus

Recommended Posts

hi there. Once again bothering here ... ;)

 

well I've lost Carth and Canderous from my party screen, after playing BoS Solomon Revenge and being replaced temporary by Kobayashi and the Mechanic.

Matter is I'd like to know why this script to recruit them back is not working, here it is:

 

// to add again to the party missing Carth and Canderous AFTER finishing the BoS SR mod

// in the Korriban Wastes (trapped in Ancient cave, closed door, so warp to Ebon Hawk done)

 

void main()

{

//RemoveAvailableNPC(1);

//RemoveAvailableNPC(2);

AddAvailableNPCByTemplate(1, "Cand");

AddAvailableNPCByTemplate(2, "Carth");

DelayCommand(1.7,ShowPartySelectionGUI());

 

}

 

the script is doing nothing, although IS running cause I got the party screen open. It doesn't work either removing the 2 lines with the // characters just in case, although the slots are free when calling the party screen before running this script.

 

what could I be missing or wrong? :yelhelp: thanks on advance :)

Link to comment
Share on other sites

Did you use the return to Ebon Hawk button. Canderous and Carth are added back into the party in the korriban caves. If you return to EH the script wont trigger.

So they are added in Korriban caves? thanks for that. Yeah I returned to EH through the travel button 'cause I couldn't get into the caves, found a closed door before :roleyess: ... can u tell me exactly the module name where Carth and Canderous are added to at least check the source scripts provided by Silver? :raise:

 

if u don't know how, load your savegame in the module they are re-recruited and ask the cheat console, type in whereami and ENTER and copy the module name. I'd appreciate it a lottttttt... :)

Link to comment
Share on other sites

I thought it was in those "apartments" in Dreshdae... but I mean if worse comes to worse, you could always just use these scripts and attach them to someone's dialogue...

 

void main ()
{
  RemoveAvailableNPC(3);
  AddAvailableNPCByTemplate(3, "p_carth");
  DelayCommand(1.5,ShowPartySelectionGUI());
}

 

void main()
{
  RemoveAvailableNPC(2);
  AddAvailableNPCByTemplate(2, "p_cand");
  DelayCommand(1.5,ShowPartySelectionGUI());
}

Link to comment
Share on other sites

I thought it was in those "apartments" in Dreshdae... but I mean if worse comes to worse, you could always just use these scripts and attach them to someone's dialogue...

 

void main ()
{
  RemoveAvailableNPC(3);
  AddAvailableNPCByTemplate(3, "p_carth");
  DelayCommand(1.5,ShowPartySelectionGUI());
}

 

void main()
{
  RemoveAvailableNPC(2);
  AddAvailableNPCByTemplate(2, "p_cand");
  DelayCommand(1.5,ShowPartySelectionGUI());
}

thanks a whole lot pal!! :golfclap: those scripts did add them, it was a tag-template issue; although the numbers were changed, so I came out finally with this to add both same time:

 

void main ()

{

RemoveAvailableNPC(1);

RemoveAvailableNPC(2);

AddAvailableNPCByTemplate(1, "p_cand");

AddAvailableNPCByTemplate(2, "p_carth");

 

DelayCommand(1.8,ShowPartySelectionGUI());

}

 

only remaining pretty bothering issue is that their dialogs have reset, both Carth's and Canderous', as well as their level which is 4 again; so now I suppose I will have to figure out -from the last savegame when they were still in party- how to 'fix' that ...

 

Gladly, I guess I should be able to finish the game with them in the party at least.

 

thanks again and also Alkonium and luc500 for your comments :)

 

edit: false alarm, apparently dialogs are OK ...

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...