Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

AlexL1204

28
Posts
3
Followers
300
Following
A member registered Jul 21, 2021

Recent community posts

The new sprites really elevate the novel now. I love Karl's sprite, it is really cute!

You' welcome. If you have any difficulties with these changes, let me know and I'll try to help.

Why did Itch have to ruin the formatting?


Exact Additions to make:

gui.rpy:

===================

Line 76

## The font used for naff's text. 
define gui.naff_text_font = gui.preference("naff_text_font", "fonts/beer_money.ttf") 
## The font used for naff's name. 
define gui.naff_name_font = gui.preference("naff_name_font", "fonts/beer_money_names.ttf")

===================

This is to add a hide button to the game.

screens.rpy in the 2 quick menu sections. the first is for desktop users, who can press h or middle mouse button already, but the option is here. the second is for mobile users.:

Line 262:  textbutton _("Hide") action HideInterface() 
Line 1437: textbutton _("Hide") action HideInterface()

===================

Exact Changes to make:

gui.rpy:

===================

Line69:   define gui.text_font = gui.preference("text_font", "fonts/dum1.ttf")
Line72:   define gui.name_text_font = gui.preference("name_text_font", "fonts/KELMSCOT.TTF")
Line75:   define gui.interface_text_font = gui.preference("interface_text_font", "fonts/KELMSCOT.TTF")
Line 176: define gui.button_text_font = gui.preference("button_text_font", "fonts/Zamolxis-V.ttf")

This allows the button font to be changed too.

I changed these to have more descriptive names, to make managing them easier.

===================

screens.rpy:

===================

Line740: style_prefix "radio"
Line742: textbutton _("Default") action [gui.SetPreference("text_font", "fonts/dum1.ttf"), gui.SetPreference("name_text_font", "fonts/KELMSCOT.TTF"), gui.SetPreference("interface_text_font", "fonts/KELMSCOT.TTF"), gui.SetPreference("button_text_font", "fonts/Zamolxis-V.ttf"),  gui.SetPreference("naff_text_font", "fonts/beer_money.ttf"), gui.SetPreference("naff_name_font", "fonts/beer_money_names.ttf")]
Line743: textbutton _("OpenDyslexic") action [ gui.SetPreference("text_font", "OpenDyslexic.otf"), gui.SetPreference("name_text_font", "OpenDyslexic.otf"), gui.SetPreference("interface_text_font", "OpenDyslexic.otf"), gui.SetPreference("button_text_font", "OpenDyslexic.otf"), gui.SetPreference("naff_text_font", "OpenDyslexic.otf"), gui.SetPreference("naff_name_font", "OpenDyslexic.otf")]

I used OpenDyslexic as an example font here, as it is what was being changed to, but it should work for other fonts too. 

I also included changes to allow for the button font to be changed too.

===================

Character_names.rpy:

===================

In all of the naff charater definitions, replace all

  what_font="fonts/beer_money.ttf", who_font="fonts/beer_money_names.ttf"

with

  what_prefix="{font=[gui.naff_text_font]}", who_prefix="{font=[gui.naff_name_font]}"
(1 edit)

Exact Additions to make:

gui.rpy:

===================

Line 76

## The font used for naff's text.
define gui.naff_text_font = gui.preference("naff_text_font", "fonts/beer_money.ttf")
## The font used for naff's name.
define gui.naff_name_font = gui.preference("naff_name_font", "fonts/beer_money_names.ttf")

===================

This is to add a hide button to the game.

screens.rpy in the 2 quick menu sections. the first is for desktop users, who can press h or middle mouse button already, but the option is here. the second is for mobile users.:

===================
Line 262:  textbutton _("Hide") action HideInterface()
Line 1437: textbutton _("Hide") action HideInterface()

===================

Exact Changes to make:

gui.rpy:

===================

Line69:     define gui.text_font = gui.preference("font_1", "fonts/dum1.ttf")
changes to  define gui.text_font = gui.preference("text_font", "fonts/dum1.ttf")
Line72:     define gui.name_text_font = gui.preference("font_2", "fonts/KELMSCOT.TTF")
changes to  define gui.name_text_font = gui.preference("name_text_font", "fonts/KELMSCOT.TTF")
Line75:     define gui.interface_text_font = gui.preference("font_3", "fonts/KELMSCOT.TTF")
changes to  define gui.interface_text_font = gui.preference("interface_text_font", "fonts/KELMSCOT.TTF")
Line 176:   define gui.button_text_font = "fonts/Zamolxis-V.ttf"
changes to  define gui.button_text_font = gui.preference("button_text_font", "fonts/Zamolxis-V.ttf")

This allows the button font to be changed too.

I changed these to have more descriptive names, to make managing them easier.

===================

screens.rpy:

===================

Line740:    style_prefix "check"
changes to  style_prefix "radio"
Line742:    textbutton _("Default") action [gui.SetPreference("font_1", "fonts/dum1.ttf"), gui.SetPreference("font_2", "fonts/KELMSCOT.TTF"), gui.SetPreference("font_3", "fonts/KELMSCOT.TTF")]
changes to  textbutton _("Default") action [gui.SetPreference("text_font", "fonts/dum1.ttf"), gui.SetPreference("name_text_font", "fonts/KELMSCOT.TTF"), gui.SetPreference("interface_text_font", "fonts/KELMSCOT.TTF"), gui.SetPreference("button_text_font", "fonts/Zamolxis-V.ttf"),  gui.SetPreference("naff_text_font", "fonts/beer_money.ttf"), gui.SetPreference("naff_name_font", "fonts/beer_money_names.ttf")]
Line743:    textbutton _("OpenDyslexic") action [ gui.SetPreference("font_1", "OpenDyslexic.otf"), gui.SetPreference("font_2", "OpenDyslexic.otf"), gui.SetPreference("font_3", "OpenDyslexic.otf")]
changes to  textbutton _("OpenDyslexic") action [ gui.SetPreference("text_font", "OpenDyslexic.otf"), gui.SetPreference("name_text_font", "OpenDyslexic.otf"), gui.SetPreference("interface_text_font", "OpenDyslexic.otf"), gui.SetPreference("button_text_font", "OpenDyslexic.otf"), gui.SetPreference("naff_text_font", "OpenDyslexic.otf"), gui.SetPreference("naff_name_font", "OpenDyslexic.otf")]

I used OpenDyslexic as an example font here, as it is what was being changed to, but it should work for other fonts too. 

I also included changes to allow for the button font to be changed too.

===================

Character_names.rpy:

===================

In all of the naff charater definitions:

            what_font="fonts/beer_money.ttf", who_font="fonts/beer_money_names.ttf"
changes to  what_prefix="{font=[gui.naff_text_font]}", who_prefix="{font=[gui.naff_name_font]}"

===================

(1 edit)

A few things, first thank you for adding a font selector, it'll makes things a lot easier to read. Second, while on the topic, could you add a 'Hide' button? Desktop users can middle mouse click or press H, but mobile users can't. To add one, add this to line 1437 in screens.rpy: 

textbutton _("Hide") action HideInterface()

I'm including some changes you can make to change naff's font, as well as some other changes:

1) Change style prefix of font selector from check to radio
2) Change names of fonts in gui preferences from font_1, font_2 to more descriptive names. Make the same changes in the actions of the font selector.
3) Add 2 fonts to gui.preferences for naff's text and naff's name.
4) Change the gui.button_text_font definition to allow for it's font to be changed too.
4) Add the actions to change these 3 new fonts to the font selector buttons in options.
5) Change naff's character definition from what_font, who_font to what_prefix and who_prefix

I'm glad to hear it! I look forward to the next update and wish you good luck! Implementing an RPG system can be a big task.

If I may, the current weapon system has some maintainability issues. Code-wise at least. This battle test has 5 weapons total: The sword, the knife, the twigs, the wooden sticks, raw bones and technically bare handed too, so kind of 6. Each of these weapons are checked individually in 25 different places throughout the script, and each additional weapon actually adds more checks. If you add a new weapon, and forget any of these places, it'll create a bug that might be rare, and hard to track down. 

I'd be willing to lend a hand in refactoring the code to be more maintainable if you'd like? The idea would be to condense the number of checks by abstracting them, so instead of checking each weapon individually, it checks a list of weapons instead. You can message me on discord at 'rachel02048' to talk further if you want.

I found a bug during testing. If you have tried equipping the sword and failed, still have the knife, and equip a stick (or bone) if it's the last one, the option to switch weapons disappears, and the game will say that you're now barehanded and have to rely on your claws. The game will still use the weapon you chose though. The bug also appears when you enter battle and select the stick. I think this is caused because on line 540 of 'battle.rpy', you check if all of the weapons are == 0. However, you don't check for the knife, and the player might have something equipped already.

So basically there are 3 bugs:

1) You don't currently check for the knife on line 540 of 'battle.rpy'. This causes the game to show a message saying that the player has no weapons, even if they have a knife. ("现在的你赤手空拳,只能依靠自己的爪子了")

2) You again don't check for the knife on line 327 of 'battle.rpy', this stops the menu option to switch weapons from showing. ("选择武器")

