Looking for a programmer to program for two projects

Forum rules
Recruiting Rules: (1) Only recruit if you have an actual, clearly defined project you're recruiting for. Don't recruit if you're an organization that may have a project at some time in the future. (2) Tell people what kind of work you have for them. For commissions, also tell them how much work it will probably be. (3) Tell people how much work on your project is already complete. (4) Always open recruitment threads in the correct subforum - Free, Commercial or Paid Work.
Post Reply
Message
Author
Tamaya Kagiya
Newbie
Posts: 11
Joined: Thu Feb 09, 2017 9:45 pm
Projects: Kachuna
itch: tamaya-kagiya
Contact:

Looking for a programmer to program for two projects

#1 Post by Tamaya Kagiya »

We’re looking for someone to do coding for both of our current projects. Both of these projects are programmed in renp’y.

The first one is ‘His chuunibyou can’t be cured!’ or ‘Kachuna’ for has some coding completed but we need to finish it. This is mostly coding in voicing act into the game. Right now, it is on steam access.http://store.steampowered.com/app/69452 ... _Be_Cured/ if you want to know more about it.

Plot Summary: Jun Mizushima, a senior high school student at Higashi High, is ordinary in every way, except for the fact that he’s the only son of a wealthy businessman and that he dabbles in video game development in his spare time. Aside from those two though, there’s one more thing about him that’s far from ordinary: he has an ability to make everything he wishes a reality. Or, so he thinks.

But as life throws him hurdles and challenges in the form of a rival group and a looming deadline for the auditions to an international game competition, Jun realizes that he has to adjust to this terrifyingly new stage. Will he manage to solve all his problems using this ‘ability’ of his, or will he be forced to accept that perhaps everything he has ever believed in has been nothing but a lie?

The other game is called Peace of Evil or ‘POE’ for short. For this, we need everything coded in for this one. This including the 100k word count already written. The graphics are already prepared for this one.

Plot summary: Long after the fall of mankind, in a rich, prosperous land, there lived an emperor. His reign was cruel and cold, but ironically, there was peace. He was just in his judgment, but merciless in his actions. Nobody dared to start a fight in his lands as he cared not of whom he has to punish—those who were against his words would be killed instantly without mercy.

Despite the overall peace, the minority races struggled to survive. The traditionally fierce carnivores dominated the trading and industrial sector, taking control of the mines and ports while the agriculture sector is fully controlled by the tame yet wise herbivores in the less bustling southern lands. In between these two extremes, there were the minorities, consisting of small predators and species that do not belong to either extreme. The foxes, especially—due to being infamous with their heritage as sly and untrustworthy—had it the worst. Not many of the carnivores wanted to trade with them, and the herbivores kept their distances from the foxes, fearing for their safety.

Desiring the comfort of life like other races, the great leaders of the foxes decided to send their vixens to the Great City of Crance, as a gift to the emperor with hope that one of the girls would luck out to be chosen as the emperor’s concubines (or even, mate) and could provide better life for their race. The emperor, after all, has been famed with certain soft spots for his concubines.

Hence, this is the story of seduction between the fox girls and the cold emperor.

Please send us an email to tamayakagiya8[at]gmail.com or just send us a pm. Replace the [at] with an ‘@’ symbol before sending. Also, please leave your prices either email or pm. We can also discuss on this thread too.

User avatar
Empish
Veteran
Posts: 221
Joined: Thu Jan 14, 2016 9:52 pm
Projects: Efemural Hearts, It Ends With Graduation
itch: empish
Contact:

Re: Looking for a programmer to program for two projects

#2 Post by Empish »

Sent you a PM

User avatar
Remix
Eileen-Class Veteran
Posts: 1628
Joined: Tue May 30, 2017 6:10 am
Completed: None... yet (as I'm still looking for an artist)
Projects: An un-named anime based trainer game
Contact:

Re: Looking for a programmer to program for two projects

#3 Post by Remix »

Tamaya Kagiya wrote: Thu Jan 04, 2018 9:16 pm This is mostly coding in voicing act into the game.
Just for info, Ren'py has an in-built auto-voice system that can automatically play a file on any script line... it just means naming the voice file so that Ren'py can associate it with the dialogue.

This script snippet shows the voice file name at the top of the screen while you play through a script... if it is any use (note it also supports translation)

Code: Select all

default voice_file_string = "voices/{language}/{identifier}.ogg"
default voice_file_name_info = ""

init python:
    def get_voice_file_name(identifier):
        global voice_file_name_info
        vdict = {'identifier' : identifier,
                 # Amend the dict {lang name : folder name} to suit 
                 'language' : {None:'en', 'Spanish':'es'}[_preferences.language]
                }
        voice_file_name = voice_file_string.format(**vdict)
        if renpy.loadable(voice_file_name):
            voice_file_name_info = "Found: {0}".format(voice_file_name)
        else:
            voice_file_name_info = "Missing: {0}".format(voice_file_name)            
        return voice_file_name

    # Tell Ren'py to *try* to voice every line
    # using the above function to locate file
    config.auto_voice = get_voice_file_name

screen track_data():
    vbox:
        area (0.2, 0.0, 0.6, 85)
        if voice_file_name_info != "":
            text voice_file_name_info
        textbutton "English" action Function(renpy.change_language, None)
        textbutton "Espanol" action Function(renpy.change_language, "Spanish")

label start:
    show screen track_data
    "First Line"
    "Second Line"
    "Last Line"
    return
Maybe the programmer you get can use it if you do not :)
Frameworks & Scriptlets:

Post Reply

Who is online

Users browsing this forum: No registered users