[ILLUSION] Koikatu! - Card Sharing Request Thread 2.0 (Restart)

koikoiliver

koikoiliver

Veteran Member
Joined
Aug 19, 2025
Messages
164
Reaction score
630
Points
93
Credits
7,605
does anyone have the GF: GF mods?
1YSV6cs.png

They are +100mb files download them directly from there by just googling 'em
 
koikoiliver

koikoiliver

Veteran Member
Joined
Aug 19, 2025
Messages
164
Reaction score
630
Points
93
Credits
7,605
wait there is a software to detect dupes of cards?
i just using dupeguru but he gives false positives alot of time
if you could share its name or where to download it will be awesome :)
Glary utility works great, 0 false positives so far, 2 button remove everything, it only downside is that is bulk with a lot of other tools, dunno if you can just download the dupe finder from glary utility tho
 
KK DONALD'S

KK DONALD'S

KK Master
Joined
Jul 26, 2025
Messages
1,588
Reaction score
3,136
Points
113
Credits
33,135
I don't know about Dupeguru but Duplicate Cleaner compares the files' (MD5) hashes by default, though you can also switch to simpler rules such as only looking at the filename, size or last modified.
As far as I know hashing is the most efficient and plug-and-play way to compare files since in an ideal world there is a perfect one-to-one correlation between input and hash. Even the slightest modification would produce a radically different hash and return negative for dupe checks - though I suppose you already know that if you know Python and programming in general.

Speaking of which, I once built a simple app in Java to scan for duplicate mods with different versions, contents and generally just really poor documentation on the modder's part (for the love of God please change the version number in manifest.xml too on an update). At that point I realized comparing mods/cards/scenes has so many ifs, buts and unlesses that a tailored solution with minimal human input is probably impossible. Best I can do is isolate likely outdated mods in a specific folder then double check before deleting.
guess such softeaare cannot detet duplicate mods so far
 
D

Dabs

Active Member
Joined
Jul 7, 2025
Messages
60
Reaction score
37
Points
18
Credits
935
Anyone can reupload dl link for Orphie card from Alucid? thx

 
KK DONALD'S

KK DONALD'S

KK Master
Joined
Jul 26, 2025
Messages
1,588
Reaction score
3,136
Points
113
Credits
33,135
Anyone can reupload dl link for Orphie card from Alucid? thx

card and mod is here with his others https://mega.nz/folder/sbk03K5Q#h5siyfC0qkqCM__wLN9hOQ
 
matonashi

matonashi

Veteran Member
Joined
Sep 8, 2025
Messages
59
Reaction score
996
Points
83
Credits
10,560
guess such softeaare cannot detet duplicate mods so far
Exact duplicates are easy enough, even Windows' file explorer can catch them most of the time (due to exact same file size and last modified date).

On the other hand, if they aren't exactly the same, do you:
  1. Check the version numbers in manifest.xml? But some authors only modify the file name, and it is straight-up impossible to come up with a one-size-fits-all algorithm to extract the version number from a filename. You can probably throw an LLM at it but that's like robbing a bank with a tactical nuke.
  2. Check the size? But it is entirely possible for an updated mod to have a smaller size because of better compression or removing deprecated assets.
  3. Keep the one with more files? Same problem as checking for file size.
  4. Last modified for individual resources? This one's a bit more reliable, but how do you pick a representative date for the whole zipmod? What if the mod was hard-forked or personally tweaked to handle certain issues?
Checking these in serial can probably find an outdated mod with 90%+ accuracy, but it's always the last 10% that takes 90% of the actual work (specifically, human intervention to see which copy to keep). There is also the problem of the order to apply these checks in, as well as accounting for mod migrations and stuff, which is a whole other can of worms.
By the way, KKManger's "Tools > Cleanup duplicate zipmods" is (was?) completely unusable because it always prioritizes keeping Sideloader mods and will happily delete your copies in ~/MyMod even if they are certifiably newer. At least that was the case last time I checked the source on GitHub.
 
Baba_Booey

Baba_Booey

Veteran Member
Joined
Aug 15, 2025
Messages
277
Reaction score
816
Points
93
Credits
9,075
Exact duplicates are easy enough, even Windows' file explorer can catch them most of the time (due to exact same file size and last modified date).