3) You again don't check for the knife on lines 341, 361, 387 and 544.

4) These checks don't consider the currently equipped item either.


For a suggestion, I would move the 'Skill' button to it's own category. Basically it's currently like this:
>Choose weapon

>Battle

>>Skill

>>Attack

>Items

>Run

I'd change it to:

>Choose weapon

>Skill

>Attack

>Items

>Run

Thoroughly enjoyed this hidden gem of a work in progress visual novel. I would like to thank the itch.io furry tag for bringing me here.

To the team behind it: The premise is interesting, the characters are fun and interesting, the music choices were nice, and of course the sprites and cgs were really good. Rare for a version 0.2 to have diverse emotive sprites for their characters, as well as the cgs present too.

All in all, enjoyed it, and look forward to what you'll all make next.

(1 edit)

Hey, If you still need help with making an android version, here's the main steps you'd need to follow:


1) Download RAPT from renpy's website for the renpy version you use, in the public release you used 7.4.9, so the link is: https://www.renpy.org/dl/7.4.9/renpy-7.4.9-rapt.zip

2) Download version 8 of the Adoptium JDK: https://adoptium.net/en-GB/temurin/archive/?version=8

3) Launch Renpy, and Click on 'Android' in the actions category, underneath build distributions. Then install the SDK and create keys. Keep the keys you create safe.

4) Go back to the `Android` section, and click `Configure`, and follow the prompts.

This sets up your environment to build android versions, but there are some code changes needed for the full experience. Basically any graphical changes you've made, need to have a mobile variant declared. To do this, you copy the style, and add `variant "small"` or `variant "touch"`, depending on the context, to it.


Things that need to be changed:

-The textbox needs the new sprite. You can just remove the `phone/` part in the `style window`, under mobile variants.


-Choices menu needs to be changed. They currently go way to the right. Duplicate the choice screen, add 

variant "touch"

Then you can replace the area parameter with 

ysize 0.6
align (0.5, 0.5)

This gives a more scalable, and less hard coded variant for mobile.

-You'll probably want to add a 'Hide' button for mobile users, as they can't middle mouse button. Adding this code to `screen quick_menu` will add it:
`textbutton _("Hide") action HideInterface()`

I don't know if there's any other screens that don't work on mobile, but these are the main ones.

After this, you can build the android version. You'll want to build a universal apk, not the playstore version. It'll take a while, but afterwards, you'll have an apk. You can install this on your phone to test, or with an android emulator.


Edit: Sorry for the wall of text lol. Let me know if you need any more help, or if I was unclear with something.

I agree with the other comment fully. The quality has been really, really good. Something you might consider, could be to make a dev log in between builds. This could highlight anything really, like something new you've learned about the Game Dev process - this could be renpy related, storytelling related, etc. - or touch on aspects of the world building that may not end up in the final game, etc. This gives insight into the game and it's development, while giving the audience something to interact with, and keeping your game 'alive' to the itch algo. Ultimately, you choose what you think is best for the game and your team. I look forward to what comes next! 

The new sprites look really good. They're slightly different, but overall I feel they capture the characters well. Looking forward to what comes next!

Enjoyed the new update quite a bit, and I'm interested to see where it goes from here. The world building in this seems really good so far. The English translation could use some editing, but I was able to follow the story pretty well. Overall, excited for the next update!

They released an update that exposes the language selector in the options menu today.

You're welcome! Let me know if I need to delete the message to avoid spoilers.

Also, the missing translations are mostly caused by what seems to have been lines that were changed after the translations were generated. You need to use renpy to regenerate/update the translations, then at the bottom of the translation files, it'll have a section headed with

# TODO: Translation updated at xxxx-xx-xx xx:xx

The translations that need to be fixed are below this heading. Do note that the original broken translations will still be in the translation files, and should be removed at some point.

The following lines need updated translations:

"Пройдя внутрь академии, вайб которого очень сильно напоминал какие-то стариные замки, я замечаю, что в холле есть несколько человек, которые о чём-то разговаривают."
"Барс смеётся над моей реакцией и взъерошивает мех на моей голове."
"Снова вернувшись в холл, я обращаю внимание на Роберту.{w} Уже выстраилась приличная очередь."
a "Я посмотрю как половник и суп из жабы и с растениями поможет тебе в драке с монстром."
"Я прокашливаюсь, пока мы садимся на один из диванчиков в этом холле."
"Лицо Вильмара сразу становится расстроенным."
"Сейчас время уже завалило за полдень."
"Она всё ещё с неким недоверием смотрит на Вильмара."
"Там... есть какая-та специальная формулу для расчёта её веса."
"Но я её не помню. Пока она выполянет свои функции, это всё, что мне от неё нужно."
"Мне она досталась от мамы. Она привезла её, когда ездила в одну из командировок."
"Так или иначе... Я начинаю доставать свои вещи."
"Я не совсем знаю, как мне к нему относится."
"Забравшись в кровать и накрывшись одеялом, я начинаю по-немногу проваливаться в сон, смотря одним взглядом на свет луны, падающего из окна на пол моей комнаты."

