Jump to content

azzendix

Premium Member
  • Posts

    90
  • Joined

  • Last visited

Nexus Mods Profile

About azzendix

Profile Fields

  • Country
    None

azzendix's Achievements

Enthusiast

Enthusiast (6/14)

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

Recent Badges

0

Reputation

  1. @mator Thanks for the reply. I disabled single entity like you said. Is it normal for smash to re-order record like this? For now, I just drag that record to smash.esp directly to fix conflict instead of disabling single entity.
  2. Not sure what I am doing wrong. I'm using Smash.All setting. It does not fix conflict record between Crimson Nirnroot Quest Markers and Even Better Quest Objectives. Screenshot from xEdit. Screenshot from Mator Smash. - It checked NNAM - Display text already.
  3. Thank you for making this tool and tutorial video.(especially, that combine setting moment) IÂ created "automatic" setting but some records don't look right(like you said). Here is what I change. - Uncheck BOOK > OBND - Object Bounds - Uncheck IPCT - Impact - Uncheck SNDR - Sound Descriptor Problem is I'm not familiar with many records so I can't tell if it do something wrong but it works fine(for now).
  4. This is what I do. 1. See FormID from reference websites like elderscrolls.wikia.com or uesp.net. Ex. FormID of Amren's Family Sword is 000647AC 2. Search FormID in SSEedit. See the mesh file path. 3. Open mesh file in NifSkope. You can find the texture path from BSShaderTextureSet node. ----- Problem is: Oldrim have specific mesh for Amren's Family Sword in meshes\weapons\amren folder. Unlike Oldrim, SSE remove that folder and uses Iron sword mesh instead.(meshes\weapons\iron\Longsword.nif) So, you need to change the model path of Amren's Family Sword to the new mesh that you create. It can be done easily with SSEedit. Tell me If you want some help about that.
  5. Try this xD http://i.imgur.com/1N0Zuf7.gif
  6. ModPicker:0FD87600
  7. SOLVED. I asked it from Giusteri. Problem: I want to change camera angle of a loading screen. Detail: I open mesh file(/meshes/camera/lscamerapanzoominsmall.nif) in NifSkope but I can't select/move it. In GIF file below, you can see the green line move. I assume it is the camera movement and I want to change it. Any idea about it? I tried to look around on google but I found nothing because I don't know the keyword for this topic. http://i.imgur.com/FCALv7P.gif
  8. @WolfHawk Read the comment section. It is just a joke mod for April fools day. No one should waste time to download it.
  9. You can try Weightless Overhaul. It has an option for weightless book and compatible with Book Covers Skyrim.(No one report any problem yet.)
  10. This is one of shadow mark activator script. I have 9 activators and 9 scripts for 9 type of shadowmarks. I attach this script to the shadowmarks with "create trigger" button in CK. Please read this link for more detail. Scriptname ShadowMarkCache_Script extends ObjectReference Message Property ShadowMarkCache_Msg Auto Event OnActivate(ObjectReference akActionRef) ShadowMarkCache_Msg.Show() endEvent This is the quest script to add that perk to a player. Scriptname ReadableShadowmarksAddPerk extends ReferenceAlias Perk Property ShadowMark_Perk Auto Event OnInit() Utility.Wait(0.1) Game.GetPlayer().AddPerk(ShadowMark_Perk) EndEvent -------------------------------- All discussion here is very useful to me because I plan to re-create this mod again in the future with a good scripting practice from this thread. I will publish it as a new mod, like Readable Shadowmarks Redone and tell users it's not safe to switch from old mod mid-playthrough.
  11. It would be nice if you tell what you figure out in this topic. So anyone can read it in the future.
  12. Wow... I wish I read all comments from both of you before I update my mod. That's so much better. @cdcooley I think about one script for all activator before but I decided to use 9 separate scripts because filling the property like that is not fun.(like you said) At that moment, I don't even know I can finish this mod or not. I almost give up many times. So I go with the simpler method that can get things done. @Masterofnet I got your point. The game put a player in the Thieves guild faction after stage 10 but I refer to actual dialogues from Mercer and Brynjolf. These dialogues are the reason I decided to use tg02 stage 20 as a condition. Mercer Frey: Since Brynjolf assures me you'll be nothing but a benefit to us, then you're in. Welcome to the Thieves Guild. -- Mercer says this line before the end of stage 20. Brynjolf: Welcome to the family, lad. I'm expecting you to make us a lot of coin, so don't disappoint me. -- Brynjolf says this line in the beginning of stage 30. ------------------------------------------------------------------------------ Edited: Move questions into the spoiler below. Anyway, I don't have the plan to update mod anymore since you said it is not a good idea to do it. Thank you PeterMartyr, Masterofnet, cdcooley.
  13. It is my mistake. I should make it clear. I don't have IsInFaction script to show you because I didn't actually use IsInFaction. Wiki says GetinFaction is the alternative command for console.(IsInFaction for papyrus in CK) So I just test with GetInFaction in console only - player.GetInFaction 10A794 (10A794 is FactionID) It returns 0 for my thief character(?) and returns 1 for other thieves guild NPC. About quest progression, I just finished Scoundrel's Folly quest.(5th of 12 main quests). Maybe It is not far enough like you said. -------------------------------------------------------------------------------------------------------------------------------------------- I updated my mod already but I want to know your opinion. So I can fix it If I do something wrong. I learn from 2 mods. First, I look at the script from Shadowmarks by Arthmoor. Arthmoor uses GetStageDone to check if the player is a member of the Thieves Guild AND the city has been brought under the influence of the Guild. - If ( TGTQ02.GetStageDone(200) == 1 ) So I think it should be a good idea to use GetStageDone for my mod too. I found the "welcome to the guild " stage in Loud and Clear quest. - If ( TG02.GetStageDone(20) == 1 ) Second, I look at the perk from No Furniture Activation When Sneaking by CDCooley because his mod can block activation. CDCooley attaches perk to playeralias to block furniture activation if player is sneaking. (Screenshot below) http://i.imgur.com/aUryiUB.png http://i.imgur.com/DhHtbQx.png -------------------------------------------------------------------------------------------------------------------------------------------- Finally, I combine the GetStageDone and perk idea. Here is the perk for my mod. It is working as intended. A Player can't activate shadowmarks if a player is not a member of the thieves guild. http://i.imgur.com/wwodAEdm.jpg http://i.imgur.com/bEBdwovm.jpg
  14. Thanks, PeterMartyr! "GetStageDone" is what I am looking for. Not sure about this but IsInFaction is not working with a player for me(?). I use this command with my thief character and it returns zero. So I decide to use GetStageDone only.
  15. I create Readable Shadowmarks mod and I want to add thieves guild member as a requirement to it. Which method should I use to check that player is a member of thieves guild? Choice 1: Check faction status - PlayerRef.IsInFaction(ThievesguildFaction) Is it work for player or just NPC? Choice 2: Check quest stage - (I don't know much about it.)
×
×
  • Create New...