-
Posts
32 -
Joined
-
Last visited
Everything posted by Krijanowsky
-
This is not really a mod request, rather, it's an asset request. I am working on a mod that adds animated powers to some daedric artifacts, but the key part of the mod is the animation. Without a fitting and good one, the powers lose a lot of their touch. I am no animator, so I humbly ask for this particular asset: - Seppuku animation from Elden Ring or something close to it. This skill, dealing with nymics and and the razor, really needs this animation to look good. My laptop can barely run Oldrim, so that's why I can't research the tools needed, since they wouldn't even run properly here. If someone could help me with this, I would be most appreciative! And... thanks in advance.
-
It seems you have a pirated copy of the game and it was not installed properly. Sorry if I'm wrong.
-
Need Help with Small Scripting Issue
Krijanowsky replied to Krijanowsky's topic in Skyrim's Creation Kit and Modders
Messed around with the mod today and I think I discovered the issue or, at least, had an insight about the proccess behind the scenes. The problem is, since the script calls for the "spellout" event at the end, of course the game will play the animation. What boggled me is the fact that other mods using the same method and almost the same scripts didn't seem to call the animation, since the animation never played. Apparently, all come down to the duration of the magic effect. If the set duration is long enough (let's say 5 seconds), the spellout event will be shown in game. If not, then the magic effect will finish mid animation (the first one we call in the script) and the other, the spellout, won't have enough time to be played, but the benefitial effects are still applied, that is, the character does not get stuck in the charge animation. Not all animations should be used in the same duration, though, because some animations are longer than others. It requires some fine tuning, but I think 3 seconds is a good enough number for most cases. So, that's it! I hope my little problem and solution may help someone who might need in the future. P.S: I tested this hypothesis with another animation for another artifact and yeah, it really seems to be the case. Both animations are playing nicely, with no ugly spellout animation letting my character stuck. Success! -
Need Help with Small Scripting Issue
Krijanowsky replied to Krijanowsky's topic in Skyrim's Creation Kit and Modders
Papyrus compiles everything just fine; no errors whatsoever. I'm guessing the problem is with the behaviour or, at least, the way SAE works, though I'm not sure what exactly. I need to play the animation with a sword (for a Dawnbreaker skill), DAR changes the animation and then the character was supposed to just resume the fighting or whatever the player is doing at the moment, but without calling the SpellOut event, the character just gets stuck, believe it or not, IN the SpellOut animation. On the other hand, if I call the SpellOut event, the character performs the pose for 2 or 3 seconds, and only then the behaviour resumes. I really need to get rid of this last portion of the animation so as to not break the flow of the gameplay for end users, but it's been a pain in the arse... -
Need Help with Small Scripting Issue
Krijanowsky replied to Krijanowsky's topic in Skyrim's Creation Kit and Modders
Replaced the debug.sendAnimationEvent(selfRef as objectreference, "RitualSpellOut") with: debug.sendAnimationEvent(selfRef as objectreference, "IdleForceDefaultState") just to see if the magic release animation would stop playing and, oddly enough, it didn't. It remains the same, no matter what I do... maybe the "RitualSpellStart" forcibly calls the "RitualSpellOut" animation via behaviour? I'll continue to try things out... -
Need Help with Small Scripting Issue
Krijanowsky posted a topic in Skyrim's Creation Kit and Modders
Hey y'all! I am trying to make a simple mod, in which I give the daedric artifacts a skill with custom animations. Everything (almost) is working fine, except that when the animation ends and the script calls for "Ritual Spell Out", the character stays on that position for a while. The thing is, from what I saw peeking through other's scripts, this wasn't supposed to happen. I call the AnimEvent using Debug and I have to call the Ritual Out or else the character gets stuck. Other mods do the same, with basically the same script and this ugly animation never plays (like the mod Vitrium, for instance). But mine does, and no amount of changing the script helped. By the way, this is the script: SPELL Property FastHealing Auto Bool FirstPersonView = false Actor selfRef Event OnEffectStart(Actor Target, Actor Caster) selfRef = Target if selfRef == game.GetPlayer() if selfRef.GetSitState() == 0 && selfRef.GetAnimationVariableInt("bIsRiding") == 0 && selfRef.GetAnimationVariableInt("bInJumpState") == 0 && selfRef.GetAnimationVariableInt("IsEquipping") == 0 && selfRef.GetAnimationVariableInt("IsUnequipping") == 0 Game.DisablePlayerControls(true, false, true, false, false, false, true, false, 0) if selfRef.GetAnimationVariableInt("i1stPerson") == 1 FirstPersonView = true game.ForceThirdPerson() endIf debug.sendAnimationEvent(selfRef as objectreference, "RitualSpellStart") # here I call for the modified animation and it works nicely! FastHealing.Cast(SelfRef) else self.dispel() endIf else self.dispel() endIf endEvent Event OnEffectFinish(Actor akTarget, Actor akCaster) debug.sendAnimationEvent(selfRef as objectreference, "RitualSpellOut") # The problem lies here. This animation lasts longer than the one that should be the ONE. if FirstPersonView game.ForceFirstPerson() endIf game.EnablePlayerControls(true, true, true, true, true, true, true, true, 0) endEvent Does anyone know what's wrong with the script? Thanks! -
[LE] Stagger on Casting.
Krijanowsky replied to Krijanowsky's topic in Skyrim's Creation Kit and Modders
Sorry for the very very late reply, but I've been through some real life problems. Anyways, thank you for this! I admit that this is a real challenging approach since I know very little about modding, but I'll give it a lot of tries. XD -
[LE] Stagger on Casting.
Krijanowsky replied to Krijanowsky's topic in Skyrim's Creation Kit and Modders
Oh, I see. I am trying to fix the stagger spell now. Thank you for the guidance and patience, it's been REALLY great to have someone to point me in the right direction. And, of course, good movie to you! -
[LE] Stagger on Casting.
Krijanowsky replied to Krijanowsky's topic in Skyrim's Creation Kit and Modders
I created both spells and attached a small debug script to see when the effect on them is fired and well, as separate spells, they work as intended: the cannon ball gives me a notification only when it hits an npc and the stagger spell as soon as I cast it. Oddly enough, when I put your script inside the cannon MEffect and cast the spell ingame, two things happen: First, the stagger only occurs when the spell hits an npc, but that's not what I want. I'd like it to stagger the player at the moment of the casting. Second, when the spell hits a target and the stagger (on the player) begins, it doesn't stop. I had to Alt F4 my game Haha I don't know if it matters, but the delivery type of the spells is, for the cannon, Aimed and for the stagger, Self. The script is like this inside the Magic Effect: Scriptname AAACannonBallScript extends activemagiceffect SPELL Property StaggerSpellProperty Auto Event OnEffectStart(Actor akTarget, Actor akCaster) Debug.MessageBox("Got Staggered?") StaggerSpellProperty.Cast(akCaster, akCaster) EndEvent -
[LE] Stagger on Casting.
Krijanowsky replied to Krijanowsky's topic in Skyrim's Creation Kit and Modders
Dang, I'd need to deal with scripting, then? Thanks a lot, man, but unfortunately, I have no idea of how to approach this and Papyrus is very confusing. But I'll try my best to read some resources and try to apply what I learn. EDIT: I've been trying what you said for the last few hours, but the magic effect doesn't even appear in the dropdown menu to be added to the Cannon spell, no matter what I do. -
Hello y'all, long time no see... I'm trying to make a spell stagger the player upon casting it to simulate the impact (it will be a sort of fireball cannon), but so far, I had zero successes. Does anyone have a tip on this? Thanks!
-
Oh, well... Thing is: I'm adding separate heads for each race and, on each race, separate heads for each gender, plus some unique heads for some named npcs. Guess I'll need to do this manually anyways... But, thank you.
- 2 replies
-
- creation kit
- npc
-
(and 2 more)
Tagged with:
-
Hi y'all. I am working on the update for my mod Head Hunt and I'm having a real hard time adding the head trophies to the npcs, because I am doing this manually and my laptop is from the Age of Stones, which makes everything just worse. I need advice to do the following: When any of the nord male npcs die, a specific head item will be added to his inventory so the player can loot and equip it. I will do this for ALL the npcs, so any way to make things easier would be appreciated.
- 2 replies
-
- creation kit
- npc
-
(and 2 more)
Tagged with:
-
Technically, you can, but it's not a practice people think it's ok. Mods are meant to be free, and this leads people to learn how to mod. That's why the community is so great and varied. As for the models you want to be modded, I'm not a modeler and I am not really interested in learning this, but if you post some images for reference, the odds of someone wanting to make them appear would be higher.
-
Team TAL's Dark Souls Fallen Knight Armor
Krijanowsky replied to Dalewd200's topic in Skyrim's Skyrim LE
You can find it on eskrimmods. Just Google it and search the mod using the tabs at the top of the page.- 2 replies
-
- armor mod
- dark souls 3
-
(and 2 more)
Tagged with:
-
LE ¿Who can make basic mod of quick key to eat and drink?.
Krijanowsky replied to Kuraxen's topic in Skyrim's Mod Ideas
I don't know about modding this, but, you coud favorite all the food on your inventory and, if using SkyUI, assing a hotkey to eat them, much like we do with potions on our inventory. I didn't tested this, but it should be good enough. -
Thank you :laugh:
-
IsharaMeradin, is it ok if I use your script for my mod HeadHunt? I had a hard time trying to get it to work and finally I managed to do it. When I kill the test npc and loot his head, the script does its job and replace the head for the assigned gore properly, though I had to duplicate the decap head in the CK, change the slots and add it as a property inside the script. Naturaly, I will credit you and disable the mod for the donation points. https://youtu.be/auABrkDL6tg
-
EmpressKaileena1st I released a mod called Head Hunt, and it features some head trophies you can loot from dead creatures like giants and draugrs and carry their heads on your hip. I'm still working on more heads, including some of named npc's. *sorry to resurrect an old topic.
-
[LE] Paste Branch Failed With Errors
Krijanowsky replied to Kadraeus's topic in Skyrim's Creation Kit and Modders
I know little to nothing about modding, so I don't have a good advice, but for copying meshes in general, I use Outfit Studio and Nifskope only when I run into some trouble, because it seems easier to do that kind of thing there. So, I guess you could try that as well and hopefully won't have to deal with issue after issue... But I'm not sure. And about the facegen... I do not have the slightest idea. Tried to make a custom male npc and I failed horribly, so... XD All I can do is to wish you good luck. -
[LE] Paste Branch Failed With Errors
Krijanowsky replied to Kadraeus's topic in Skyrim's Creation Kit and Modders
I'm glad it worked! And I hope the mesh works fine in game later. I know how we can pass from one problem to another when trying to mod. -
[LE] Paste Branch Failed With Errors
Krijanowsky replied to Kadraeus's topic in Skyrim's Creation Kit and Modders
I can be wrong, but yesterday I had this problem trying to copy/paste some meshes of a head model I was using for my mod. And this error appeared because the target mesh I was supposed to paste this on, hadn't the same ninode. So, I guess you have to go to (in the mesh you're trying to copy) Ninode>NPC R Clavicle [RClv] and remove it. Then, you can copy and paste. Hope this helps. -
How are we supposed to deal with bad mod Authors?
Krijanowsky replied to SkrunchyCakes's topic in Valheim's Discussion
I'm not sure, but maybe you could try to contact the Nexus' staff and report what's happened. I understand how you feel, though I didn't have this kind of issue, but we should be able to report bugs and the mod authors should listen. Like you said, it's better for the whole community. -
[LE] Item Dependency
Krijanowsky replied to Krijanowsky's topic in Skyrim's Creation Kit and Modders
IsharaMeradin, I see... Thank you for the script. I'll see what I can do. Edit: if I was to use this script, would I have to assign this script to every head item separetely or can I just add this script to the belt and it will be applied to all items I want if inside the "()" I write the variables? -
[LE] Item Dependency
Krijanowsky replied to Krijanowsky's topic in Skyrim's Creation Kit and Modders
Well, if you mean the armor addon, the weight painting and the free slot to be able to equip the head, I already did that. Maybe I wasn't very clear, so I apologize. What I meant is: I want the player to equip the belt first and only then he can equip the head, or it won't work. Is this possible?