-
Posts
21 -
Joined
-
Last visited
Nexus Mods Profile
About ErikRedbeard

Profile Fields
-
Country
Netherlands
-
Favourite Game
Making off with your candy!
ErikRedbeard's Achievements
-
Now that SFSE is properly out I would love for someone to make a keybind plugin to just unequip current weapon. That would be pretty much all that's needed.
-
The only issue I have with vortex is that I can't have my mods on a different drive to my game installation. If I could do that I'd most likely be using it over MO2 now.
-
Various Nexus related things from the Skyrim SE launch aftermath
ErikRedbeard replied to Dark0ne's topic in Site Updates
In response to post #43704355. #43704855, #43705060, #43705660, #43705780, #43706130, #43706985, #43708130, #43726865, #43728095, #43728415, #43729040, #43730410, #43731650, #43735705, #43755265, #43755795, #43756055, #43756340, #43766510, #43769825, #43822140 are all replies on the same post. For SKSE look at fallout 4 and the status of it there since the engine is now pretty similar to that. I'm expecting a pretty similar SseKSE as F4SE is due to that fact. So no current SKSE can't just be converted to x64. It's either a remake from scratch or a conversion from F4SE. -
Site design update, file backgrounds and hot file cropping
ErikRedbeard replied to Dark0ne's topic in Site Updates
In response to post #7531724. #7532470, #7532529, #7532736, #7532790 are all replies on the same post. You do know that number 5 would require a new form of tracking.Unique Downloads is not the same as Manual Downloads.Unique downloads means the amount of different 'logged in profiles' or 'unique IP adresses' that have downloaded your mod.It's one of the two.Also a new player that downloads your mod via NMM also increases your Unique Downloads by one. -
Site design update, file backgrounds and hot file cropping
ErikRedbeard replied to Dark0ne's topic in Site Updates
I'm not sure the site is like it should be in Google Chrome. But anyways.. it feels allot faster somehow. Edit: Nevermind.. doing CTRL-F5 two more times fixed it. -
From what I found it contans an "ATI Mobility Radeon™ HD 4250 Graphics" which is to say a very very very low spec graphicscard and couple that with a pretty low spec cpu and mediocre memory it's a wonder you're only getting a bit of lag. However the only thing I can say is try just the base skyrim. This means no dawnguard, hearthfire or any other mod. Other than that you're probably not going to get much more performance out of it. It being a laptop or desktop is totally beside the point as is has no influence on if the game runs or not.
-
Random CTDs - more frequently from fast travel
ErikRedbeard replied to Heartcloud's topic in Skyrim's Skyrim LE
Are you by any chance using any sort of mod that adds new caves, areas or houses, or drastically change the layout of one (exluding furniture)? If so one of those is probably crashing your game. -
Mayby a real stupid thing.. but are the textures DXT1, 3 or 5 or mayby even an one of those RGB ones. Thing is.. since I converted the textures I use that don't need any alpha channel to DXT1 I haven't seen any of these problems yet. What body mod are you using as this could also be caused by the mesh itself?
-
Ah well.. I'll just play ahead like this then. I didn't really mind about the wolves as I knew about them a bit longer. It's actually quite cool to see wolves comming to your rescue. The vampires will just have to shout "Please stop attacking me" some time if I need to kill them. Mayby becomming a vamp and then curing myself will fix it because of the functions the vampire overhaul gives me.. ah well I'll found out. Not gonna restart when you've already completed half of the skyrim world. Alright.. I figured it out a minute ago. It appears my character was a member of the WolfFaction and as the WolfFaction had VampireFaction as a Friend it turned all vampires friendly towards me.. Running the command "player.addtofaction 0003E691 -1" removed me from the faction and thus the wolves and vampires are attacking me again. Too bad about the wolves though.. kinda liked having them as an ally. Ah well :D
-
Only running with Skyrim.esm active gives the same problem if not a bit worse.. As this time even the skeletons won't attack me. So I guess it's embeded into the savegame. Hence the question if there's some command to see the factions your character is in so I can remove the faulty ones.
-
Well If it's the second thing then I'd guess they all fall for them green ones. ^^ Anyways.. Problem is that I can't see what mod it did as there's the problem that once a faction is added to your char disabling a mod doesn't remove it anymore. Just for completenes I'll add a currently active addon list to the fipo.
-
I've got a bit of a wierd thing going on. Somehow my game is slowly having normally hostile NPC's and Creatures going friendly towards me. So far I've encountered Vampires (my chars not even a vampire) and any type of Wolves that don't attack me and even help me when in combat. Vampire caves appeared to be a slaughterhouse of vampires vs skeletons. As the skeletons are aggressive towards me. Clicking on them and doing getrelationshiprank player give the status of "Acquaintance" . It's getting pretty annoying where half of the mobs you encounter don't do anything at all. My question now is: Is there a way to see what factions your character is a member of? I know you can add factions with "addfac xxxxxx". But I'm wondering if something like "getfactions" exists. Running with only Skyrim.esm active doesn't motivate the little buggers to attack me and thus they stay friendly. It appears to be in my save and thus I'd like to know how to see what factions my char is a member of so I can remove the faulty ones. Loadorder in case someone notices the mod that added my player to random factions.
-
LE Script for if caster equals player problem.
ErikRedbeard replied to ErikRedbeard's topic in Skyrim's Creation Kit and Modders
Thank you very much.. I'll test it out and reply back if it works. Yes it works just fine with akCaster. -
I'm trying to get a script I've got to only run the commands when the caster and/or target is the player but can't seem to get my head around how. I've tried several ways already (they're fairly similar) but I'm asking in the hopes someone with an idea comes up and gives me the answer to fix it. Currently tried these variations (seperated with spaces): if (GetCasterActor() == togglespellplayer && togglespellglobal.getValue() == 0.0) Actor Property togglespellplayer Auto //Then coupling the property to the PlayerRef (00000014) actor referance. if (GetCasterActor() == Game.GetPlayer() && togglespellglobal.getValue() == 0.0) if (GetTargetActor() == Game.Getplayer() && togglespellglobal.getValue() == 0.0) if (GetCasterActor() == "Player" && togglespellglobal.getValue() == 0.0) This is the full script: Scriptname togglespell extends activemagiceffect Event OnEffectStart(Actor akTarget, Actor akCaster) if (GetCasterActor() == togglespellplayer && togglespellglobal.getValue() == 0.0) togglespellglobal.setValue(1.0) Game.GetPlayer().AddSpell(togglespellnegative) elseif (GetCasterActor() == togglespellplayer && togglespellglobal.getValue() == 1.0) togglespellglobal.setValue(2.0) self.dispel() Game.GetPlayer().RemoveSpell(togglespellnegative) endif if (GetCasterActor() == togglespellplayer && Game.GetPlayer().GetActorValue("magicka") <= 25) togglespellglobal.setValue(2.0) self.dispel() Game.GetPlayer().RemoveSpell(togglespellnegative) endif EndEvent Event OnEffectFinish(Actor akTarget, Actor akCaster) if (GetCasterActor() == togglespellplayer && togglespellglobal.getValue() == 2.0) togglespellglobal.setValue(0.0) Game.GetPlayer().RemoveSpell(togglespellnegative) endif if (GetCasterActor() == togglespellplayer && Game.getPlayer().hasMagicEffect(togglespelleffect)!=1) togglespellglobal.setValue(0.0) Game.GetPlayer().RemoveSpell(togglespellnegative) endif EndEvent MagicEffect Property togglespelleffect Auto GlobalVariable Property togglespellglobal Auto Spell Property togglespellnegative Auto Actor Property togglespellplayer Auto
-
LE Stand Alone Effects - not spell or perk bound
ErikRedbeard replied to Athyra's topic in Skyrim's Creation Kit and Modders
It shouldn't conflict with quests at all as you'll create your own quest which in turn it gets it's own FormID and those are unique to each esp depending on te loadorder.