[ILLUSION] Koikatu! - Card Sharing/Request Thread

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

Oishii115

Member
Sep 11, 2023
163
73
Who have this card ? From artist Hana Yuuki



 

triggerz

Newbie
May 15, 2017
52
215
Last edited:

davidcr

Member
Nov 4, 2017
143
165
Is there a batch of this creator?
So many scenes but uploaded to ux so there's no batch dl
 

yee18

Newbie
Jul 11, 2023
43
57
Does anyone have any stuff from the author BLACK-さん/ランシドさん/RANCIDさん?



There are some character cards on Pixiv now, but some characters were distributed in a limited period before.
Hope that someone has them, and the scene data also.
 

Shadow866

New Member
Jan 23, 2019
3
0
Does anyone happen to have these coordinate from arctic fox ?
Kama
カーマ(Fate)

Corset

Most of the old Links seems to be dead in this thread.
 
Mar 11, 2023
40
53
Is there a batch of this creator?
So many scenes but uploaded to ux so there's no batch dl
No, but instead you can use tampermonkey and add this script:

JavaScript:
// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://ux.getuploader.com/*/
// @match        https://ux.getuploader.com/*/index/date/desc/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=getuploader.com
// @grant        none
// ==/UserScript==

(function () {
    var targetTables = [...document.querySelectorAll('table.table.table-small-font.table-hover')];

    // targetTables returns 2 tables, one of the table has a suffix of "-clone", therefore,
    // we can safely ignore it.
    var targetTable = targetTables.filter(x => x.id.indexOf('-clone') < 0)[0];

    // If it doesn't exist, don't run.
    if (!targetTable) {
        return;
    }

    var baseDownloadUrl = 'https://downloadx.getuploader.com';
    var username        = location.href.split('/')[3];

    var urls            = '';

    var tableLinks      = [...targetTable.querySelectorAll('tr td a')].filter(x => x.href.indexOf('/download/') >= 0);
    for (var i = 0; i < tableLinks.length; i++) {
        // Retrieve file id
        urls += `${baseDownloadUrl}/g/${username}/${tableLinks[i].href.split('/').slice(-1)[0]}/${tableLinks[i].innerText}\n`;
    }

    function tryPasteToClipboard() {
        if (navigator.clipboard === undefined) {
            alert('Failed to put in clipboard! Links on devtools');
            console.log("\n\n" + urls);
            return;
        }

        navigator.clipboard.writeText(urls)
            .then(() => alert('Pasted on clipboard!'))
            .catch(() => {
                alert('Failed to put in clipboard! Links on devtools');
                console.log("\n\n" + urls);
            });
    }

    // Create button for interaction
    var btn = document.createElement('a');
    btn.href = '#';
    btn.classList.add('btn', 'btn-default', 'btn-xs');
    btn.title = 'Get all download links';
    btn.innerText = 'Get all download links';
    btn.onclick = function () {
        tryPasteToClipboard();
    }

    var btnParent = document.querySelector('.pull-left.space');
    btnParent.appendChild(btn);
})();
And it should appear this button when successful:

1697541824397.png

Then you can just batch dl it using IDM or other similar apps you got there:

1697541875863.png

NOTE: This only work when file is PNG and not have passwords
 
Status
Not open for further replies.
5.00 star(s) 1 Vote