#[Solved] Is there a way to completely stop myself from getting drenched with blood?
33 messages · Page 1 of 1 (latest)
Soap
Maybe you can somehow mod the game to auto apply soap every second
Without the visual effect, just copy the effect, remove the sfx ID
Maybe? I also wanted to prevent the wetness effect that comes from the soap. If there was a way to have a constant passive always on my character that gives the soap effect, that would be nice...
Well, I'd look at the soap special effect and see what it does, maybe you can edit it to do what you need. Although I have a feeling it's gonna be a hardcoded state info since it's a one of a kind effect
Fair...
I tried ouot a bit and managed to get it to work.
What you need to do is go to SpEffectParam and go to ID 502120 which is Soap and remove the 2 Effect VFX from it by setting it to -1 (that removes the visuals from soap, the sparkle and the wetness)
Then you have to go and open DarkScript3 and open your common.emevd.dcx and add this in Event0
//Soap
InitializeEvent(0, 321360000, 0);
and then scroll to the bottom and add this event:
$Event(321360000, Restart, function() {
SetSpEffect(10000, 502120);
WaitFixedTimeSeconds(0.3);
ClearSpEffect(10000, 502120);
EndUnconditionally(EventEndType.Restart);
});
And save and use that eventfile and it should apply the effect every .3 seconds and then remove it and restart the event so doing it over and over again
Yoooo nice
I think the wait time of .3s is not really necessary but I thought it would be safer since I saw that the main effect and first chain effect have a duration of .1 so I thought just waiting .3 is safe.
The removing is necessary as it won't trigger again until you reapply it and the soap item itself would do so
I tried just a param method but didnt get it to work that way
isn't there a toggle in-game for blood?
There is but I am okay with blood. I just don't want it on me.
Also thank you.
[Solved] Is there a way to completely stop myself from getting drenched with blood?
Also if I managed to fuck it up like I always do with stuff. This?
Now I'm confused...
Found out mine was outdated...
its asking for the oodle dll here which you can find in the game folder
the //Soap is just a comment I left to show that its a custom event, you can remove that if you dont need it
other than that yes that should work
Found it.
I'll send a clip because I can.
Thank you again. Phantom color was to make sure that didn't cause issues because the SpEffect I made for the color is a little spaghetti-like.
Ignore the "me" in the corner. I'm part of my silly UI...
You're welcome, glad it worked
Seeing this has my interest on a tweak.. the lower your health drops, phantom color begins applying until you reach less then 10% health. At which your basically a ghost anyway.
Hmm.. wonder how difficult that would be?
Oh! That would be a neat concept. I could mess around and see what I can figure out but I can't guarantee anything. I'm a little silly.
https://www.nexusmods.com/eldenring/mods/1493
Maybe expand on this, except instead of items, HP related