Created top hak for crafting dialog. Moved Bioware creature abilities to top hak. Fixed DMFI wand handouts. Added DMFI language handouts. Added CCOH 6. Disabled PC corpse system. Modified new player startup system. Full compile. Updated release archive.
14 lines
325 B
Plaintext
14 lines
325 B
Plaintext
#include "mk_inc_craft"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oTarget = OBJECT_SELF;
|
|
|
|
CISetCurrentModMode(oPC,X2_CI_MODMODE_INVALID );
|
|
MK_GenericDialog_CleanUp();
|
|
|
|
MK_SetPlayerTargetScript(MK_CCOH_ONPLAYERTARGETSCRIPT);
|
|
EnterTargetingMode(oPC, OBJECT_TYPE_CREATURE, MOUSECURSOR_MAGIC);
|
|
}
|