I was getting a "seperate is not defined" reference error when touching the all-star in the starting area. Not sure which version I had, it was the one modified in post 1 on november 4th
all the JS files had the function seperate( defined except mayogobu.js in \js\plugins\m\ both in the files I had and in the modified mayogobu.js from post #36
I copypasted the seperate( function from some other js file and added it mayogobu at the end before the final set of closing brackets and it stopped crashing in the sortie prep area.
Not uploading a modified file because I have no idea what I'm doing when it comes to coding But it at least worked for me.
all the JS files had the function seperate( defined except mayogobu.js in \js\plugins\m\ both in the files I had and in the modified mayogobu.js from post #36
I copypasted the seperate( function from some other js file and added it mayogobu at the end before the final set of closing brackets and it stopped crashing in the sortie prep area.
JavaScript:
function separate(num){
return String(num).replace( /(\d)(?=(\d\d\d)+(?!\d))/g, '$1,');
}