Jump to content

Home

Add Party Member To Party?


darth-ackbar

Recommended Posts

So I'm trying to add a party member to the current party via a script, so I don't use the ShowPartySelectionGUI function. I've been unable to find any way to do this, I have tried AddPartyMember with no success. Does anyone know how to do this, or even if it's possible? Thanks in advance.

Link to comment
Share on other sites

It seems George Nihilus might have a solution to your specific problem.

 

This was the result of using the search tab at the top right of our screen on this website, just below the box that shows our username and when we last visited.

 

For someone who is trying to make a TC mod, you don't seem to get it.... You need to try and figure out some of this stuff on your own, or it is never, EVER, going to happen for you. The community is sparse and weary, my friend... We will not do the work for you, although at times we seem more willing than others. Still, nothing frustrates me more than seeing a question asked in this forum, and after doing a simple search basically using the new posts words as keywords for the search, I find 7 pages of threads relating to the subject. It then becomes blatantly obvious that you aren't really willing to put in all the work required to make a massive mod, and that ultimately you are going to let a lot of people down that invest time and interest in your mod, and you will have wasted the time of many forum contributors.

 

Sorry, I hope I am wrong, but there is my 2 cents.

Link to comment
Share on other sites

Sorry if I come across that way but I do know a lot about modding, just because I don't know a few things that doesn't mean I an doomed to fail. I did look through holowan, and even at other scripts in the game and various mods and I couldn't find anything. I'm sorry if I'm not going to spend hours looking through hundreds of scripts to find one little piece of code that isn't actually that important.

Link to comment
Share on other sites

You need to spawn them first. AddPartyMember won't do anything if the party member object doesn't exist. Here's an extract from one of my scripts:

	if( GetPartyMemberCount() < 3 ){
	object oNPC = SpawnAvailableNPC(iNPC, GetLocation(oObject));
	AddPartyMember(iNPC, oNPC);
	}

...where iNPC is an NPC constant and oObject is the party leader.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...