Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2023-09-25 20:24:01 -04:00
parent 4e16ca63ca
commit 5197ad9a4d
7741 changed files with 5391820 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
//::///////////////////////////////////////////////
//:: 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));
}