Jump to content

Home

Darth Bandon Party Member


SSJ3Goku

Recommended Posts

Is it possible to use that same code that you use to get malak in your party at the begining but have Darth Bandon instead. Can someone tell me.

 

code:--------------------------------------------------------------------------------

object PlaceNPC(string sTag)

{

if(!GetIsObjectValid(GetObjectByTag(sTag)))

{

return CreateObject(OBJECT_TYPE_CREATURE,sTag,GetLocation

 

(GetObjectByTag("POST_" + sTag)));

}

else

{

return OBJECT_INVALID;

}

}

 

void AddCharToParty(string CharName, int Slot)

{

object oChar;

 

oChar = PlaceNPC(CharName);

AddAvailableNPCByObject(Slot, oChar);

AddPartyMember(Slot, oChar);

}

--------------------------------------------------------------------------------

 

 

- CharName is the Name of the NPC (like n_darthbandon)

- Slot is the Portrait Slot in your Party Selection Screen (0-8)

 

would this work

Link to comment
Share on other sites

I don't think it is possible to increase the party limit without alot of work,but it may possible to increase your party screen size to include more icons then you could place them around the ebon hawk.

Don't ask me how to do it though as of now I have only some idea of where to beggin.

 

I would be sweet to accomplish.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...