UW2_PRC8/_module/nss/itm_dmbodytailor.nss

28 lines
839 B
Plaintext
Raw Permalink Normal View History

2023-09-25 20:24:01 -04:00
//::///////////////////////////////////////////////
//:: BODY TAILOR: Widget
//:: item activation
//:://////////////////////////////////////////////
/*
this makes the targeted NPC start the body tailor
conversation, so you can change its wings, tail,
head, tattoos, eyes, phenotype, etc etc etc.
body tailor must be installed (the conversation and scripts, at least)
this script must be called from your modules onActivateItem script.
this uses stale kvernes method.
*/
//:://////////////////////////////////////////////
//:: Created By: bloodsong
//:://////////////////////////////////////////////
void main()
{
object oPC = OBJECT_SELF;
object oTarget = GetLocalObject(oPC,"IT_ACT_TARGET");
AssignCommand(oPC, ActionStartConversation(oTarget, "bodytailor", TRUE, FALSE));
}