Jump to content

IronDusk33

Supporter
  • Posts

    117
  • Joined

  • Last visited

Nexus Mods Profile

About IronDusk33

Profile Fields

  • Country
    United States
  • Currently Playing
    Creation Kit
  • Favourite Game
    Skyrim

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

IronDusk33's Achievements

Collaborator

Collaborator (7/14)

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

Recent Badges

0

Reputation

  1. I'm having difficulty making an AOE scripted spell. It's for a mod I'm currently updating, and it's supposed to simply knock back and strip everyone near the player. The problem is that the script is incredibly sporadic. Who the script affects, if anyone, is completely random. Here's the script I have so far: Scriptname _R_EffectDivineBlessing_Dibella3 extends ActiveMagicEffect Event OnEffectStart(Actor akTarget, Actor akCaster) akCaster.PushActorAway(akTarget, 10) akTarget.UnequipAll() endEvent
  2. From reading the FAQ, it seems that this is more of a freelance developer network, than a group of modders uploading their individual work: So potential creators don't just upload their work, they first submit an idea for a project, and if it is accepted, everyone pitches in.
  3. I'm going to leave this here. Read through the FAQ, it settled my suspicions and fears. https://creationclub.bethesda.net/?utm_campaign=E32017_Social&utm_medium=bitly&utm_source=YouTube
  4. http://i.imgur.com/3NuAPlX.jpg Here is a screenshot. It would make sense that it's ground Lod if it was just the terrain, but since it's also the building I didn't think it was a Lod issue.
  5. I've been trying to figure out how to make a new open world area. I've figured out how to create the world, landscape editing, etc, but I'm experiencing some graphical issues in game. Basically, it seems that I have a restricted view radius in this world, so that after a short walk away, terrain, objects, and buildings start disappearing. I want to be clear that this is NOT a Lod problem, the objects don't 'pop' in and out, but rather parts of it start blending in with the sky, so that half of the building is visible, and half isn't, with a very clear border where the building starts appearing/disappearing.
  6. I'm working on a mod that adds new generic NPCs to towns and cities. The way I go about this is I have several Markers in cities, that detect when the player has entered or exited the area. When the player leaves the area, a new person is placed using PlaceAtMe. When the player enters the area, and a sufficient amount of time has passed, the person is marked for deletion. Here's the source code: GlobalVariable Property MinLiving Auto GlobalVariable Property MaxLiving Auto GlobalVariable Property RespawnWait Auto GlobalVariable Property GameDaysPassed Auto ObjectReference Property PlaceMarker Auto LeveledActor Property ToPlace Auto string Property MarkerName Auto float LastUpdate = -100.0 Actor Person = None Event OnCellDetach() Debug.Trace("People: " + MarkerName + " Detached from Cell") if((!Person || Person.IsDead() || Person.IsDeleted()) && (GameDaysPassed.GetValue() - LastUpdate) > RespawnWait.GetValue()) Debug.Trace("People: " + MarkerName + " Placing New Person") Person = PlaceMarker.PlaceAtMe(ToPlace) as Actor LastUpdate = GameDaysPassed.GetValue() Debug.Trace("People: " + MarkerName + " New Person Placed: " + Person.GetFormID()) endIf endEvent Event OnCellAttach() Debug.Trace("People: " + MarkerName + " Attached to Cell") float RandLiving = Utility.RandomFloat(MinLiving.GetValue(), MaxLiving.GetValue()) if(Person && (GameDaysPassed.GetValue() - LastUpdate) > RandLiving) Debug.Trace("People: " + MarkerName + " Deleting Person: " + Person.GetFormID()) Person.DeleteWhenAble() Debug.Trace("People: " + MarkerName + " Person Deleted") Person = None endIf endEvent My question is, how safe is this? Would this constant deletion potentially cause save-game bloat? Or if one of the radiant npcs was used in an alias, then deleted, would that cause issues?
  7. My mod Emote does this, and allows you to play a lot of other animations. Feel free to look at the source code, or just download it and use it as is.
  8. Here's a poll to figure out which spell mods I should focus on when I get enough time to start importing them. Here are the links to all of the mods: Black Magic Blood Magic Spell Pack Bound Armory Extravaganza - the MCM version Caranthir Tower Reborn Chemistry - An Alchemy Overhaul Colorful Magic Daedric Entity Restoration Project Dawnguard Arsenal Druid Essentials Earth Prison Elemental Destruction Magic Epic Restoration Forgotten Magic Redone Lore Friendly Spells Lost Magic Midas Magic Evolved Midas Magic Spells for Skyrim FIXED Mighty Magick Skyrim Mysticism - The Lost Art Phenderix Magic World DLC Phenderix Magic Evolved (ver 8.0) Shadow Spell Package Spells of the Third Era Summon Ice Wall SU'MMER T3nd0's Perkus Maximus Tentapalooza for Campfire Useful Alteration Witchhunter Spells and Prayers Pack
  9. You should probably use RegisterForUpdateGameTime and OnUpdateGameTime. Just read up on them on the wiki.
  10. I'm trying my hand at making a player home, and part of it involves the Dwemer Box found in Septimus Signus's outpost. I managed to get it to play the opening animation via PlayAnimation("trigger01"), however I can't get it close. It doesn't seem to have a closing animation, so I've tried using Reset(), and Disable()/Enable(), but neither of those work. So, does anyone know of how I can reset it's animation state, and effectively close it?
  11. The best way to do this would probably be to use a vanilla ground object, say from an armor or a similar food item, and then copy over the necessary data. There is a thread on another site that has some detailed instructions on how to do this, the name of the thread is "Question: How do i add custom models to Skyrim?".
  12. Right, well this is why I asked before releasing that mod.
  13. So, I've made a private mod that I haven't released yet that utilizes some edited assets from Wearable Bards Lute and Retex, by Dragonis0. However, Dragonis0 has been banned since 2012, so I can't contact him to get his permission to use assets. So I'm wondering how, or if, I can properly get permission to use his assets. Now that he's banned are his assets public domain? Or can no one use them at all unless someone manages to contact him? Or do I need to change my mod so that it requires his mod to be downloaded and installed?
×
×
  • Create New...