-
Posts
25 -
Joined
-
Last visited
Everything posted by TheXXI
-
I use the code: Scriptname TXXIElisifRomance01StartScript extends Quest Quest Property CurrentQuest Auto Quest Property SubscriptionQuest Auto Event OnInit() PO3_Events_Form.RegisterForQuestStage(Self, SubscriptionQuest) Debug.MessageBox("RegisterForQuestStage") EndEvent Event OnQuestStageChange(Quest akQuest, int newStage) Debug.MessageBox("OnQuestStageChange") if (akQuest == SubscriptionQuest) Debug.MessageBox("Quest: " + akQuest.GetName() + ", new stage: " + newStage) endif EndEvent The script itself has been added to the quest and it has the following property: Only the first MessageBox("RegisterForQuestStage") works for me. I change the quest Favor252 stages using setstage, but OnQuestStageChange is not called. What could be the problem?
-
I created a dialog in the Dialog Views section, then deleted it, but found the same dialog in Player Dialog. Is it enough to just delete it there? Or should the dialogs be deleted in some other way?
-
How to make an NPC with a player's head? I have created a file with the extension .NPC used the SPF console command and imported this file to the new actor in the Character Gen Parts section of CK, the NPC's face is completely different from the player's face. Are there any other ways?
-
I use this mod. Initially, the entire piercing is placed crookedly, I changed some nif files and it was placed as it should be. But after restarting the game, it changes its position. What could be the reason and how to fix it? Before restarting: https://imgur.com/ssm9rHl After: https://imgur.com/HJ0e9uR
-
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
I found out that this is the Armor and Clothing Extension mod, if disable it, then the priestess changes clothes. But I don't understand how to combine them, I created a new mod and added Armor and Clothing Extension as a master, but it didn't help. UPD: Armor and Clothing Extension uses scripts in which clothes are installed via SetOutfit() -
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
Yes, the console says that your mod the last thing affecting her Base ID. I'm not sure if I haven't exceeded the mod limit, but converting your mod to esl didn't solve the problem. If disable your mod and Bijin, then the console indicates the last thing affecting her Base ID is Update.esm. -
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
I downloaded Bijin Wives and your mod, your mod worked for me, a priestess without clothes. UPD: I tested your mod when turning on 5 more mods, but when turning on the entire list of 613 mods, the priestess does not change clothes again. -
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
I don't quite understand you. There are 2 wizards connected to my mod: Skyrim.esm and Update.esm -
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
I launched a new game not through MO 2, nothing has changed. Priestesses wear default clothes. Could you post your esp? -
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
I disabled all mods, left only: Unofficial Skyrim SE patch Alternate Start Test Outfit (my mod) The equipment of the priestess in the temple and the copy (placeatme) did not change. -
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
I use MO2. I use the following add-ons for CK: I don't quite understand, should I open only Skyrim.esm in SSEEdit? I started a new game through an Alternative start, then teleported to the temple of Dibella, there I looked at the original priestess and called up a copy via placeatme. -
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
Yes, my mod is enabled and loads after bijin aio. I called a copy, she also wears default clothes. -
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
In the CK preview, the new outfit is displayed. -
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
-
I can't change the NPC's outfit.
TheXXI replied to TheXXI's topic in Skyrim's Creation Kit and Modders
I launched a new game, nothing has changed, the priestesses wear default clothes, although Base last changed by is my mod. -
I wanted to change the outfit of the priest of Dibella, but I couldn't do anything, they continued to wear default clothes. For example, c created an empty outfit and installed it by Senna, when checking in the game she still wears default clothes. The only mod that is shown in the More Informative Console as Base last changed by is Bijin Aio.esp, I installed it as a master file, but it didn't change anything. What could be the reason?
-
I don't understand if I actually need to split the code. I'm going to refer to the script where I declared the sounds from just one magic effect script. Before that, I had experience working with other languages and frameworks, where all the code is divided into files, and when building everything is assembled into one file, I wanted to transfer similar logic to papyrus, but now it seems to me that I am doing the wrong thing.
-
I want to create something like player comments, the comments themselves are audio files. An example of what I have: Scriptname TXXIActiveCommentsScript extends ActiveMagicEffect function OnEffectStart(Actor akTarget, Actor akCaster) LocChangeSounds = new Sound[8] LocChangeSounds[0] = LocChangeSound01 LocChangeSounds[1] = LocChangeSound02 LocChangeSounds[2] = LocChangeSound03 self.RegisterForTrackedStatsEvent() endFunction function OnLocationChange(Location akOldLoc, Location akNewLoc) ;Debug.Notification("OnLocationChange") LocationChangeSounds[Utility.RandomInt(0, 2)].Play(Game.GetPlayer()) endFunction Sound Property LocChangeSound01 Auto Sound Property LocChangeSound02 Auto Sound Property LocChangeSound03 Auto Sound[] LocChangeSounds Depending on various events and checks, different sounds will be played, I would like to put the creation and work with sound in a separate script.
-
Is it possible to logically split the code into several separate scripts and call the function of one script from another? In my mod, a magic effect with a script hangs on the player, in this script I would like to call functions from another script. I suppose it is possible to create a quest and put a script in it, but is it good in terms of optimization? And if I need several scripts, do I need to create several quests and keep them active? What other options could there be?
-
I installed Creation Kit SE 1.5.73 on Skyrim SE 1.5.97.0.8, when uploading data from Skyrim.esm and Update.esm, I have 1.6 million warnings, why can this happen and what to do about it?