Search found 34 matches

by Moonspeck
Tue Jul 03, 2018 4:01 pm
Forum: We are offering Paid Work
Topic: Looking for a Composer (fantasy comedy)
Replies: 3
Views: 1095

Looking for a Composer (fantasy comedy)

We're looking for a composer for Dear Monster, a BL fantasy dating sim. We're looking for someone able to compose lighthearted fantasy music, and occasionally other types (e.g. amusement park music) plus various sounds. If you're interested, please send us a few chosen tracks (don't send the whole p...
by Moonspeck
Wed Jun 13, 2018 5:01 pm
Forum: We are a Commercial Project looking for Partners
Topic: RenPy helper/coder (beginners are welcome!)
Replies: 4
Views: 1427

RenPy helper/coder (beginners are welcome!)

Hello everyone :) I'm looking for someone to paste the finished dialogue and description lines into Renpy, together with sprite (character) expressions. I'm looking for someone with a lot of time on their hands, or simply a person who is just starting out in Renpy and wants to practice. I can't offe...
by Moonspeck
Sun May 27, 2018 9:00 am
Forum: We are offering Paid Work
Topic: [FOUND] Looking for a Writer: BL Fantasy Dating Sim
Replies: 6
Views: 2183

Re: Looking for a Writer: BL Fantasy Dating Sim

Pickoloh wrote: Thu May 24, 2018 4:15 pm I'm not sure if you've already recruited, but I sent you a message!
Unfortunately I didn't receive your message.
by Moonspeck
Wed May 16, 2018 6:21 am
Forum: We are offering Paid Work
Topic: [FOUND] Looking for a Writer: BL Fantasy Dating Sim
Replies: 6
Views: 2183

Re: Looking for a Writer: BL Fantasy Dating Sim

Red-Baby wrote: Wed May 09, 2018 6:09 pm Hi!
I'm just wondering out of curiosity, what do you expect the total word count of the final game to be?
Cheers
Hello! Probably around 60-70k.
by Moonspeck
Thu Apr 19, 2018 10:41 am
Forum: We are offering Paid Work
Topic: [FOUND] Looking for a Writer: BL Fantasy Dating Sim
Replies: 6
Views: 2183

Re: Looking for a Writer: BL Fantasy Dating Sim

Jin wrote: Thu Apr 19, 2018 9:43 am I remember seeing this on VAC! I love fantasy settings. <3

Will there be a particular cutoff date for submissions?
I added the deadline^^
by Moonspeck
Thu Apr 19, 2018 9:03 am
Forum: We are offering Paid Work
Topic: [FOUND] Looking for a Writer: BL Fantasy Dating Sim
Replies: 6
Views: 2183

[FOUND] Looking for a Writer: BL Fantasy Dating Sim

** Thank you very much for your submissions! It was a difficult decision, but we managed to choose a writer we feel matches our writing style best. We wish you all the best in the future and we're sorry we couldn't choose more that one writer :( ** About the game Dear Monster is a BL dating sim. BL...
by Moonspeck
Wed Mar 28, 2018 4:09 pm
Forum: We are offering Paid Work
Topic: Voice actors for a fantasy dating sim (I added details! commercial)
Replies: 0
Views: 818

Voice actors for a fantasy dating sim (I added details! commercial)

http://sentimentaltrickster.com/wp-content/uploads/2018/03/Dear-Monster-BL-Game-Teaser-small.png All roles will be paid at negotiable rates. We’re a small development team seeking voice actors for a BL (and, in the future, otome) fantasy dating sim. We’re currently financing the game on Patreon, so...
by Moonspeck
Thu Mar 22, 2018 2:02 pm
Forum: We are a Commercial Project looking for Partners
Topic: Looking for a Programmer [FOUND]
Replies: 0
Views: 742

Looking for a Programmer [FOUND]

Hello everyone! We're a small independent studio seeking a programmer for our second game. Game features to code: - Skinship/touching system: you touch a character using your cursor and he reacts in a certain way (all characters will be animated in Live2D) - Main character customization - Custom GUI...
by Moonspeck
Tue Jan 23, 2018 2:12 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Custom layers don't work with vpunch
Replies: 2
Views: 854

Re: Custom layers don't work with vpunch

Alex wrote: Tue Jan 23, 2018 1:44 pm This happened 'cause your zeroblack image anchored to the bottom of the screen. Try to show it at truecenter.

Code: Select all

show zeroblack at truecenter onlayer zero
https://www.renpy.org/doc/html/quicksta ... #positions
Awesome, worked like a charm. Thank you very much!
by Moonspeck
Tue Jan 23, 2018 8:46 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Custom layers don't work with vpunch
Replies: 2
Views: 854

[SOLVED] Custom layers don't work with vpunch

When I use the "vpunch" command, I still see the checkered background underneath my image in the bottom part, even when I define my own layer and make it a black background (I made it bigger than 1920x1080). I followed instructions from: https://sleepyagents.blogspot.com/2017/09/using-laye...
by Moonspeck
Tue Jan 16, 2018 1:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange positioning problem SOLVED
Replies: 6
Views: 796

Re: Strange positioning problem

Do you by any chance know why that happens? It'll keep bugging me^^'' - In position properties, integer numbers mean absolute positions: number of pixels from the top left corner. - float numbers are relative positions respect the width or height of the screen. xpos 30 -> 30 pixels from the left. x...
by Moonspeck
Sat Jan 13, 2018 4:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange positioning problem SOLVED
Replies: 6
Views: 796

Re: Strange positioning problem

try to change this: transform top_right: xalign 1.0 yalign 0 transform top_center: xalign 0.5 yalign 0 transform top_left: xalign 0 yalign 0 to transform top_right: xalign 1.0 yalign 0.0 transform top_center: xalign 0.5 yalign 0.0 transform top_left: xalign 0.0 yalign 0.0 also is allowed: xalign .0...
by Moonspeck
Sat Jan 13, 2018 2:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange positioning problem SOLVED
Replies: 6
Views: 796

Strange positioning problem SOLVED

Hello, I often move the camera around in my CGs to make them more dynamic, but when I try to transition from my defined "bottom_center" to either "top_center", "top_right" or "top_left", it doesn't move the camera with ease, it just jumps from one part of the ...
by Moonspeck
Thu Oct 19, 2017 8:05 am
Forum: Ren'Py Questions and Announcements
Topic: How to make a character jump?
Replies: 7
Views: 1002

Re: How to make a character jump?

I would personally use code that's a tiny bit different, if you want to experiment a bit: This version uses easein and easeout to make the movement a little more smooth, and uses yoffset instead of ypos so that the transform can be used from any starting point, not just the bottom of the screen. tr...