Skip to content

Commit

Permalink
Mod update 1.3.2
Browse files Browse the repository at this point in the history
Some more bug fixes.
  • Loading branch information
Kitteh6660 committed Nov 17, 2015
1 parent e722685 commit cbf1126
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 26 deletions.
3 changes: 1 addition & 2 deletions classes/classes/CoC.as
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ the text from being too boring.
include "../../includes/engineCore.as";

// Lots of constants
//include "../../includes/flagDefs.as";
include "../../includes/appearanceDefs.as";

//Any classes that need to be made aware when the game is saved or loaded can add themselves to this array using saveAwareAdd.
Expand Down Expand Up @@ -429,7 +428,7 @@ the text from being too boring.
//model.debug = debug; // TODO: Set on model?

//Version NUMBER
ver = "0.9.4_mod_1.3.1";
ver = "0.9.4_mod_1.3.2";
version = ver + " (<b>Bug Fixing</b>)";

//Indicates if building for mobile?
Expand Down
6 changes: 5 additions & 1 deletion classes/classes/Items/Mutations.as
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@
player.slimeFeed();
outputText("Following the merchant's instructions, you steep and drink the tea. Its sharp taste fires up your palate and in moments, you find yourself more alert and insightful. As your mind wanders, a creative, if somewhat sordid, story comes to mind. It is a shame that you do not have writing implements as you feel you could make a coin or two off what you have conceived. The strange seller was not lying about the power of the tea.", true);
if (rand(3) == 0) outputText(player.modTone(15, 1), false);
dynStats("int", (2.5 + rand(5)));
//Now NERFED!
if (player.inte < 40) dynStats("int", 1.5 + rand(4));
else if (player.inte < 60) dynStats("int", 1 + rand(3));
else if (player.inte < 80) dynStats("int", 0.5 + rand(2));
else dynStats("int", 0.2 + rand(2));
player.refillHunger(10);
}

Expand Down
2 changes: 1 addition & 1 deletion classes/classes/Scenes/Achievements.as
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ package classes.Scenes
addAchievement("Newcomer", kACHIEVEMENTS.STORY_NEWCOMER, "Enter the realm of Mareth.");
addAchievement("Marae's Savior", kACHIEVEMENTS.STORY_MARAE_SAVIOR, "Complete Marae's quest.");
addAchievement("Revenge at Last", kACHIEVEMENTS.STORY_ZETAZ_REVENGE, "Defeat Zetaz and obtain the map.");
addAchievement("Demon Slayer", kACHIEVEMENTS.STORY_FINALBOSS, "Defeat Lethice."); //Need to wait for dungeon 3 to be finished.
addAchievement("Demon Slayer", kACHIEVEMENTS.STORY_FINALBOSS, "Defeat Lethice.");