Additionally, The following translations are missing, or incomplete.

"Эти книжные полки поднимались вверх, прямо в крону дерева." - Missing Translation. Is located in assestdefine.
"И... Когда я увидел тебя, я знал, что ты будешь встревожен." - First character is not translated.
"Хээй! Я не толстый! Ты даже не представляешь, как в этой рубашке тесно." - Missing Translation.
(2 edits)

Hey, I'm writing in case you still need help with the English translation not showing up on Android. In screens.rpy, you need to un-indent the language selection radio box by 1, as it is currently in the pc or web variant section, that is used for the full screen/windowed buttons. In the pc release, this is in the screen preferences() section, around line 700.

By unindent, I mean this:

                vbox:
                    style_prefix "radio"
                    label _("Язык")
                    textbutton _("Русский") action Language(None)
                    textbutton _("Английский") action Language("english")

becomes

            vbox:
                style_prefix "radio"
                label _("Язык")
                textbutton _("Русский") action Language(None)
                textbutton _("Английский") action Language("english")

Yes. So much yes.

*Incoherent screeching* This looks SO good! He looks so much fluffier now. Also the 3/4 angle is just *chefs kiss*.

Hey if you still need help, can you message me on discord? My username is Rachel1204#7797. Using the itch.io comment section is kind of clunky, however if you'd rather stick to this that's fine, just offering an alternative.

Honestly understandable.

I've updated my comment, it's currently almost 1am, I can try help again later if it still doesn't work.

(2 edits)

Which JDK version do you have installed? JDK8u332? Additionally, did you get it from adoptium or elsewhere?

A few last things before I head to bed:

Did you download version 8 of the JDK?

Did you download the JDK and not the JRE?

Is the JDK in the PATH? If you're not sure, you can run the installer or modify from add or remove programs, and click repair to make sure.

Do you have any other java installations that might be conflicting with it?

Did you update from an older version of renpy, and if so did you update RASP with it?

I'm sorry for all the questions, they're currently all I can think of that might be causing the problem, as it isn't a problem with the project itself as I was able to build it. Renpy asking you to install the JDK likely means that it for some reason cannot find it, so that's what I based these off of. If you still can't get it to work I can try help you out again later if you want.

(4 edits)

I was able to compile an android build on my end, it works on both emulator and my own device. I am going to playtest it to ensure the game is fully functional now. You do need to change the line in screens.py for style main_menu_frame under the mobile variants to have the title screen show up on android. In the public released version this is line 1470.

Edit 1: The glossary needs to be edited to fit the scrollable items in width wise, as well as the longer entries like Daramulum.

Edit 2: The following lines might not render properly on android phones: NOTE: These are the line numbers in the public build. These go up until the route split.

174, 257, 283, 287, 297, 313, 315, 329, 333, 346, 361, 398, 406, 502, 504, 524, 589, 607, 665, 848, 1347, 1367, 1383, 1513, 1558, 1606, 1658, 1752, 1830.

I might be able to offer some assistance, but I have a few questions:
1) Does it build an apk file at all?
2) If it does, does the apk file not install or launch properly?
3) If it does not, does it display any error messages at all, or any other odd behaviour?
4) What version of renpy are you using?

You might need to rebuild the APK. I was able to get the game to launch on my phone by creating an Android build based off of the files in the PC version.

I agree with the previous comment, the characters in this game are REALLY well done. I've enjoyed what I've read so far and look forward to more.


Also hoping this comment boosts engagement, and that the itch algorithms will bless this game with the recognition it deserves.

(1 edit)

Hey don't know if you're still doing this, but this is what I've got so far, I'm not entirely sure they're correct of course, but figured might as well post them:

"Eth nohewo lliw veren niw trenursot ghift ganai." - First Dream
The one who will never win returns to fight again.

Obviously:
"Thaed semco rof lla." - First Dream
Death comes for all.

"Nekle erefob emand pyar rof latisavno." - First Dream
Kneel before me and pray for salvation

"Meco otem." - Dream in class.
Come to me.

Edit: I think I solved the first one.