Search found 122 matches

by Yukari
Fri Jul 11, 2014 11:35 am
Forum: Ren'Py Questions and Announcements
Topic: Grey out the quick menu (Solved)
Replies: 2
Views: 358

Re: Grey out the quick menu

Thank you, works perfectly! ^^
by Yukari
Fri Jul 11, 2014 10:42 am
Forum: Ren'Py Questions and Announcements
Topic: Grey out the quick menu (Solved)
Replies: 2
Views: 358

Grey out the quick menu (Solved)

Is it possible to grey out the quick menu for specific scenes? The quick menu should be in grey and when clicking the buttons nothing should happens.
by Yukari
Tue Jul 01, 2014 6:00 am
Forum: Old Threads (– September 2014)
Topic: Need good Artist - Paid (Closed)
Replies: 3
Views: 801

Re: Need good Artist - Paid (Closed)

Thank you for all the offers! ^^
cosmic latte will do it.
Thread can be closed.
by Yukari
Mon Jun 30, 2014 11:59 am
Forum: Old Threads (– September 2014)
Topic: Need good Artist - Paid (Closed)
Replies: 3
Views: 801

Need good Artist - Paid (Closed)

Unfortunately my artist for Kako no Koi won't have time for drawing in the future. So I need a new artist, who can copy her style or have a similar style. It's a commercial game so I will pay for it. It would be nice to have the same prices or even cheaper. A sprite was 35$, a chibi 20$ and a CG wit...
by Yukari
Tue Apr 29, 2014 12:32 pm
Forum: Old Threads (– September 2014)
Topic: Need Writer - Paid (Closed)
Replies: 8
Views: 1277

Re: Need Writer - Paid (Closed)

Thanks for the offers! I found a writer ^^ Thread can be closed
by Yukari
Mon Apr 28, 2014 6:30 am
Forum: Old Threads (– September 2014)
Topic: Need Writer - Paid (Closed)
Replies: 8
Views: 1277

Re: Need Writer - Paid

Thank you for your infos! I really underestimated the price ^^" It don't have to be a professional writer and it have to be written in 1 year but the example of $18000 is way more than I can offer. I hoped I'd get something for about $1000. Really shoking that writing cost a lot more than good ...
by Yukari
Sun Apr 27, 2014 11:43 am
Forum: Old Threads (– September 2014)
Topic: Need Writer - Paid (Closed)
Replies: 8
Views: 1277

Need Writer - Paid (Closed)

I need a good writer for my commercial VN Kako no Koi . The genre is BxG Romance, Drama, Mystery and a bit Comedy. He/She should have knowledge about japan especially about japanese urban legends like Hanako from the toilet. I don't have a number for words, only the playtime which is about 20 h. Sin...
by Yukari
Thu Apr 03, 2014 7:42 am
Forum: Old Threads (– September 2014)
Topic: Freelance artist group for hire
Replies: 49
Views: 9225

Re: Freelance artist group for hire

What's the price for an animated OP?
by Yukari
Fri Mar 14, 2014 10:30 am
Forum: Ren'Py Questions and Announcements
Topic: Flying Imagebuttons with timer
Replies: 1
Views: 317

Flying Imagebuttons with timer

I want to add a minigame where different conversations topis as imagebuttons flying around the screen and the player have a few secs to click on a topic.
How can I add this?
by Yukari
Fri Feb 14, 2014 11:05 am
Forum: Works in Progress
Topic: [BxG BxB/Romance/Drama/Mystery] Kako no Koi (Free Demo!)
Replies: 38
Views: 16623

Re: [BxG BxB/Romance/Drama/Mystery] Kako no Koi (Update 02/1

I've uploaded a new Teaser. It contains the first Day. The real demo will be out in a few months.
English: http://yumecreations.de/Downloads/Kako% ... %20ENG.zip
German: http://yumecreations.de/Downloads/Kako% ... r%20DE.zip
by Yukari
Thu Dec 12, 2013 9:51 am
Forum: Ren'Py Questions and Announcements
Topic: Add a serial number?
Replies: 1
Views: 512

Add a serial number?

Is it possible to add a serial number to a commerical game and how can I do that?
by Yukari
Mon Nov 18, 2013 3:05 am
Forum: Ren'Py Questions and Announcements
Topic: Playtime in Save Screen
Replies: 6
Views: 1350

Re: Playtime in Save Screen

Thank you that works fine :) But there i still the issue that the playtime appear on empty slots too...
And how can I change the date format? I don't want Nov 18, I want 18 Nov
by Yukari
Sat Nov 16, 2013 4:25 pm
Forum: Ren'Py Questions and Announcements
Topic: Playtime in Save Screen
Replies: 6
Views: 1350

Re: Playtime in Save Screen

Yeah I use 6.16. An example would be very nice!
by Yukari
Sat Nov 16, 2013 1:18 pm
Forum: Ren'Py Questions and Announcements
Topic: Playtime in Save Screen
Replies: 6
Views: 1350

Re: Playtime in Save Screen

From this:

Code: Select all

$ minutes = int(renpy.get_game_runtime()) // 60
    $ hours = int(renpy.get_game_runtime()) // 3600
    if minutes, hours is not None:
        $ minutes = minutes
        $ hours = hours
by Yukari
Sat Nov 16, 2013 10:00 am
Forum: Ren'Py Questions and Announcements
Topic: Playtime in Save Screen
Replies: 6
Views: 1350

Playtime in Save Screen

I use this code for my save screen: #Speichern/Laden init -2 python: x=0 y=0 screen load_save_slot: $ file_text = "% s\n %s\nSpielzeit: [hours:02d]:[minutes:02d]" % (FileTime(number, empty="Kein Spielstand"), FileSaveName(number)) $x1=x+300 $y1=y+2 add FileScreenshot(number) xpos...