-
Posts
20 -
Joined
-
Last visited
Everything posted by wazwolf
-
Thank you! I haven't tested it yet. I pulled up other spell effects to compare and contrast. I see now how to make the player and companions not get hit. But do you know what happens if I change the 'Run On: Subject' part to either 'Player' or 'Target' or 'Combat Target'? Just curious about those, if they'll allow me more customization in other spells, or will make the effects fall apart.
-
I want to make 2 explosion spells that only hit hostiles, to stick on a follower. Everything works except that I can't figure out how to make the spells not hit me when the follower is blowing stuff up. I simply pulled the scripts I needed from the CK, to add them to the new spells I made. It was all just patchwork stuff of already existing items. I suspect I need to alter Explosions somehow with a script, or alter these 2 spells to be like Explosions but without the friendly-fire aspect. Anyone able to help me keep friendly-fire intact with the game, and only remove it from my selected spells?
-
Re-textures of the head and body should be easy enough, if work intensive. Someone retextured the summonable dragon to be scaly and bird-like with feathers. Truly awesome. After retexturing, your Khargoniit will look less like a head and body joined by Dr. Frankenstein and more like a seamless creature. In Oblivion, it was easy to take the 3D head out of the game, model it, and place back into game with no issues. I made half-human half-argonian creatures which looked seamless. Kinda looked like Lord Voldermort actually lol. I have not tried to find the way to do that with Skyrim, since I haven't done anything in years. I imagine you could merge the Khajiit and Argonian heads (just to see the features in juxtaposition) and set min and max extremes for the features. This way, you get rid of the Khajit and Argonian looks and make something truly unique, in the middle. And it might avoid a headache with head armor, since their new features (except horns) shouldn't pop out of existing pieces. You'll need to fix a lot of floating hair though I bet. I find this stuff not difficult to do, just time consuming to learn and look up answers to issues. I wish the wiki was full of more detailed information.
-
It is Bethesda being lazy. ArenaNet made their races vastly different and took the time to change the armor to fit all those different models. But as long as people rush out to buy the next thing, there won't be any changes. Why bother changing something that will take more time if people only casually complain while still throwing their money at you? Just ignore them and keep on. The fact that only a handful of modders (and not a whole team, just 1-2 people doing all the work) always fix this issue in each game and redo the armors shows how Bethesda is cutting corners. Casual customers are left to patch the game that Bethesda should have fixed. We need to get unofficial patches to have a working game lol. I say just buy the game when it goes into the bargin bin type sales. If you feel the game is worth $60 fine. But if you feel it is only worth $12, wait and get it for $12. Then the bugs seems minor, since you nabbed a great game for $12 (I love steam sales). I ignored Skyrim until it fell under $20 for the whole package, learning my lesson from Oblivion. Convergent evolution (even in magic) would explain similar anatomy between man, mer, khajit, and argonian (plus the rest). But not the 5 fingers, 5 toes, and 2 breasts model. Things would be similar, not exact. It is nice to see work on the beast races, but always hard to get truly into them when they are half-assed and the mods fixing them are just a wee-bit shy of perfection.
- 3038 replies
-
- beast races
- digitigrade
-
(and 4 more)
Tagged with:
-
I know this should be simple, but I'm lost for now. I want to make a change to the "Fire Wolf" summon. This is the original script. It is the spell that explodes when the wolf charges after an enemy. But I'm trying to make two changes. One, I don't want it to harm friendlies, only hostiles. Two, I don't want it to blow up the caster when enemies are out of range (which is mostly moot if #1 works). Scriptname spellSummonDraugrBomb extends ACTOR EXPLOSION PROPERTY fireballExplosion AUTO EffectShader Property AtronachUnsummonDeathFXS Auto BOOL doOnce=TRUE EVENT onLoad() utility.wait(5) IF(doOnce && SELF.is3DLoaded()) SELF.placeAtMe(fireballExplosion) doOnce = FALSE utility.wait(0.1) disable() utility.wait(0.5) delete() ENDIF ENDEVENT EVENT onHit(ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked) IF(doOnce) SELF.placeAtMe(fireballExplosion) doOnce = FALSE utility.wait(0.1) disable() utility.wait(0.5) delete() ENDIF ENDEVENT EVENT onDying(actor myKiller) AtronachUnsummonDeathFXS.Play(self) ENDEVENT
-
Changing a custom follower's appearance
wazwolf replied to Turkeycamel3's topic in Skyrim's Skyrim LE
I had the same issues. I was messing around with the Odvar follower. Are you using the Creation Kit? Or something else like NPC Editor? (use CK) And are you trying to change her face and race with information that is in other mods? Cause if so, you have a lot of little works to do to make it work. You might need to get TES5edit then. If you need to just reference assets from another mod in order to change her (but don't need to also change those other assets), you can load the follower mod, the skyrim master, and the other mods needed for her changes in TES5edit, then add the mods she needs to use as "master" for her mod. Like for example: you need orange eyes from an eye mod, so you load it up in TES5edit along with Selene, then add master to Selene, and check the orange eye mod. This won't make the changes, it just lets the game know where to look if you do make changes. Then you load the Creation Kit, along with the orange eyes, and Selene. You set Selene as the active file, change her eyes, and save. It should work fine. But if you need to mod the orange eyes to, say, 3D orange mushrooms bursting out her skull, then you need to load only the orange eye mod in CK as active, make the changes to ridiculous 3D mushrooms, save, then load the new "orange" eyes in CK again with Selene as active. Then you change Selene, save, and it should work, with her now having the 3D mushrooms for eyes. Google/Bing for GEMS and click the second tab (I think) and look at the video explaining TES5edit. Unfortunately, I'm still new myself, and only been running into tutorials by chance, since many tend to have poor keyword searches. -
Unfortunately, it isn't consistent. Any loading screen causes the NPC to unequip again, going back to default. He seems to love walking around in dirty farm clothing with heavy black metal helmet, gloves, and boots. I can call him Don Quixote I guess. Odd fellow. I got a work around for now. I went into the Creation Kit and made a new outfit for him of the armor mod I wanted him to wear. Had to mod the Armor mod to make the outfit there, save it, then mod my follower mod to use the outfit, save that, then go into TESedit and set the armor mod as a master to the follower mod. Easy lol. But figuring that out took many a bings and googles. Now to just figure out how to script to avoid having to take multiple steps. Since I might want to change his gear again without needing to mod him every time. Plus I want to add a spell, but script away the self damage aspect of it.
-
This helped me as well. Steve40, I notice all the forums threads I have open on my browser have you in them. In fact, I'm usually keeping them there using your info as reference points. I still have a question though about "Attack Data" for the races, and their default settings. How do we know what is safe to change? I want to edit a follower mod that currently does melee attacks and only 2 magic attacks. I want him to become more of a caster, as he is quite soft. I added more spells to him, but he never used them. So I went looking around. In Attack Data, there seem to be a lot of left/right melee attacks, but nothing for his two spells that he does use. He won't use anything except his default spells and not the new ones I placed on him. But in his attack data, under "attack spell", every option is called "meleespell". Maybe the author created a custom "attack spell" somewhere in Creation Kit that I haven't found? (which allows the NPC to melee often and cast when cooldown is ready? so therefor it is all just one option--meleespell?) None of the Tutorials ever touch on the Animation and Attack Data parts. I'd like to make it so he keeps his right hand with a weapon and his left randomly using spells. If I can figure out behavior priority, I'd like to reduce the randomness... Edit: uh duh. I found http://www.creationkit.com/Race#Attack_Data_Tab Of course, the main page for Attack Data was empty and redirected me to that page =P So I think Attack Data tab only applies to melee and spell effects caused by melee? Not actual casting. If this is true, I'm looking in the wrong place, but at least can make 360 degree circle attacks and cause poison strikes lol.
-
Reading through this thread has been a tremendous help. I'm glad this exists. Did you ever figure it out Dkraz? I'm currently about to dive in myself and try to change the races starting attributes/skills/abilities. I was hoping it would just be altering values of already existing abilities, but seems I'll need to look into scripting. About to read Maverick's links. If you found anything useful, please post. =)
-
So if I remove their outfit, and give them a new piece of clothing, they walk around naked. In combat, they might equip it, then go back to being naked. Is there any script to force an NPC to stay in their new clothing/gear? I notice a voiced follower mod with a black Khajit in a jail cell is naked, so he must obviously remember to wear gear we give him. Or he is scripted to disappear and is replaced by the same looking NPC with same name but now clothed.... Please, any ideas or pointing me in a direction? Seems there are scripts that force followers to change into outfits based on the cell, like if the cell is "home". I run UFO and will happily switch to AFT or another if need be, but UFO seems to be the most compatible with mods, even though it isn't supported anymore.
-
Any other suggestions? I use UFO and the outfit always reverts when combat ends. Highly annoying to have my rich follower wearing his old begger outfit.... then suddenly back into his regal caster gear. Staying true to his roots I guess? I can use the Creation Kit, but that is highly game breaking if wanting to change outfits on a regular basis. Is there a command to delete the game outfit, force the NPC to equip the new outfit, AND have the NPC not take their clothes off upon a new load screen? I can remove it, force equip, but no way to force the new gear to be considered an outfit...
-
Ac3s, got the same error. Not the opposite part, but "triangle 115, edge 2 should be linked to triangle 116, edge 0, but it is not". I looked at the area in the Creation Kit but can't make much sense of it yet. I'm playing around modding my mods lol, but so far only changing NPCs. The terrain seems a bit more scary, since I was hoping the error in question of these "triangles" would jump out at me. My mod doing this is Eagle's Nest, a home mod. The author has it in his description he intends to fix it at some point, but it seems others are crashing and I don't want to take the risk if I'm able to "link" these areas "easily".
-
I don't think he does animations and scripts. I think it was only armors. My post is poorly written, since it is so broad. Mainly, I'd love Sif. Secondly, I request the mushroom monsters. Third, I request anything that might inspire a potential author. The rest of the post was just examples and ideas to inspire. I'm highly interested in playing around myself and trying to make a nice mod, but for the sake of time, it'd be better for anyone with know-how and interest to go running wild, however they saw fit. It'd take me a long time, since I'm barely scratching the surface and don't know anything about programming or making custom models and animations and scripting events. But couldn't hurt to ask the guy, especially if he already might have interest.
-
Noticing mods like Pikachu as a pet and such, and wondering if someone might want to take a stab at Dark Souls monsters as creatures in Skyrim. Seems there are many nods to other games, with some being direct rip-offs. Fair Use can cover the nods. I'm particularly interested in the lore-friendly aspects of how the creatures look and can fit in. And also like the fact that someone would take creative liberties to change the looks too. (for instance, Knight of Thorns armor mod for Skyrim is a nice hint toward Dark Souls, but a little too direct as the dimensions are thin. Hard to picture a Skyrim skull fitting inside such a helmet) I could picture the giant mushroom monsters from Dark Souls as archmage-type casters. The fungi equivalent to a spriggan with a humorous look. Serious but comical. Fat evil mushrooms. I can see them as monsters, an NPC, a summon, and a companion. Waddling the whole time. But the main thought I was hopping a modder could go for was the giant Wolf with the sword. His name is Sif, and he holds the sword in his mouth. It would be nice to see if a modder was interested in combining that idea with Amaterasu from Okami and making something darkly Skyrim original. Thoughts?
-
Oh thank you so much. This is perfect. I can't wait to try. This way, I can select any NPC and make a file for it.... nice! For the armor issue, thanks as well. I was indecisive. My original attempt to make a mod to change a mod caused conflicts, and at one point I spawned two of the NPC. The original was 100% intact (voice and scripts) but had my new changed hair color (but default hair) and would never change his farm shirt. The clone had the changed looks, was mute and dumb, naked, but would wear anything I gave him. lol. My brain was having trouble wrapping around why it split in half like that. Now I'm directly altering the mod. No more conflicts.
-
I'm trying to alter an existing mod with Creation Kit. I'm doing facial changes, skin color, and default clothing/inventory. Before, I tried using NPC Editor, but it didn't work (since I was making another .esp of an .esp and causing logic conflicts I assume). I'm a noob still and no clue how to resolve conflicts. But my changes I want (the facial sliders) are stored in my new .esp. (the facial changes worked, but deleted his AI and voice acting, which I never touched) Is there a way to import those changes (from NPC Editor) into Creation Kit? Creation Kit seems to want a .npc file, and I don't know what I need to do to convert. I also need some guidance about NPC clothing. In Creation Kit, the NPC 'Default Outfit' option, how is that different from the NPC 'Inventory'? I'm wanting my character to be clothed but also switch out armors. When I messed with these options in NPC Editor (not Creation Kit), it made some odd happenings. But again, that was probably caused due to my conflicts. I'm actually editing the mod this time, to avoid having redundant information, but the tutorial isn't getting into specifics. Anyone able to toss knowledge my way, feel free. Thanks!
-
Ok, here I go. I got UNFU ( http://www.nexusmods.com/skyrim/mods/21488 ) to change the face of a voiced follower mod. I was using Odvar the Afflicted as practice. ( http://www.nexusmods.com/skyrim/mods/25968 ) I followed UNFU's instructions, got rid of Odvar's default texture and mesh, and created a .esp and .bsa of the face and skin changes. I left Odvar's voice acting alone. But when I placed my new .esp and .bsa after the Odvar default .esp, .bsa, .bsl, it changed Odvar's face, left his skin as default, but his voice acting was gone. I did this all before meeting him for the first time. I then swapped the load order of the new and old .esp. Still new face, but no voice acting. I took away the default .esp and .bsa and left only mine. Now Odvar was a mute with no written dialogue either. I have a few assumptions, but no knowledge. Was Odvar's voice loaded twice, causing conflict? I really just want to change his mesh and texture. So I guessed that by using UNFU, it made duplicates of his default nature and ruined the whole thing, so with that thought, I moved forward. My goal was only to get his texture and mesh info swapped. I reset everything to default, wiping the slate clean. I made my facial changes and skin changes in UNFU again, and this time unclicked the .bsa option. I saved to a generic folder on my desktop and took out the mesh and texture, and wrote over the default. I left everything else alone. This time, Odvar was unchanged. He had is original voice thankfully, but also his original face. Ugh. At this point, I tried different combinations of deleting and leaving both original parts and my (supposedly) simply changes. I'm unable to figure it out. Any guidance? Also, during one of the episodes, I tried to switch his armor, only to have the console command tell me his ID was invalid. I used the Help Odvar 0 method, saw his name with a similar named NPC, then I used his ID # to try and ####.removeitem #### 1 and it kept saying "####.removeitem" was invalid command. So I guessed maybe it is because he is not a Skyrim original NPC. So I booted up Creation Kit (which confuses me with all the options, since I'm not sure when to leave something blank or when it is critical that it is filled). I looked around for Odvar and found his ID in there was close to what the game told me, but different. Ugh... help. Please. lol. Anyone just throw a book at my head until I get it.
-
- odvar
- ultimate npc face unlocker
-
(and 6 more)
Tagged with:
-
Bit more than 2 months and no replies. I'm looking for the same info. NMM is down last 3 days, and I want to manually install Better Magic, which has no install directions. I was able to place the usual easy stuff like .esp and merging the new String folder contents with the old. But the Fomod folder is new... no clue what to do with it. Inside are language options, and I assume I need to install the correct one and throw out the rest. NMM would have auto done this based on my answer to its prompts. But since it is down, and I feel I'm able to learn... hoping to figure out what to do with this Fomod folder and future Fomod's. Back to google! Edit: oops. The language folders were in the Strings folder. The Fomod seems to have a script for NMM to use to help us noob types (complete assumption)? From the 2 sentences about Better Magic installation, it says make sure the correct language is chosen or it'll crash. So now I have all the folders in there and wondering if only English should be.... or if all the folders should be in there and it'll pick English as default because of the load order from the game... Back to google!
-
So I notice when the world is bright and the sun straight up in the air, I have some heavy shadows. It is like pitch blackness is living in my personal nooks and crannies. The character creation screen (at the start) bothers me to no end, because the entire right side of the body is dark. I assume it is to get a full sense of lighting when making our toon, but it carries over into the game during daylight hours. I like the idea of an ENB mod, but they generally make the darkness darker. I can't increase my brightness, as the rest of the world is fine (little too lit up at times) and it would be over-saturated just to get my character looking normal. It is only when a light source is at ground or body level does it light me up correctly when standing directly facing it. Any help recommending a mod for this? Just a bump up on my personal lighting and/or reduction of shadows, without affecting the world? Happens to NPCs too, but for some reason that never bothers me. I think it is because I generally pay little attention to how they look, instead staring at myself wearing my newest armors... lol.
-
Curious myself. Kinda lost on what is actually good vs what just happens to be downloaded the most (and therefor gets noticed more and downloaded more, yet is not so good) I remember in Oblivion, after adding and removing mods, the game could get a little holey lol. I want to avoid that as much as possible. Maybe someone can point me to a mod that makes intelligent essential wolf companions with high rendering? I'm about to start guessing on the few I found and hope for luck.