-
Posts
131 -
Joined
-
Last visited
Nexus Mods Profile
About javaplaza

Profile Fields
-
Country
United States
javaplaza's Achievements
Collaborator (7/14)
0
Reputation
-
Did you ever work this out? Where is the script for the spell? Is the AI package you tried at the top of the NPC's packages list? Here is what I suggest... 1. Make your dialogue, make sure it works. 2. Put the spell into the NPC's Spell List in the CK, it will need to be there for anything to work properly. 3. Go back to your dialogue and in the "End" papyrus fragment add this : yourSpell.cast(WhereSpellWasCastFrom, WhatSpellIsCastOn)4. Make sure you link the script properties!! try that.
-
SSE Bound Weapons for Standalone Followers?
javaplaza replied to Gorgopis's topic in Skyrim's Creation Kit and Modders
Are you using an AI package ? This might help- 9 replies
-
- standalone followers
- bound weapons
- (and 2 more)
-
Is there a way to complete an objective WITHOUT it popping up in game and making that sound? Here is how I managed to do it. Keep in mind this is for a misc quest, im not sure how well it would work for a main quest . MyQuest.SetObjectiveDisplayed(15, abForce = false, abDisplayed = false) setobjectivecompleted(15)
-
SSE Creating a menu but it opens twice
javaplaza posted a topic in Skyrim's Creation Kit and Modders
I'm creating a messagebox menu thats pretty extensive, so when it opens twice it seems way more confusing than it actually is. I put the script on a magic effect (Fire and Forget on Self) and put that onto a spell. The Script: Event OnEffectStart(Actor akTarget, Actor akCaster) if akTarget == game.getplayer() MenuMain() endif endEvent Anyone know why this would fire twice in a row? Or how I can prevent that? Thanks EDIT:: As a test, I changed things around and put the script on a ring. When you equip the ring the menu works perfectly. Something is going wrong with my OnEffectStart... i would prefer to use it so any help would be much appreciated! -
SSE How does Hermaeus Mora work?
javaplaza replied to javaplaza's topic in Skyrim's Creation Kit and Modders
updated woohoo! -
SSE How does Hermaeus Mora work?
javaplaza replied to javaplaza's topic in Skyrim's Creation Kit and Modders
I got him working I will update with how I did this a little later today -
SSE How does Hermaeus Mora work?
javaplaza replied to javaplaza's topic in Skyrim's Creation Kit and Modders
This is one of the more simple scripts for Hermaeus' appearances, thanks I hadn't looked before. This does seem consistent with the vanilla codes I've been reading, although my attempt to play/wait for anim01, then play anim02 did not work. I'm determined to keep trying. Thanks for your reply! :happy: -
How Does Hermaeus Mora Work? [sOLVED] Hermaeus Mora (HM) is unlike any other NPC in the game, he’s “‘modular” for lack of a better term. There are multiple parts that are essential for getting him to appear. If the parts are not hooked up correctly you could lose hours, days, YEARS and never even catch a glimpse of Hermie in-game. Step1 – A Working Quest First, you’ll need a quest that’s running in whatever way your heart desires, create a ‘new script’ and copy this code. Don’t put it on a Quest-Fragment script - create a new one! This is code I copied from DLC2MQ05 and edited, and don’t worry about hooking up any properties yet. We will come back to that. IMAGE: Step One ObjectReference Property HermaeusMoraTA auto ObjectReference Property HermaeusMoraActivator auto DLC2HermaeusMoraFaceFXSCRIPT Property DLC2MQ05HermaeusMoraFXRef Auto Function EnableHM() DLC2MQ05HermaeusMoraFXRef.ChangeState() HermaeusMoraActivator.Enable() HermaeusMoraTA.Enable() EndFunctionStep2 – Placing Hermaeus Mora HermaeusMorasFace01,02,03 are the Hermaeus Mora meshes in all their squiggly greatness. You can place as many of them as you like (I strongly suggest 8 or less at this time) and arrange them however you like. Also! This guide does not include HM movement. if you want him to move around or follow you, you'll have to figure it out on your own. Once you get your HM Faces placed where you want them, move onto Step Three. Step3 – Dungeon Diving IMAGE: Step Three Go into a cell where you can find HM, you’re going to copy/paste the three boxes from this image (orange, green and red) and place them next to your Hermaeus Faces from Step Two. I copied them from the interior cell ‘SeptimusSignusOutpost’ but you can find it anywhere Hermaeus appears in the vanilla game. Green - DLC2DA04HermaeusMoraFXRef001 Red - DA04HermaeusMoraActivatorShunt Orange - DA04HermaeusMoraREF Once these boxes are placed in your cell next to Hermaeus, you’re almost done! Now we need to set up the script properties for all these parts. Step4 – Script Properties Quest Script Properties First, go back to your quest from Step One and open the new script I had you create. Connect the property ‘XXHermaeusMoraFXRef’ to the green box you just placed, property ‘HermaeusMoraActivator’ to the new red box, and ‘HermaeusMoraTA’ to the new orange box. IMAGE: Step Four 01 Red Box Properties Now navigate to the cell you pasted these new things into and pull up the properties for the red box. ‘RealActivator’ property should be pointed to the new orange box you placed. IMAGE: Step Four 02 Green Box Properties Next, open the properties for the green box, this will be a little tricky… here’s what that looks like before we edit it: IMAGE: Step Four 03 What needs to be done here is clearing all these values, but I found clicking the ‘clear value’ button didn’t do anything. Instead, click on one of them and change the cell it’s looking in and the value will change to None. Then you can add your new Hermaeus Mora faces/meshes that you added in Step Two. Example: IMAGE: Step Four 04 After this is complete, the function that’s in the quest script you added in Step One can now be called on any quest stage you like. kmyquest.EnableHM() is the function you’d type into your stage fragment and watch Hermaus appear before your eyes! If any of this didn’t make sense or you have any trouble, just comment and I’ll do my best to help. -java
-
[LE] Hermaeus Mora FX invisible in game
javaplaza replied to morrowind1979's topic in Skyrim's Creation Kit and Modders
same id like to know as well -
was going to try but then i found this
-
this was very useful
-
i concur.
-
whats impossible? porting the oldrim version?
-
Resolution problem using mods (Bugged Resolution)
javaplaza replied to Kasabian7's topic in Skyrim's Skyrim SE
im having this same problem edit: i fixed it by doing this: The Skyrim .ini Tweak: Open ../Documents/My Games/Skyrim/Skyrim.ini Add these lines under [display]: iSize W=(desired resolution X) iSize H=(desired resolution Y) Save and launch Skyrim. -
LE Spriggan buzz changed to Leaves Rustling
javaplaza replied to Aelthwyn's topic in Skyrim's Mod Ideas
DM me if youd like some help