Results 1 to 4 of 4
  1. #1

    Join Date
    Apr 2017
    Posts
    2
    Credits
    4

    Kamihime Project CG

    Someone can share jpeg link unlocked scene, example :

    Adele :


    Remove * on h*ttps
    h*ttps://cf.static.r.kamihimeproject.dmmgames.com/scenarios/28/8f/5ece4b1482b29894f571fe544b2e5cc3d540078003dd288f/0000-0-2_a_h.jpg
    h*ttps://cf.static.r.kamihimeproject.dmmgames.com/scenarios/28/8f/5ece4b1482b29894f571fe544b2e5cc3d540078003dd288f/0000-0-2_b_h.jpg
    h*ttps://cf.static.r.kamihimeproject.dmmgames.com/scenarios/28/8f/5ece4b1482b29894f571fe544b2e5cc3d540078003dd288f/0000-0-2_c1_h.jpg
    h*ttps://cf.static.r.kamihimeproject.dmmgames.com/scenarios/28/8f/5ece4b1482b29894f571fe544b2e5cc3d540078003dd288f/0000-0-2_c2_h.jpg
    h*ttps://cf.static.r.kamihimeproject.dmmgames.com/scenarios/28/8f/5ece4b1482b29894f571fe544b2e5cc3d540078003dd288f/0000-0-2_c3_h.jpg
    h*ttps://cf.static.r.kamihimeproject.dmmgames.com/scenarios/28/8f/5ece4b1482b29894f571fe544b2e5cc3d540078003dd288f/0000-0-2_d_h.jpg



    Example script for play Adele, rotate 5 jpeg counterclockwise before use

    <script type="text/javascript">

    var imgA = null;
    var imgB = null;
    var imgC1 = null;
    var imgC2 = null;
    var imgC3 = null;
    var imgD = null;
    var iB = [-900,-1800,-2700,-3600,-4500,-5400,-6300,-7200,-8100,-9000,-9900,-10800,-11700,-12600,-13500,0];
    var iC1 = [-900,-1800,-2700,-3600,-4500,-5400,-6300,-7200,-8100,-9000,-9900,-10800,-11700,-12600,-13500,0];
    var iC2 = [-900,-1800,-2700,-3600,-4500,-5400,-6300,-7200,-8100,-9000,-9900,-10800,-11700,-12600,-13500,0];
    var iC3 = [-900,-1800,-2700,-3600,-4500,-5400,-6300,-7200,-8100,-9000,-9900,-10800,-11700,-12600,-13500];
    for ( var i=0; i < 24; i++ ) {
    iB.push(-900,-1800,-2700,-3600,-4500,-5400,-6300,-7200,-8100,-9000,-9900,-10800,-11700,-12600,-13500,0);
    }
    for ( var i=0; i < 30; i++ ) {
    iC1.push(-900,-1800,-2700,-3600,-4500,-5400,-6300,-7200,-8100,-9000,-9900,-10800,-11700,-12600,-13500,0);
    }
    for ( var i=0; i < 18; i++ ) {
    iC2.push(-900,-1800,-2700,-3600,-4500,-5400,-6300,-7200,-8100,-9000,-9900,-10800,-11700,-12600,-13500,0);
    }

    function init(){
    imgA = document.getElementById('ImageA');
    imgA.style.position= 'relative';
    imgA.style.left = '0px';
    imgB = document.getElementById('ImageB');
    imgB.style.position= 'relative';
    imgB.style.left = '900px';
    imgB.style.top = '-640px';
    imgC1 = document.getElementById('ImageC1');
    imgC1.style.position= 'relative';
    imgC1.style.left = '900px';
    imgC1.style.top = '-1280px';
    imgC2 = document.getElementById('ImageC2');
    imgC2.style.position= 'relative';
    imgC2.style.left = '900px';
    imgC2.style.top = '-1920px';
    imgC3 = document.getElementById('ImageC3');
    imgC3.style.position= 'relative';
    imgC3.style.left = '900px';
    imgC3.style.top = '-2560px';
    imgD = document.getElementById('ImageD');
    imgD.style.position= 'relative';
    imgD.style.left = '900px';
    imgD.style.top = '-3200px';
    }

    function moveRight(){
    for ( var i=0; i < iB.length; i++ ) {
    (function(i) {
    setTimeout(function (){imgB.style.left = iB[i] + 'px';}, i * 40);
    })(i)
    }
    var iBtime = iB.length * 40;
    for ( var i=0; i < iC1.length; i++ ) {
    (function(i) {
    setTimeout(function (){imgC1.style.left = iC1[i] + 'px';}, i * 30 + iBtime);
    })(i)
    }
    var iC1time = iC1.length * 30 + iBtime;
    for ( var i=0; i < iC2.length; i++ ) {
    (function(i) {
    setTimeout(function (){imgC2.style.left = iC2[i] + 'px';}, i * 20 + iC1time);
    })(i)
    }
    var iC2time = iC2.length * 20 + iC1time;
    for ( var i=0; i < iC3.length; i++ ) {
    (function(i) {
    setTimeout(function (){imgC3.style.left = iC3[i] + 'px';}, i * 100 + iC2time);
    })(i)
    }
    var iC3time = iC3.length * 100 + iC2time;
    setTimeout(function (){imgD.style.left = '0px';}, 100 + iC3time);
    }

    window.onload =init;

    </script>

    <div style="margin: 60px auto; width: 900px; height: 640px; overflow: hidden">
    <img id="ImageA" src="0000-0-2_a_h.jpg" />
    <img id="ImageB" src="0000-0-2_b_h.jpg" />
    <img id="ImageC1" src="0000-0-2_c1_h.jpg" />
    <img id="ImageC2" src="0000-0-2_c2_h.jpg" />
    <img id="ImageC3" src="0000-0-2_c3_h.jpg" />
    <img id="ImageD" src="0000-0-2_d_h.jpg" />
    </div>

    <div style="margin: auto; width: 200px">
    <form>
    <input type="button" value="Play" onclick="moveRight();" />
    </form>
    </div>



    To find link, when play scene right click then choose view image
    Last edited by teumax4; 04-21-2017 at 12:49 PM.


  2. #2
    well, don't expect that much because not everyone know how to find it.
    also i think it better to not do it right now, just do it a while before service close or nutaku may design to end it service fast due to sharp decreasing of their income.
    Playing:
    Kamihime Project: Well, I think you would know when you see me in game. NOTE:8-10PMPST MT

  3. #3

    Join Date
    Oct 2016
    Posts
    1,851
    Credits
    1,531
    Items User Name Style ChangeUsername Change
    You can already find entire CG galleries on sites like exhentai of like over 2000+ images for Kamihime, including all the animated scenes.

  4. #4

    Join Date
    Apr 2017
    Posts
    2
    Credits
    4
    Quote Originally Posted by Aidoru View Post
    You can already find entire CG galleries on sites like exhentai of like over 2000+ images for Kamihime, including all the animated scenes.
    Unlike other site cg on nutaku are uncensored.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •