CONTENT: How to get with Dragomira and choice errors in the game.
Hello everyone. First post, this will be a long thread, I will try to keep it as concise as possible.
(btw im doing Dragomira info session cuz of buncha questions being asked about her)
To see the scripts of the game, you go to
Game -> script -> chapters from 1 to 9 and some .rpy file.
ABOUT DRAGOMIRA (SPOILERS!!!!):
There are 3 major variables:
Dragomira_Sex07_04 <- 3 if maledom, 1 sub, 2 kinda both but ends with maledom
DragomiraSex08_09 <- Staying as Friends and Benefits (2) or Nevermind...(1) option (meaning continue as it was).
DragomiraFinal <- Her final stage of affection from 0 to 3 and higher the better. For me this variable never got affected until the very end (party scene).
Also Dragomira_Sex07_04 is on chapter 7 event 4, first number is the chapter and next is the event number.
NOW COMES THE SCRIPT (SPOILERS!!!!):
We have 3 choices that we have in the end with Dragomira: Nothing changes..., Join Harem and End it.
To even come to this point where you are
ABLE see these 3 choices (when you leave the party to get some air), you
NEED DragomiraSex08_09 >= 2, meaning DO stay as Friends and benefits (could be worded better, cuz they might be more than friends later).
Now If you choose the First option "Nothing Changes" you
WILL get the ending of being with her! (as well as others), this is cuz the variable DragomiraFinal changes to 3, AKA highest relationship.
To see the Second Option: "Do you want to join my harem?" you need to keep your harem in the wolf party, doesn't matter who you choose. This option makes DragomiraFinal = 2, kinda meaning staying as friends with Dragomira.
Third option to end it, will simply end the relationship AND if you chose 1 person as Partner then you will mention "I'm happy with <chosen person>...". Makes DragomiraFinal 1, aka people that just know each other.
SO 1st ending gives us an indicator that they CAN get together and MIGHT be together even though she says at first "I will see..." then "no one can have me". (could have been better)
CHOICE ERRORS:
MonsterEyeGames First of all, Congrats on the first game, great game, this is an experience for you to make more future games.
I will just list 2 errors I found in file "cap_09_sc_04 - Finale.rpy" (only checked this file).
If you ever do push your updates to the production could you make sure to list what/where changes were made like which scenes.
#1.
In Anne Part:
#ANNE
if HaremFinal > 0 OR HaremFinal <= 8: # SHOULD BE AND
$ AnneFinal = 3
if AnneFinal > 1:
<CODE>
else:
<- this will never get triggered cuz AnneFinal will always be 3.
If this is OR then any number is viable, thus should be AND.
#2.
In Nina/Alex part:
scene cap_09_sc_04_036 with dissolve_0
mc "(Si è anche chiarito e riappacificato con Nina, mi fa molto piacere.)"
mc "(Anche se ora Nina sta con me, insomma...)"
scene cap_09_sc_04_037 with dissolve_0
mc "(Ah, le cose tra noi vanno alla grande!)"
if Leader09_02 == 1:
mc "(Da quando sono diventato leader della Lupus Lambda, siamo inseparabili.)"
elif Leader09_02 == 1:
#This should be 2 cuz 1 is the previous one, won't get triggered.
Thanks for the game, was really nice to play, enjoyed it a lot, and I'm looking for your next game. Will leave review separately.