On the other hand, if they aren't exactly the same, do you:
  1. Check the version numbers in manifest.xml? But some authors only modify the file name, and it is straight-up impossible to come up with a one-size-fits-all algorithm to extract the version number from a filename. You can probably throw an LLM at it but that's like robbing a bank with a tactical nuke.
  2. Check the size? But it is entirely possible for an updated mod to have a smaller size because of better compression or removing deprecated assets.
  3. Keep the one with more files? Same problem as checking for file size.
  4. Last modified for individual resources? This one's a bit more reliable, but how do you pick a representative date for the whole zipmod? What if the mod was hard-forked or personally tweaked to handle certain issues?
Checking these in serial can probably find an outdated mod with 90%+ accuracy, but it's always the last 10% that takes 90% of the actual work (specifically, human intervention to see which copy to keep). There is also the problem of the order to apply these checks in, as well as accounting for mod migrations and stuff, which is a whole other can of worms.
By the way, KKManger's "Tools > Cleanup duplicate zipmods" is (was?) completely unusable because it always prioritizes keeping Sideloader mods and will happily delete your copies in ~/MyMod even if they are certifiably newer. At least that was the case last time I checked the source on GitHub.
yea exact dupes arent the issue but you get them as exact dupes only if you extracted them from compressed file since downloading them actively changes their dates
and then you enter the area of does bigger size means newer mod/card does older mod contains items the newer mod doesnt and so on XD
 
KK DONALD'S

KK DONALD'S

KK Master
Joined
Jul 26, 2025
Messages
1,588
Reaction score
3,136
Points
113
Credits
33,135
Exact duplicates are easy enough, even Windows' file explorer can catch them most of the time (due to exact same file size and last modified date).

On the other hand, if they aren't exactly the same, do you:
  1. Check the version numbers in manifest.xml? But some authors only modify the file name, and it is straight-up impossible to come up with a one-size-fits-all algorithm to extract the version number from a filename. You can probably throw an LLM at it but that's like robbing a bank with a tactical nuke.
  2. Check the size? But it is entirely possible for an updated mod to have a smaller size because of better compression or removing deprecated assets.
  3. Keep the one with more files? Same problem as checking for file size.
  4. Last modified for individual resources? This one's a bit more reliable, but how do you pick a representative date for the whole zipmod? What if the mod was hard-forked or personally tweaked to handle certain issues?
Checking these in serial can probably find an outdated mod with 90%+ accuracy, but it's always the last 10% that takes 90% of the actual work (specifically, human intervention to see which copy to keep). There is also the problem of the order to apply these checks in, as well as accounting for mod migrations and stuff, which is a whole other can of worms.
By the way, KKManger's "Tools > Cleanup duplicate zipmods" is (was?) completely unusable because it always prioritizes keeping Sideloader mods and will happily delete your copies in ~/MyMod even if they are certifiably newer. At least that was the case last time I checked the source on GitHub.
so far, some zipmods which of newer version have lower size so yeah its a hustle too, back then i used that kkmanager mod cleanup and it removed all mods on mymods folder and only kept sideloader,
 
Baba_Booey

Baba_Booey

Veteran Member
Joined
Aug 15, 2025
Messages
277
Reaction score
816
Points
93
Credits
9,075
btw any clue if changing last edited time through powershell on cards and scenes (for order purpose) effects the card data or its completely safe
(i assume its not but i have no clue where the game data is stored in the png files)
 
R

Residents of Popopo

Member
Joined
May 27, 2025
Messages
52
Reaction score
16
Points
8
Credits
360

Does anyone have this character card and mod?
 
wmfrpa

wmfrpa

KK Master ❤
Joined
Apr 11, 2025
Messages
494
Reaction score
13,344
Points
93
Credits
142,736
Hey guys, me again with SolityL's latest card
https://www.pixiv.net/artworks/136188547
https://gofile.io/d/ZiOWqF
https://files.catbox.moe/r12p0s.7z

Please just keep it on this forum, or at least change the file's name for me to feel better. I always rename the file a little bit so I can tell if someone is doing that.
Istia
68eb6c9bb0a4b.png
46gxZ56.png

a token of my thanks to this thread

Rerir from OoOoO(Lor):​

I'll go ahead and share the rest of what I have

A few DR.GM cards KamiKatsu and (almost)half the Fan no Hitori Set
https://gofile.io/d/7CILdg
SFB Towa 1.1 update
https://gofile.io/d/2suwKO
I edited my Cetol Archive with a few "Read me"s to explain several things and even added March7 1.0 (wow) If you downloaded my Cetol Archive before you don't need to download it again.
https://gofile.io/d/jvuBe5

