Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

We had to do some big changes, and making everything compatible with old saves would've been a nightmare. Won't be happening again!

About the typos, absolutely! Some always slip through, but we'd definitely like to fix them. Thanks!

(+1)

congrats on the stable code platform!


here ya go, have fun :)

./script/story/_sandbox/characters/hana's place/sbx_hana_hanas.rpy:162

agian->again

./script/story/nemu/demonic heritage/4. the faraway abyss.rpy:62

./script/story/nemu/demonic heritage/5. the awakening.rpy:376

./script/story/_sandbox/characters/beach/sbx_miya_beach.rpy:147

appearence->appearance

./script/story/nemu/demonic heritage/4. the faraway abyss.rpy:362

appearences->appearances

./script/core/achievements/achievements_ini.rpy:4

./script/story/_sandbox/characters/tamiko's place/tamiko's place hub/sbx_chizuru_tamiko.rpy:268

./script/story/_sandbox/characters/tamiko's place/tamiko's place hub/sbx_chizuru_tamiko.rpy:293

./script/story/_sandbox/characters/tamiko's place/tamiko's place hub/sbx_chizuru_tamiko.rpy:320

begining->beginning

./script/story/ayumu/the map/5. delving inside.rpy:216

bizzare->bizarre

./script/story/nemu/demonic heritage/4. the faraway abyss.rpy:100

certian->certain

./script/core/events/events_ini.rpy:188

challange->challenge

./script/core/characters/relationships/relationships_ini.rpy:24

collegue->colleague

./script/story/ayumu/the map/3. the first step.rpy:304

contined->continued

./script/core/__start/start.rpy:246

developement->development

./script/story/nemu/demonic heritage/5. the awakening.rpy:381

devestated->devastated

./script/story/ayumu/the map/4. let him cook.rpy:2703

embarassing->embarrassing

./script/story/nemu/demonic heritage/4. the faraway abyss.rpy:504

existance->existence ; guaratee->guarantee

./script/story/ayumu/the map/4. let him cook.rpy:2260

guidence->guidance

./script/story/ayumu/the map/6. dark room.rpy:312

irresistable->irresistible ; "you whole aura"->"your whole aura"

./script/story/_sandbox/characters/tamiko's place/tamiko's place hub/sbx_chizuru_tamiko.rpy:325

literaly->literally

./script/story/ayumu/in the cards/1. heart of the cards.rpy:255

noticible->noticeable

./script/story/ayumu/the map/5. delving inside.rpy:84

persistant->persistent

./script/story/nemu/advanced classes/1. only izumi.rpy:1320

preperations->preparations

./script/story/nemu/demonic heritage/6. morning or two after.rpy:830

./script/story/_sandbox/characters/maid cafe/sbx_rina_maidcafe.rpy:189

rythm->rhythm

./script/story/_sandbox/characters/hana's place/sbx_waru_hanas.rpy:256

somtimes->sometimes

./script/story/nemu/demonic heritage/5. the awakening.rpy:555

strenghtening->strengthening

./script/story/ayumu/the order/1. jailed.rpy:265

valueable->valuable

./script/core/rpg/rpg char/rpg_char_py.rpy:254

cant->can't

./script/story/nemu/gym buddies/1. getting fat.rpy:103

lets->let's

./script/story/_sandbox/characters/underground/sex shop/sbx_emi_sexshop.rpy:67

wont->won't

PS you know https://www.renpy.org/doc/html/developer_tools.html#lint ? It's only a static analyzer and most of the output is about standards and best practices not leading to actual issues. but keeping this clean still helps to ship a bug-free product

(+1)

Thanks a lot! We'll fix all those typos and I'll let the programmer know about lint in case he doesn't already. Appreciate the help <3

(+1)

when playing as Nemu it is not possible to start class, and I believe I know what causes it: script/story/nemu/advanced classes/1. only izumi.rpy:1476

it reads

$ game.world.introduce_object(key = "start class a")

but this is Ayumi's classroom (and is unlocked on his path correctly)

I think this should be

$ game.world.introduce_object(key = "start class b")

(and you have to think about a way how to retroactively fix it, can be probably solved within the special label "after_load" and something fugly around renpy.seen_label(advanced_classes_only_izumi_end_label))

Ahh, ofc that happened... Thanks! Afterload will help with that definitely.