Jump to content

DanielUA

Premium Member
  • Posts

    68
  • Joined

  • Last visited

Nexus Mods Profile

About DanielUA

Profile Fields

  • Country
    Ukraine
  • Currently Playing
    Skyrim, KCD
  • Favourite Game
    Skyrim

DanielUA's Achievements

Enthusiast

Enthusiast (6/14)

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

Recent Badges

0

Reputation

  1. Armors replaced: 3 of fur armors (all versions except that with sleeves) Hide armor Studded armor Leather armor Scaled Armor Scaled Horn Armor Iron Armor Banded Iron Armor
  2. Hello everyone! Just a few days ago I saw a mod Warmth - Light Armor Replacer which is a compilation of replacers for default armors made by a great modder FranklinZunge. I liked and endorsed that mod but I wanted something different. I wanted vanilla armors to be with sleeves and fur, but without chainmail - because I feel that Hide, Studded, Iron armors must be really simple, basic and cheep, and chainmail would make them expensive and more powerful. That's why I made another compilation of FranklinZunge's armors to be used as replacers. This compilation uses his armors from different mods (mostly from Brigandage ), all of these armors feel really simple, cheap and warm. I have his permission and I will release this compilation on Nexus in a few days but I want to upload nice screenshots of these armors - and I cannot do this because I have a five-year-old laptop which is too weak to use all these ENB, UNP, HD textures etc. So if you like the idea of my mod and want help me with those screenshots - please post in this topic and I give you a link of the compilation file.
  3. Hello! I have a mod that overhauls Skyrim prices. I want to make compatibility patches for mods like Immersive Armors, Immersive Weapons, Jaysus swords etc. That would be just small esp files with changed stats that will still depend on the original mods. (similar to the Requiem compatibility patches) The question is - do i need to bother authors with permission requests to do those patches or I can simply do them as long as they still require original files?
  4. Frostfall has such feature. Use option called "Inspect equipment" or something like this
  5. mator, thank you!!! I'm really happy to finally have and use this script. Makes everything so much easier. And immediately a bugreport :) Everything worked perfect for me when I tried to copy DATA\Weight from Skyrim.esm to my esp. But when I tried to copy it from another esp (Weapon and Armor fixes Remade) I had mistake: "List index out of bounds (3)."
  6. Download, unpack to any directory and look for the "Scripts" folder.
  7. Scripts are kept as loose files or in bsa archive. They have extension .pex. These are already compiled files written in Papyrus language. If you want to edit them you need to have source files (with extension .psc). Sometimes these files are provided by author with .pex files... So you should unpack the EOS file and look at its contents
  8. Yes, exactly. You simply look at the changed records and so you see what you will need to change. :smile:
  9. 1. Look at these two mods in Tes5edit http://skyrim.nexusmods.com/mods/16231/? http://skyrim.nexusmods.com/mods/2762/? 2 and 3. You will need to change merchant's chests. You will find their names if you open Economy of Skyrim in Tes5edit 4. The most difficult part. I think it is changed via scripts. So you will have to look at Economy of Skyrim scripts (which are quite buggy...) 5. you will need to change global value "roomcost" or something like that. Just type 'room' in CK and you will find it.
  10. It was a copy-paste mistake. Solved it. Done Sorry but I don't understand how. 'f' is IwbFile so 'copyfile' must be IwbFile too. Am I wrong? Done And about troubleshooting. Looks like the only problem is with "Process" function. I don't get even "Start matching names" message. Here is my code now unit userscript; var s1, slPath: string; i: integer; f, ovrec, copyfile: IInterface; function Initialize: integer; begin // initialize your stuff here // use InputBox to accept user input for filename, then use a loop to find that file and store it in a variable. I do this in several of my scripts. // use a looping InputBox until the input is empty to add paths the user wants to copy things from to a stringlist: slPaths s1 := InputBox('File','Enter the name of the file containing the record you want to copy an element from, including the file extension','Skyrim.esm'); for i := 0 to FileCount - 1 do begin f:= FileByIndex(i); AddMessage('Checking file '+GetFileName(f)); if SameText(s1, GetFileName(f)) then begin copyfile := f; AddMessage('File is '+GetFileName(copyfile)); Break; end; end; slPath := InputBox('Path', 'Enter path you want to copy', ''); AddMessage('Path is '+slPath); //here i have not array of pathes but only one. That's what i need end; function Process(e: IInterface): integer; begin AddMessage('Start Process function'); for i := 0 to OverrideCount(e) - 1 do begin AddMessage('Start matching names'); if GetFileName(GetFile(OverrideByIndex(e, i))) = GetFileName(copyfile) then begin AddMessage('Names match'); ovrec := OverrideByIndex(e, i); AddMessage('ovrec assigned: '+GetElementEditValues(ovrec, 'EDID')); Break; end; end; wbCopyElementToRecord(e, ElementByPath(ovrec, slPath), True, True); //changeg first boolean to False because it is referred as "aAsNew"... And what i need is to replace old record (weight or price), not to add something new. //doesn't work both with True of False anyway end; end. I hope I don't bore you too much matortheeternal I'm just really limited with my time, and this script is all I need to continue development of my mod (which I'm still intending to continue). So I just have to hope that you consider helping me with it... And of course I'll understand if you don't want to bother with it.
  11. I made this for my mod Debug.Notification(PlayerFirewoodCount - PlayerFirewoodCount10x + " Firewood left") In your case it will be Debug.Notification("You have " + lumber + " wood") Cheers!
×
×
  • Create New...