EpicSpire said:
EpicSpire's Quality ModSlot Boost/ModInfo.xml does not define a valid non-empty Name (^[0-9a-zA-Z_\-]+$), ignoring
can someone explain to me what i am doing wrong?
FWIW that error message is give you the RegEx that is telling you what is considered a valid name. You can drop ^[0-9a-zA-Z_\-]+$ into RegEx101.com for the explanation:
^ asserts position at start of a line
[SIZE=14.4px]Match a single character present in the list below[/SIZE]
[0-9a-zA-Z_\-]
+ matches the previous token between one and unlimited times, as many times as possible, giving back as needed (greedy)
0-9 matches a single character in the range between 0 (index 48) and 9 (index 57) (case sensitive)
a-z matches a single character in the range between a (index 97) and z (index 122) (case sensitive)
A-Z matches a single character in the range between A (index 65) and Z (index 90) (case sensitive)
_ matches the character _ with index 9510 (5F16 or 1378) literally (case sensitive)
\- matches the character - with index 4510 (2D16 or 558) literally (case sensitive)
$ asserts position at the end of a line
So, letters (both cases), numbers, dashes and underscores are valid characters.