so in v0.9 thats what happens at the xmas winterhouse without harempath:
card game servers list:
v0.9.0:
v0.9.2 ("tumbleweed" was added):
behold the amount of points required based on v0.9(.0/.2) to unlock the hearts in the menu; read from 2 to 6:
why calypso has 2 vars? the game uses "_interest" until the start of v0.9 where "_points" takes over
how to track the vars? use the renpy console or the glorified one from urm
2 gallery bugs still in v0.9.2:
You don't have permission to view the spoiler content.
Log in or register now.
card game servers list:
v0.9.0:
Python:
$ serverscm = ["atlantis", "hyril'ar", "ekabar", "andromeda", "warthogs", "meiyo", "ion", "valley of kings", "the red herring", "plains of denaria", "xala's moon", "plains of saturn", "mikaar", "styx", "ogygia", "agora", "sin city", "rockefeller", "new vegas", "yggdrasil", "semper invicta", "the cove", "kink paradise", "the new world", "frontier trails", "cyrodiil"]
Python:
$ serverscm = ["atlantis", "hyril'ar", "ekabar", "tumbleweed", "andromeda", "warthogs", "meiyo", "ion", "valley of kings", "the red herring", "plains of denaria", "xala's moon", "plains of saturn", "mikaar", "styx", "ogygia", "agora", "sin city", "rockefeller", "new vegas", "yggdrasil", "semper invicta", "the cove", "kink paradise", "the new world", "frontier trails", "cyrodiil"]
behold the amount of points required based on v0.9(.0/.2) to unlock the hearts in the menu; read from 2 to 6:
Python:
define girls_hearts = {
"annie" : Heart( 0, 7, 12, 19, -1),
"nancy" : Heart( 0, 5, 9, 13, -1),
"penelope" : Heart( 6, 8, 13, 18, -1),
"dalia" : Heart( 4, 7, 10, 15, -1),
"luna" : Heart( 5, 8, 16, 23, -1),
"alex" : Heart( 4, 7, 14, 17, -1),
"nova" : Heart( 4, 8, 13, 17, -1),
"calypso" : Heart( 1, 1, 13, -1, -1),
}
- annie & nancy start at 2
- no one can reach 6 hearts so far (-1 is a flag for the scr to ignore the value)
- calypso is either at 3 (<13pt) or 4 once her menu entry unlocks (somewhere in ep 9)
Python:
$ annie_points = 0
$ nancy_points = 0
$ dalia_points = 0
$ penelope_points = 0
$ luna_points = 0
$ alex_points = 0
$ nova_points = 0
$ calypso_interest = 0
$ calypso_points = 0
how to track the vars? use the renpy console or the glorified one from urm
2 gallery bugs still in v0.9.2:
- penelope lewd scene auto-opens at the beginning of the xmas diner because wrongly checks the render "qpp 1" instead of "qp 129"
- same for dalia/alexandra scene that auto-opens as soon as you leave the winterhouse because checking "qtt 1" instead of "qss 3"