titleAchievementSection("Zones"); //16 achievements
addAchievement("Explorer", kACHIEVEMENTS.ZONE_EXPLORER, "Discover every zone.");
Expand Down
2 changes: 1 addition & 1 deletion classes/classes/Scenes/NPCs/AmilyScene.as
Original file line number Diff line number Diff line change
Expand Up @@ -2935,7 +2935,7 @@ package classes.Scenes.NPCs
menu();
if (player.hasCock()) {
if (player.cockThatFits(61) >= 0) addButton(0, "Fuck", takeChargeAmilyFuck, null, null, null, "Penetrate Amily vaginally.");
if (player.cockThatFits(50) >= 0) addButton(1, "Buttfuck", pureAmilyPutsItInYourRectumDamnNearKilledEm, null, null, null, "Take Amily from behind."); //ButtFuckButtFUCKBUTTFUCK
if (player.cockThatFits(50) >= 0) addButton(1, "Buttfuck", fuckPureAmilysHeiny, null, null, null, "Take Amily from behind."); //ButtFuckButtFUCKBUTTFUCK
addButton(2, "Get Sucked", takeChargeAmilyGetSucked, null, null, null, "Have Amily suck you off.");
}
if (player.hasVagina()) {
Expand Down
2 changes: 1 addition & 1 deletion classes/classes/Scenes/NPCs/Urta.as
Original file line number Diff line number Diff line change
Expand Up @@ -5182,7 +5182,7 @@ private function urtaTakesPCOnWalkies():void {
outputText("\n\nYou animalistically unload your milked jism into her furry mouth, all the while spasming and twitching. Each built-up burst is met with a rewarding, cum-coated lick of your [cockHead] and a whimper of unadulterated bliss from your lips. It's as if you're dying from pleasure, your entire existence swallowed in delirious ecstasy.");
outputText("\n\nCompletely consumed by your heavenly state, your earthly body continues to splurge inside Urta's mouth with its thighs spread and trembling. It takes you a very long time to come back down, and even then both your mind and body are still engulfed in a wonderful, bliss-filled haze.");
outputText("\n\nPulling your [cockHead] from her mouth, it seems even Urta couldn't swallow everything you had to give. Your cum gushes from her wet black lips and drools down her chin and ample cleavage, covering her in your steamy mess. She's not the only one as your spunk dribbles out and warmly bastes your stomach. ");
outputText("\n\nIn the wake of your glorious orgasm, Urta grabs her delicious cans and massages them together, wet smacking noises filling the air as she smears your semen all over her grey furred breasts. The sensuous sight causes one more slimey rope to jump from your [cockNoun] and splatter her on the cheek, marking her even more with your jism. ");
outputText("\n\nIn the wake of your glorious orgasm, Urta grabs her delicious cans and massages them together, wet smacking noises filling the air as she smears your semen all over her grey furred breasts. The sensuous sight causes one more slimey rope to jump from your " + Appearance.cockNoun(player.cocks[0].cockType) + " and splatter her on the cheek, marking her even more with your jism. ");
outputText("\n\nEven after all that, you're still painfully stiff and sensitive. Urta brings her slimy, spunk covered cleavage up to your rod and presses it between them, smearing it all over your staff. She then sucks it all off like you're a wonderful cum-flavored lollipop, watching you shiver deliciously in response. ");
}
outputText("\n\n");
Expand Down
4 changes: 2 additions & 2 deletions classes/classes/Scenes/Places/Bazaar/BlackCock.as
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ package classes.Scenes.Places.Bazaar
private function smokeSomeHookah():void {
clearOutput();
if (player.gems < 5) {
outputText("You realize you are short on gems. Andy gives you a bit of disappointed look and escort you back to the tent.");
outputText("You realize you are short on gems. Andy gives you a bit of disappointed look and escorts you back to the tent.");
doNext(enterTheBlackCock);
return;
}
Expand Down Expand Up @@ -674,7 +674,7 @@ package classes.Scenes.Places.Bazaar
if (player.dogCocks() > 0) {
outputText("\n\nYou take a thumb and use it to massage his knot; at the exact same moment he does the same to you and the two of you lock eyes. The teasing sensation intensifies but you both don't look away... this is a battle of wills. The painful pleasure of the teasing rises like a flock of angry birds from your [cock] into your head. The incredible sensation of your mutual knot play is almost unbearable. Yet still you look at him, your face and his both showing each other how incredible the sensations are. Soon enough you find yourself the victor as the horny satyr flinches and uses both his hands to pull your hand from his knot. You smile big as he looks over at you and says, \"<i>Alright [name] you win.</i>\" with a look of good humored fun on his face. You grab his dick and he grabs yours again, ready to get down to business.");
}
outputText("\n\nYou pump his dick with a tight fisted grip as he massages yours. The alien hand on your member doesn't jerk your [cock] the way you do. It's an odd sensation as he gives a firm squeeze every time his hand travels up your shaft towards your [cockHead]. He gasps beside you and you know he's enjoying your hand on his staff, jerking in the familiar way you pump your own [cock]. He scoots closer until his furred leg rests against your {leg/coil}. You have to reach around his trim waist and grab his dick, pumping it and feeling pre-cum drip down your fist as it rises and falls.");
outputText("\n\nYou pump his dick with a tight fisted grip as he massages yours. The alien hand on your member doesn't jerk your [cock] the way you do. It's an odd sensation as he gives a firm squeeze every time his hand travels up your shaft towards your [cockHead]. He gasps beside you and you know he's enjoying your hand on his staff, jerking in the familiar way you pump your own [cock]. He scoots closer until his furred leg rests against your [legs]. You have to reach around his trim waist and grab his dick, pumping it and feeling pre-cum drip down your fist as it rises and falls.");
outputText("\n\nSoon the both of you are breathing ragged breaths and trembling slightly.");
outputText("\n\n\"<i>Let me… just…</i>\" Andy Mathis says as he widens his legs, tightly fisting your [cock] in his odd massaging way of jerking off. It almost feels as if he is milking your dick. You find your hand wrapped around his waist and your head pressed against his as you hump into his hand, the familiar sensation of your impending ejaculation rising until the both of you shoot white hot goo into the air, an arcing X formed by the first few spurts of baby batter as you hold onto his spasming cock and you both gasp and groan.</i>\"");
}
Expand Down
6 changes: 1 addition & 5 deletions includes/fera.as
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
//const PUMPKIN_FUCK_YEAR_DONE:int = 522;

public function isHalloween():Boolean {
if (flags[kFLAGS.ITS_EVERY_DAY] <= 0)
{
return ((date.date >= 28 && date.month == 9) || (date.date < 2 && date.month == 10));
}
else return true;
return ((date.date >= 28 && date.month == 9) || (date.date < 2 && date.month == 10) || flags[kFLAGS.ITS_EVERY_DAY] > 0);
}


Expand Down
1 change: 0 additions & 1 deletion includes/flagDefs.as

This file was deleted.

6 changes: 1 addition & 5 deletions includes/thanksgiving.as
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,7 @@ Note on progression:
//const TURKEY_FUCK_YEAR_DONE:int = 566;

public function isThanksgiving():Boolean {
if (flags[kFLAGS.ITS_EVERY_DAY] <= 0)
{
return ((date.date >= 21 && date.month == 10) && (date.date < 30 && date.month == 10));
}
else return true;
return ((date.date >= 21 && date.month == 10) && (date.date < 30 && date.month == 10) || flags[kFLAGS.ITS_EVERY_DAY] > 0);
}

//Introduction: -McGirt
Expand Down
3 changes: 1 addition & 2 deletions includes/valentines.as
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
//const VALENTINES_EVENT_YEAR:int = 736;

public function isValentine():Boolean {
if(date.date >= 13 && date.date <= 15 && date.month == 1 || flags[kFLAGS.ITS_EVERY_DAY] > 0) return true;
return false;
return ((date.date >= 13 && date.date <= 15 && date.month == 1) || flags[kFLAGS.ITS_EVERY_DAY] > 0)
}


Expand Down
6 changes: 1 addition & 5 deletions includes/xmas_bitch.as
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
public function isHolidays():Boolean {
if (flags[kFLAGS.ITS_EVERY_DAY] <= 0)
{
return (date.date >= 25 && date.month == 11);
}
else return false;
return (date.date >= 25 && date.month == 11 || flags[kFLAGS.ITS_EVERY_DAY] > 0);
}

public function xmasBitchEncounter():void
Expand Down

0 comments on commit cbf1126

Please sign in to comment.