Unfortunately, this mod is no longer compatible with the latest (as of this message) game update of 1.6.1130 that happened back on December 5th. On boot, the game says the .dll from this mod is disabled because it's made for game versions earlier than 1.6.629. If you choose to continue with loading the game anyways instead of exiting, nothing changes. I'm really, really hoping it gets an update someday soon.
CHATGPT: To create a JSON structure that includes numbers from 1 to 100 with a custom style and a variable starting at 15, you can use a script or program to generate this structure dynamically. However, in pure JSON you cannot create a structure where a value is automatically generated. You can do this in a programming language, such as Python, JavaScript or another, and then convert the result to JSON.
Here is an example of how you can create JSON with numbers from 1 to 100 and a variable starting from 15 using Python:
Okay so I'm going to rant here and I don't care if this comment was made a year ago, would people PLEASE stop editing their frigging messages to remove all context when they were wanting help with a problem!? Also could we all finally agree to start banning and ostracizing people who ETA "nvm fixed" with ZERO explanation as to what was done or how? Because people who come along later with a similar problem MIGHT LIKE TO KNOW WHAT YOU DID, you absolute dirty dish towel!
Hey DudeistPriest85 I actually agree with you, and as I read my comment here I'm also furious myself, why the f*#@ did I edited the comment to say "Nevermind" because I usually don't do that as I also hate it.
If I recall correctly though, I think this comment was me mistaking the feature of this mod with another mod, and I couldn't delete it. I don't know why Lolepiking said "Good to know" though. What did they read?
For those of you wanting a decent "<itemname> +<number>" setup like the screenshots, here's a template I made. Simply replace the contents of ImprovementNamesCustomizedSSE.json with the following: { "style": "Custom", "prefix": " +", "postfix": "", "customNames": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "?" ] }
Alternatively, you could also just change the Style line to "PlusN" instead of "Custom" - but that doesn't allow you to customize any of the lines yourself. As you can see, using "Custom", I decided to change the final level to ? instead of the 16 you would get with "PlusN", since it's the max. (You can also add more lines beyond the default 16th line if you want more names.)
EDIT: Not sure if it's because of Nexus, or because of my computer, but the "?" is actually supposed to be the infinity symbol. So if copy/pasting it from here doesn't work for you, just copy the symbol from that link.
I never got to enjoy using this because skyrim suddenly got updated updated this past week, but I can't wait to try it out once the mod is up to date too! <3
I'd love to get an option to rename the basic item as well, since I'm usind an equipment breaking sustem mod which basically makes all untempered armor and weapons one step from being broken.
128 comments
Comments locked
The author has locked this comment topic for the time beingOn boot, the game says the .dll from this mod is disabled because it's made for game versions earlier than 1.6.629.
If you choose to continue with loading the game anyways instead of exiting, nothing changes.
I'm really, really hoping it gets an update someday soon.
Edit: am big dumb dumb downloaded the wrong file.
To create a JSON structure that includes numbers from 1 to 100 with a custom style and a variable starting at 15, you can use a script or program to generate this structure dynamically. However, in pure JSON you cannot create a structure where a value is automatically generated. You can do this in a programming language, such as Python, JavaScript or another, and then convert the result to JSON.
Here is an example of how you can create JSON with numbers from 1 to 100 and a variable starting from 15 using Python:
ImprovementNamesCustomizedSSE.json
import json
data = {
"style": "Custom",
"prefix": " + ",
"postfix": "",
"customNames": []
}
for i in range(1, 101):
if i < 15:
data["customNames"].append(str(i))
else:
data["customNames"].append("?")
# Convert Python dictionary to JSON
json_data = json.dumps(data, indent=2)
print(json_data)
Cold someone test ?
If I recall correctly though, I think this comment was me mistaking the feature of this mod with another mod, and I couldn't delete it. I don't know why Lolepiking said "Good to know" though. What did they read?
Simply replace the contents of ImprovementNamesCustomizedSSE.json with the following:
{
"style": "Custom",
"prefix": " +",
"postfix": "",
"customNames": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"?"
]
}
Alternatively, you could also just change the Style line to "PlusN" instead of "Custom" - but that doesn't allow you to customize any of the lines yourself.
As you can see, using "Custom", I decided to change the final level to ? instead of the 16 you would get with "PlusN", since it's the max.
(You can also add more lines beyond the default 16th line if you want more names.)
Also, here's a working link for the GitHub repo that I pulled from previous comments in here, since the existing mod page links are broken:
https://github.com/clayne/ImprovementNamesCustomizedSSE
EDIT: Not sure if it's because of Nexus, or because of my computer, but the "?" is actually supposed to be the infinity symbol.
So if copy/pasting it from here doesn't work for you, just copy the symbol from that link.