Jump to content

Zorkaz

Premium Member
  • Posts

    2419
  • Joined

  • Last visited

Nexus Mods Profile

About Zorkaz

Profile Fields

  • Country
    None
  • Currently Playing
    Creation Kit

Recent Profile Visitors

386560 profile views

Zorkaz's Achievements

Grand Master

Grand Master (14/14)

  • Reacting Well Rare
  • Dedicated Rare
  • First Post
  • Collaborator Rare
  • Posting Machine Rare

Recent Badges

2

Reputation

  1. I used it years ago, but better PM Niston himself, as he is still active.
  2. I wrote a tutorial about this. Make sure to read the comment sections as well. https://www.nexusmods.com/fallout4/mods/39353
  3. Xmarker Headings are statics that can be seen. You can also use mats or other objects but since they lack collision they are the best object to use most of the time. Anyway they are used for Attack Markers, Center Markers, Spawn Markers... (did I forget another one?) WIthout a proper use of markers NPCs might spawn improperly or not at all.
  4. Thank you It's under Meshes/Setdressing/Lightfixtures/LightOilLampOnOffSwitch.nif
  5. Im working on LightOilLampOnOffSwitch.nif. (Which is animated) I need to have an Oil Lamp that needs to go on and off. But the light needs to be blue or violet. I could recolor the flames but the outer glass still is orange. Would somebody be so kind and alter LightOilLampOnOffSwitch.nif for me? You'd get full credit of course and a direct link to the authors page.
  6. It has been more than a year since I made the last script with Event OnItemAdded and I'm having a problem What I want to achieve: As soon as a key gets taken out of a box the quest should update, but it doesn't work. The script is on the key btw.
  7. Nvm there was a wrong texture path.
  8. I have a red version of the Floorlamp and gave it a red _d.dds and a red g_.dds. But no matter what I do, the floorlamps glowmap stays beige. Btw. it has no material file, everything in the floorlamp.nif is handled via the .nif itself. Any guesses?
  9. That's the odd thing. I had two magic effects on the character: Invisibility and another shader. Both were applied through an ability with a constant effect. I used the condition Player.HasPerk (FHM02DetectLifePerk) == 0 on the invisibility an Player.HasPerk (FHM02DetectLifePerk) == 1 on the shader magic effect. The ghost became visible but never got invisible again, after the FHM02DetectLifePerk got removed.
  10. I have invisible NPC. While drinking a potion the NPC gets visible and once the effect wears of the NPC should become invisible again. The NPC is at first invisible and the spell to remove the invisibility works too (I am using an ability with the DogmeatInvisibility Effect). But the NPC won't get invisible again. The magic script is like this: Scriptname FHM2DetectLifePlayerPerkMagEffScr extends activemagiceffect Perk Property FHM2PlayerDetectLifePerk Auto EffectShader Property VisibleShader Auto EffectShader Property StealthBoyInvisibilityEffect Auto Actor Property FHM2ElizaRef Auto Spell Property FHM2Invisibility Auto Event OnEffectStart(Actor akTarget, Actor akCaster) Game.Getplayer().AddPerk (FHM2PlayerDetectLifePerk) VisibleShader.Play(FHM2ElizaRef ) FHM2ElizaRef.RemoveSpell (FHM2Invisibility) EndEvent Event OnEffectFinish(Actor akTarget, Actor akCaster) Game.Getplayer().RemovePerk (FHM2PlayerDetectLifePerk) VisibleShader.Stop(FHM2ElizaRef ) FHM2ElizaRef.AddSpell (FHM2Invisibility) EndEvent Any Ideas?
  11. The precombined meshes have issues with material swap. If you apply an external material swap on an object it might revert to its original color. E.g.: You apply a red color to a prefab house, but it will appear in its default grey color once baked in.
×
×
  • Create New...