Redownload the script again because you should not be getting the problem with 2and etc. with the TRACK no. which should fix that issue.
Then Open up Beatport by &stevehero v4.2#RELEASE Search by Relea&se.scr from the script folder as the script you want to modify in notepad++. Best install that and the custom style sheet from the starting post here to view it correctly and make it easy on the eyes. Editing these in notepad is eyeball torture.
So, to get the date as you want it DD-MM-YYYY (even though that's not the correct format) I have that as an option on line no. 106 of that script. You can view the line numbers if you used notepad++.
Remove the # from the start of that line to look like this to enable this option:
regexpreplace "(releaseDate":")(\d\d\d\d)-(\d\d)-(\d\d)" "$1$4-$3-$2" # YEAR in DD-MM-YYYY format
To remove these at the very bottom of the script you'll see
# set "DISCNUMBER" # EXTRA FIELD
# set "INITIALKEY"
# set "UNSYNCEDLYRICS" # DESCRIPTION ON BEATPORT
Change them to (Removing the # at the beginning of each line)
set "DISCNUMBER" # EXTRA FIELD
set "INITIALKEY"
set "UNSYNCEDLYRICS" # DESCRIPTION ON BEATPORT
See line no.255 for the (OM) change.
Simply, change this line:
replace " (Original Mix)" " (OM)" # Replace " (OM)" to your liking, block this with # to keep original setting
To (adding # at the start):
# replace " (Original Mix)" " (OM)" # Replace " (OM)" to your liking, block this with # to keep original setting
Not sure what you mean by this. Surely you want an album to have the correct numbering?
Rinse and repeat for all the other scripts with the same steps (Line numbers may vary).
BUT, if you're nifty you can open all the scripts in notepad++ and use the replace text on all opened documents meaning that you don't have to do each replace on every individual script. Just make sure you do the replace for one line at a time. 5-10mins should get all scripts changed this way.