Jump to content

SkyEmerald

Members
  • Posts

    78
  • Joined

  • Last visited

Nexus Mods Profile

About SkyEmerald

Profile Fields

  • Website URL
    https://www.youtube.com/channel/UCQvQ_-UxzausDlE-0X1GhPA/about
  • Country
    United Kingdom
  • Currently Playing
    Skyrim + Fallout 4
  • Favourite Game
    Skyrim + Fallout 4

SkyEmerald's Achievements

Enthusiast

Enthusiast (6/14)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Hi there, I'm probably missing something. I created some presets using Face Ripper and ripped their faces into my esp. As the esp can only contain a certain amount of letters, I eventually had to rename my esp to something shorter, as the mod saves each npcs ID after ripping. (This process has worked fine for me before and I had no issues after renaming it). Now I'm getting the following issue: Say my first esp is called 000modfile01, I reach the maximum amount of characters and have to rename it. I rename it to 000modfile02. Suddenly, when I try to rip the remaining faces into the new esp (000modfile02) it says there is a dependency on the first esp (000modfile01). I'm very confused as I remember ripping many faces, renaming, ripping, renaming ripping etc without having an dependency issues...Also, I have checked in FO4Edit and both esps are identical apart from the additional npc presets. If anyone could fill me in on what might be happening, I'd be grateful! :) (In case it's important: The face presets were all made at the same time using data (custom hairstyles) from the first esp, but as said before the process seemed to work flawlessly at one point). Thanks!
  2. Great! Thanks a lot for this :D I'm moving into making my first quest for the mod so hopefully after a tutorial or two, I can get this quest/script working! Once again, many thanks!!! :) :)
  3. Hi there :P I wanted to make a make a safe unlock on the purchase of an item. Say the player buys a collectible model of a robot and after purchasing, a unique safe is permanently opened. I want the chest to be visible and locked before the purchase, so I can't use the initially disabled function. Any ideas guys? Thanks in advance!
  4. Didn't see this until now. Thanks a lot for the encouragement! Coding really is such a challenge, strangely satisfying though when the 'script compiled' message comes up and then it works like a charm in game xD
  5. Ah great, I'll have a look next time i'm in the CK ! Although I think it might be specific for Skyrim :o I was actually making a mod for fallout but sometimes the info regarding Skyrim is useful for both Creation kits xD Thanks though! There might be a package in Fallout where an npc carries something so.:) :)
  6. Yes that's what I was worried about actually, - the npc trying to aim the basket as though it's a weapon. Tbh I was thinking of a smaller object so there should really be a clipping issue. I just remembered a mod a use called 'Immersive Citizens' in that mod I've seen NPCs walking about holding baskets etc. So I might have a look and try to work out what the mod author did. :laugh: As for adding it to idle animations - would I create a new idle?
  7. Hi, I was wondering how I'd go about making an NPC hold an object. Say I wanted them to hold a basket in their hand and walk, whats the easier why of doing this? 1. With a script, change mesh of equip of a weapon. I saw this article but it seems very difficult - https://www.darkcreations.org/forums/topic/6586-mesh-swap-script/ 2. Change the mesh of a weapon in nifscope and have the npc sheath weapon. 3. There must be a third option I just don't know what it could be!! :P Any help would be much appreciated! Thanks :) :)
  8. Hi there, Does anyone know how I would make it possible to add an actor to the inventory, - drop it to make a full actor and then collect it again. A little like the campfire tent in Skyrim but with an actor instead. Thanks! I thought this script below might be useful, but then how to I get it back in my inventory? In some cases the aforementioned item addition can be utilized to add non-inventory items. The below will add an Alduin NPC form to the player's inventory that, when dropped, will be a full-sized Alduin actor.Game.GetPlayer().EquipItem((Game.GetForm(0x00032DB7) As ObjectReference).GetBaseObject())
  9. Thanks for that! :) It seemed to work on half the script but perhaps my idea is a little ambitious. I'm having multiple issues so think I'm going to have to put the idea on halt for now! ;P thanks again
  10. Hi there! Well it seemed the script worked fine but it needs something extra. Been trying to figure it out for hours - no luck. It works with non-hostile NPCs but with hostile npcs they only equip the hat and don't do the animation. Scriptname HatScript extends activemagiceffect{Equipt hat on enemy} Armor Property NewProperty Auto Const{Hat} Idle Property IdleProperty Auto Const{Plays Idle} Event OnEffectStart(Actor akTarget, Actor akCaster) akTarget.Equipitem(NewProperty, true) akTarget.PlayIdle(IdleProperty)endEvent Any help would be much appreciated! Thanks :) :)
  11. Wow that's fantastic ! Thanks a lot, I'll give that a shot <3 <3
  12. Haha I know right. I actually found the solution by trying to make a tatoo face texture and instead of crashing, the CK actually told me my textures sizes didn't match the rest. So I though wait a minute, perhaps it's the same with the clothes... Weird how I figured out a solution to one problem whilst trying to solve another problem! xD
  13. Could anyone let me know how I could develop this script? Many thanks in advance!! :) Script goal - Fire target npc with weapon - npc equips hat (they can't remove it but I can) - npc plays idle for 5 seconds then resume normal behavior (still wearing hat) Event OnEffectStart(actor akTarget, actor akCaster) akTarget.EquipItem(HatProperty, true) ; Start Npc idle if akTarget.PlayIdle(danceIdle) Debug.Trace("Npc is dancing!") else Debug.Trace("Something went wrong") endIf EndEvent I know very little about scripting and would appreciate some advice! <3 <3
  14. Solved: For anyone who had the same problem as me, it seems I've fixed it. The problem seemed to be that I hadn't compressed my textures on exporting. So compressed textures stopped the CK and Fallout crashing on equip and textures show up in game. Thanks all who tried to help! :smile:
  15. Heya :) Thanks for this :P It's weird, this technique works fine for one of my dress retextures, but with the other dress retexture, the CK crashes. I might try remaking the second texture again, maybe I did something wrong somehow. I'll post what happens after remaking the texture, hopefully I can figure out what happened and not make the mistake again! Thanks again :)
×
×
  • Create New...