It's great to see all the kindness and generosity in the forum. I'd like to ask if someone could post Grafko costume 28. New jersey and Augusta Cards if possible.
https://www.pixiv.net/en/artworks/135097647
https://www.pixiv.net/en/artworks/135732367
I guess I had no choice since I wanted to meet Clemenceau.
Kirikumo is great, but honestly, it's too expensive..
I hope someone else will do it next month.

https://gofile.io/d/pDmAoy
I bought a card from Ashu.
PhGbCgT.png

Recently, wonderful people who paid the fee and were the first to share here have been following one after another like dominoes 👍💲

We should appreciate and remember these wonderful people who made it happen 💖

These heroes have inspired me to find one writer to support

So please recommend a writer to me ! 🙏

If you promote a writer to me, it’ll make it easier for me to share their work here ! 💦

Thank you to everyone who helped make this forum shine ! 🎉

Additional note: I’m not interested in Studio SD scene cards; I’m mainly interested in game characters 📝
 
Last edited:
wmfrpa

wmfrpa

KK Master ❤
Joined
Apr 11, 2025
Messages
494
Reaction score
13,344
Points
93
Credits
142,736
does anyone have shibal
👍
 
Last edited:
V

vsa

Member
Joined
Nov 10, 2024
Messages
21
Reaction score
17
Points
3
Credits
795
dose somebody have clukay's card from Sunset Rayline? thx so much
 
wmfrpa

wmfrpa

KK Master ❤
Joined
Apr 11, 2025
Messages
494
Reaction score
13,344
Points
93
Credits
142,736
dose somebody have clukay's card from Sunset Rayline? thx so much
👍
 
wmfrpa

wmfrpa

KK Master ❤
Joined
Apr 11, 2025
Messages
494
Reaction score
13,344
Points
93
Credits
142,736
does anyone have this
👍
 
Last edited:
V

vsa

Member
Joined
Nov 10, 2024
Messages
21
Reaction score
17
Points
3
Credits
795
👍
you are the real hero my friend! and pls allow me to ask that do you have another card from the same creator? forgive my greed and thx again.
 
wmfrpa

wmfrpa

KK Master ❤
Joined
Apr 11, 2025
Messages
494
Reaction score
13,344
Points
93
Credits
142,736
you are the real hero my friend! and pls allow me to ask that do you have another card from the same creator? forgive my greed and thx again.
👍
 
Last edited:
DarkZero

DarkZero

New member
Joined
Jul 27, 2025
Messages
8
Reaction score
4
Points
3
Credits
125
Who has the latest 8 scene from Pandora?
 
V

vsa

Member
Joined
Nov 10, 2024
Messages
21
Reaction score
17
Points
3
Credits
795
wmfrpa

wmfrpa

KK Master ❤
Joined
Apr 11, 2025
Messages
494
Reaction score
13,344
Points
93
Credits
142,736
OGbo95n.png


Looking for Yuuka Pajama, SolityL; all links dead. While I'm at it, I can't find any SolityL cards older than Yuuka as all links are dead.

Does anyone have this character card and mod?

Yuuka​

Seia​


👍
 
wmfrpa

wmfrpa

KK Master ❤
Joined
Apr 11, 2025
Messages
494
Reaction score
13,344
Points
93
Credits
142,736
Baba_Booey

Baba_Booey

Veteran Member
Joined
Aug 15, 2025
Messages
277
Reaction score
816
Points
93
Credits
9,075
👍
on a roll today i see XD
and btw thanks for all the sharing i have a special folder in my archive where i save all the cards you share so many of them that i need to sort :ROFLMAO:
(i am a hoarder, need to start cleaning dupes though)
 
T

Tebukuro

New member
Joined
Oct 13, 2025
Messages
11
Reaction score
5
Points
3
Credits
655
R

Residents of Popopo

Member
Joined
May 27, 2025
Messages
52
Reaction score
16
Points
8
Credits
360

Yuuka​

Seia​


👍
thank you!
 
dactohab

dactohab

Senior Member
Joined
Oct 12, 2024
Messages
77
Reaction score
197
Points
33
Credits
2,740
anyone have this outfit?
 
A

anon25

Member
Joined
Jul 13, 2025
Messages
15
Reaction score
14
Points
3
Credits
650
It's the latest one,
but surprisingly, no one seems to be interested 💬
Didn’t even know a new version came out. Thanks (y)
 

Similar threads

Top
これは閲覧専用の自動翻訳ページです。返信・検索・ログインなどの操作は、オリジナルの英語版サイトへ移動してください。 英語版で開く (Open in English) ×