Yes!
I need a mod to have darth malak as npc in my team.
Can anyone give me a darth malak npc mod?
Hear is a manual but I can't understand it.
Can anyone make this mod and send to my E-Mail Adress?
E-Mail Adress: Stefan-Rode@web.de
Manual:
And you can add totally diffrent NPCs to your group!
Screenshot:
Malak in your team
http://www.megamods.de/swkotor/pics/malak1.jpg)
These aren't changed Playermodels. They are totally diffrent NPCs.
This is how to make it:
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_darthmalak or n_yoda)
- Slot is the Portrait Slot in your Party Selection Screen (0-8)
-----------------------------------------------------------------
Please make the mod...
Thank you.