[ILLUSION] Koikatu! - Card Sharing/Request Thread

5.00 star(s) 1 Vote
Status
Not open for further replies.

Aftertaste

Newbie
Dec 24, 2022
30
21
Anyone know how to fix it,its freeze this screen for 3 hr
You probably added a very large amount of cards since the last time you booted up the game. It may have froze due to limitations. Best solution is to move the recently added cards out of the current folder, reboot the game several times while adding them back in increments.
 

Hardenkung

New Member
Sep 1, 2021
1
4
okay, all these answers are fine

i just didn't want to be the ONLY one having to put in work, while everyone else prospered with advanced tech living carefree
I did write some script for it, going through all those chars are just painful to me lol

JavaScript:
doc = document.getElementById("filesContentTableContent")
rows = doc.children
function removeLowercaseEnglish(text) {
  const removedText = text.replace(/[a-z]/g, '').replace(/\s/g, '');

  return [removedText, text];
}

Array.from(rows).forEach(
    r => {
        try {
        txt = r.children[1].textContent
        console.log(removeLowercaseEnglish(txt));
        } catch {}
     }
)
 
Status
Not open for further replies.
5.00 star(s) 1 Vote