Unexpected v0.3 Public Release



We're proud to present the third update of our game, Unexpected! 

With this update, we've quadrupled the amount of content in the game! The sandbox mode is now functional, with a couple of optional events and many smaller activities within it. 

We've also laid the groundworks for our upcoming RPG mechanics, which will be fully introduced in the next update. This will include a combat system, crafting, reputations, collecting and more! 

For now, here are the contents of the third update:

  • 65000+ words
  • 3800+ renders
  • 50+ custom animations
  • New minigames
  • General UI/UX Improvements
  • Foundation of the RPG system

Enjoy!

Files

Unexpected - Win/Lin [0.5].zip 1 GB
Version 0.3 Sep 16, 2023
Unexpected - Mac [0.5].zip 1 GB
Version 4 15 hours ago
Unexpected - Android [0.5].zip 1 GB
Version 4 15 hours ago

Get Unexpected

Download NowName your own price

Comments

Log in with itch.io to leave a comment.

(+1)

i can not complete heart of cards how to do it?

A lot of games with promise end up getting abandoned. I really hope you stick with this and become a Harem Hotel or Lessons in Love level production. An easier way to access sex scenes than replaying entire episodes might be a good feature in the future.

Deleted 220 days ago

There is something wrong with the Mac version. I cannot open it

I have no idea why is that happening, everything seems fine in code :( Try doing a fully fresh download if you didn't already. I'll check if anyone else has this problem on mac.

(+1)

the requirement to start anew was .. unexpected (harr!) but it's actually quite nice to revisit the early scenes again. 

I hope you have your basic code in place now and it does not happen again? restarting games after many invested hours is not my preferrred way to spend time :)

but anyway, are you interested in a bunch of typos?

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.