<<nobr>>
<<set $roundsSinceMCSpun to 0>>
/* Apply god mode if enabled and supporter unlocked */
<<if $godModeEnabled and $supporterUnlocked>>
<<for $i to 0; $i lt $characters.length; $i++>>
<<set $characters[$i].isPlayerControlled to true>>
<</for>>
<</if>>
<div class="game-container">
<div style="margin-bottom: 2em; line-height: 1.6;">
<p style="color: #b8d4e6; line-height: 1.6; margin-bottom: 1.5em; font-style: italic;">You're about to play a game of Spin the Bottle with your new blended family.</p>
<div style="background: linear-gradient(135deg, rgba(30, 60, 114, 0.3), rgba(25, 89, 115, 0.3)); border: 1px solid rgba(59, 130, 164, 0.6); border-radius: 8px; padding: 1.5em; margin: 1.5em 0;">
<h3 style="color: #9bb9d4; margin: 0 0 1em 0; text-shadow: 0 0 6px rgba(59, 130, 164, 0.4);">How to Play:</h3>
<ul style="color: #c1d5e6; margin: 0; padding-left: 1.5em;">
<li style="margin-bottom: 0.8em;"><strong style="color: #9bb9d4;">Spinning:</strong> Players take turns spinning the bottle. When you spin the bottle, you choose the action; otherwise, the NPC makes a random choice.</li>
<li style="margin-bottom: 0.8em;"><strong style="color: #9bb9d4;">Actions:</strong> Available actions are based on Heat level and gender - same-gender actions differ from opposite-gender ones.</li>
<li style="margin-bottom: 0.8em;"><strong style="color: #9bb9d4;">Heat Levels:</strong> Each action adds heat to the participating characters that counts toward the Global Heat level. The last level is level 10, which unlocks endings.</li>
</ul>
</div>
</div>
<div style="text-align: center; margin: 2em 0;">
[[Begin the game|GameLoop]]
</div>
</div>
<</nobr>><<nobr>>
<div class="game-container-compact">
<div class="game-header">Round $round - Global Heat Level $globalHeatLevel</div>
<div class="players-circle-compact">
<<for $i to 0; $i lt $characters.length; $i++>>
<<if $characters[$i].active>>
<span class="player-compact <<if $i eq $currentSpinner>>current-spinner<</if>> <<if $i eq $currentTarget>>current-target<</if>>" @style="'border-color: ' + $characters[$i].color + ';'">
<span @style="'color: ' + $characters[$i].color + '; font-weight: bold;'">$characters[$i].name</span>
<br><span class="player-relation" @style="'color: ' + $characters[$i].color + '; font-size: 0.8em; font-style: italic;'">$characters[$i].relation</span>
<<if $groupWaiting.includes($i)>>🔥<</if>><<if $characters[$i].hasAnalFlag>>🍑<</if>>
</span>
<</if>>
<</for>>
</div>
<<if $gamePhase eq "spinning">>
<div class="bottle-section">
<div class="bottle">🍾</div> <strong>$characters[$currentSpinner].name's turn!</strong>
[[Spin the Bottle|SpinResult]]
</div>
<<elseif $gamePhase eq "action">>
<<if $characters[$currentSpinner].isPlayerControlled>>
<<include "PlayerChoice">>
<<else>>
<<include "AIChoice">>
<</if>>
<</if>>
</div>
<</nobr>><<nobr>>
<!-- Safety net: Make bottle land on MC if they haven't been targeted for too long -->
<<if $roundsSinceMCSpun gte $maxRoundsWithoutMC>>
<<set $currentTarget to 0>>
<<set $mcWasForced to true>>
<<set $roundsSinceMCSpun to 0>>
<<else>>
<<set $mcWasForced to false>>
<<set $currentTarget to random(0, $characters.length - 1)>>
<<set $validTarget to false>>
<<for $attempts to 0; $attempts lt 20 and not $validTarget; $attempts++>>
<<if $currentTarget neq $currentSpinner and $characters[$currentTarget].active>>
<<set $validTarget to true>>
<<else>>
<<set $currentTarget to random(0, $characters.length - 1)>>
<</if>>
<</for>>
<!-- Update counter -->
<<if $currentTarget eq 0>>
<<set $roundsSinceMCSpun to 0>>
<<else>>
<<set $roundsSinceMCSpun++>>
<</if>>
<</if>>
<<set $gamePhase to "action">>
<</nobr>>
<div class="spin-result-compact"><div class="target-announcement"><span class="spinner-name">$characters[$currentSpinner].name</span> 🍾 → <span class="target-name">$characters[$currentTarget].name</span></div>
<<if $characters[$currentSpinner].isPlayerControlled>>
<<include "PlayerChoice">>
<<else>>
[[Continue|GameLoop]]
<</if>></div><<nobr>>
<<set $availableActions to []>>
<<if $characters[$currentSpinner].gender eq $characters[$currentTarget].gender>>
<<set $actionList to $sameSexInteractions>>
<<else>>
<<set $actionList to $oppositeSexInteractions>>
<</if>>
<<for $i to 0; $i lt $actionList.length; $i++>>
<<if $actionList[$i].level lte $globalHeatLevel>>
<!-- Filter male-only actions -->
<<if $actionList[$i].malesOnly and ($characters[$currentSpinner].gender neq "male" or $characters[$currentTarget].gender neq "male")>>
<!-- Skip male-only action if not both males -->
<<elseif $actionList[$i].name eq "Group fun" and $groupWaiting.includes($currentTarget)>>
<!-- Skip Group fun if target is already in the waiting group -->
<<else>>
<<set $availableActions.push($actionList[$i])>>
<</if>>
<</if>>
<</for>>
<</nobr>><div class="player-choice-compact">
<strong>Choose action:</strong>
<<for $i to 0; $i lt $availableActions.length; $i++>><<capture $i>><div class="action-choice-compact"><<link $availableActions[$i].name>><<set $selectedAction to $availableActions[$i]>><<goto "ActionResult">><</link>> - <em>$availableActions[$i].desc</em></div><</capture>><</for>></div><<nobr>>
<<set $availableActions to []>>
<<if $characters[$currentSpinner].gender eq $characters[$currentTarget].gender>>
<<set $actionList to $sameSexInteractions>>
<<else>>
<<set $actionList to $oppositeSexInteractions>>
<</if>>
<<for $i to 0; $i lt $actionList.length; $i++>>
<<if $actionList[$i].level lte $globalHeatLevel>>
<!-- Filter male-only actions -->
<<if $actionList[$i].malesOnly and ($characters[$currentSpinner].gender neq "male" or $characters[$currentTarget].gender neq "male")>>
<!-- Skip male-only action if not both males -->
<<elseif $actionList[$i].name eq "Group fun" and $groupWaiting.includes($currentTarget)>>
<!-- Skip Group fun if target is already in the waiting group -->
<<else>>
<<set $availableActions.push($actionList[$i])>>
<</if>>
<</if>>
<</for>>
<<if $availableActions.length gt 0>>
<<set $selectedAction to $availableActions[random(0, $availableActions.length - 1)]>>
<<else>>
<<set $selectedAction to {name: "Awkward Pause", desc: "An uncomfortable moment of silence"}>>
<</if>>
<</nobr>>
<div class="ai-choice-compact">
<strong>$characters[$currentSpinner].name chooses: $selectedAction.name</strong>
[[Continue|ActionResult]]
</div><<nobr>>
<<set $originalSpinner to $currentSpinner>>
<<set $originalTarget to $currentTarget>>
<<set $tensionIncrease to $selectedAction.level>>
<<set $characters[$originalSpinner].tension[$characters[$originalTarget].name] += $tensionIncrease>>
<<set $characters[$originalTarget].tension[$characters[$originalSpinner].name] += $tensionIncrease>>
<!-- Increase individual heat levels for both participants -->
<<set $characters[$originalSpinner].heatLevel += 1>>
<<set $characters[$originalTarget].heatLevel += 1>>
<!-- Calculate new global heat level -->
<<set $heatLevelIncreased to window.calculateGlobalHeat()>>
<<set $gamePhase to "spinning">>
<<set $currentSpinner to $originalTarget>>
<<set $round++>>
<!-- Clear ATM flags if male participants don't have oral as next interaction -->
<<if $selectedAction.name neq "Oral">>
<<if $characters[$originalSpinner].gender eq "male" and $characters[$originalSpinner].hasAnalFlag>>
<<set $characters[$originalSpinner].hasAnalFlag to false>>
<<set $characters[$originalSpinner].analPartner to null>>
<</if>>
<<if $characters[$originalTarget].gender eq "male" and $characters[$originalTarget].hasAnalFlag and $originalTarget neq 0>>
<<set $characters[$originalTarget].hasAnalFlag to false>>
<<set $characters[$originalTarget].analPartner to null>>
<</if>>
<</if>>
<</nobr>><div class="action-result-compact">
<<include "InteractionTemplates">><<nobr>>
<<if $tensionIncrease gte 3>>💗 <em>Tension increases!</em><br> <</if>>
<<if $heatLevelIncreased>>
<<set $newActions to window.getNewActionsAtLevel($globalHeatLevel)>>
<strong>🔥 Global Heat Level increased to $globalHeatLevel!</strong><br>
<<if $newActions.length gt 0>>
<div class="heat-increase">
<strong>🎯 New actions unlocked:</strong><br>
<<for $i to 0; $i lt $newActions.length; $i++>>
<span style="color: #9bb9d4;">• $newActions[$i].name</span> - <em>$newActions[$i].desc</em><<if $newActions[$i].restriction>> ($newActions[$i].restriction)<</if>><br>
<</for>>
</div>
<</if>>
<</if>><</nobr>>
[[Next Turn|GameLoop]]
<<if $globalHeatLevel gte 10>><br><br>
Is it getting too hot in here? [[End Game|EndGame]]<</if>>
</div><div class="end-game">
<h2>The Final Climax</h2>
<<nobr>>
<p>The game has reached its peak intensity with Global Heat Level $globalHeatLevel!</p>
<p>How do you want to finish this unforgettable family game night?</p>
<div class="climax-options">
<h3>Choose Your Finale:</h3>
</div>
<</nobr>>
[[Just cum on them|CumOnGirls]]<br>
<<if $supporterUnlocked>>
[[Let the whole family give your stepsister a bukkake|Bukkake]]<br>
<<else>>
<span style="color: #666; font-style: italic;">🔒 Special bukkake scene for supporters</span><br>
<</if>>
</div><div class="end-game">
<h2>Covering Your Slutty Family</h2>
<<nobr>>
<p>You stand up, your massive cock throbbing with desperate need as you survey the horny sluts of your blended family. Their naked bodies glisten with sweat and pussy juice from the intense sexual game, tits heaving as they stare hungrily at your hard dick.</p>
<<charspeech 3 "Show some love for your new Mommy~">>
<<charspeech 4 "Stepbro, please, I want to feel your thick gooey cum on my body!">>
<<charspeech 5 "Use your little stepsister as your dirty cumrag, you fucking pervert.">>
Each dirty slut desperate to be painted with your thick cum. Choose one, but don't worry - the rest will be covered by your father and brother.
<</nobr>>
<div class="girl-selection">
<<if $characters.find(c => c.relation === "stepmom").active>>
[[Cum all over your stepmom's face and tits|CumOnStepmom]]<br>
<</if>>
<<if $characters.find(c => c.relation === "stepsis1").active>>
[[Paint your stepsister's body with cum|CumOnStepsis1]]<br>
<</if>>
<<if $characters.find(c => c.relation === "stepsis2").active>>
[[Cover your little stepsister in your hot load|CumOnStepsis2]]<br>
<</if>>
</div>
<p>[[Back to choose a different finale|EndGame]]</p>
</div><div class="end-game">
<h2>Marking Your Slutty Stepmom</h2>
<<nobr>>
<p>You move toward <<charname 3>>, who drops to her knees like the desperate milf slut she is, staring hungrily at your throbbing cock. Her massive, obscene tits and experienced mouth have been driving you insane all night.</p>
<p><<charspeech 3 "Yes baby, cover mommy's face with your hot fucking cum. You dad loves to use my tits for that, go on, I know you want to~">></p>
<p>You grab her massive boobs and use them as a sex toy while <<charname 3>> moans like the cock-hungry milf she is.</p>
<</nobr>>
<<video "img/stepmom/cummed_on_2.mp4">>
<<nobr>>
<p>Your swollen cock explodes like a fucking volcano, shooting thick ropes of hot cum all over her face and massive tits. She murmurs in pure satisfaction as your seed completely covers her slutty milf body, dripping down her curves.</p>
<p><<charspeech 3 "You're just like your father... even on taste.">> She moans like a dirty whore, licking your thick cum from her lips.</p>
<</nobr>>
[[Game Complete - Start Over|Reset]]
</div><<nobr>>
/* Reset all game variables to initial state */
<<set $round to 1>>
<<set $globalHeatLevel to 1>>
<<set $maxIndividualHeat to 0>>
<<set $averageHeat to 0>>
<<set $currentSpinner to 0>>
<<set $currentTarget to 0>>
<<set $gamePhase to "spinning">>
<<set $roundsSinceMCSpun to 0>>
<<set $maxRoundsWithoutMC to 5>>
<<set $groupWaiting to []>>
<<set $groupTarget to -1>>
/* Reset character data to initial state while preserving custom names */
<<set $characters to [
{
name: $customPlayerName || "Jason",
gender: "male",
relation: "The player",
active: true,
isPlayerControlled: true,
tension: {},
heatLevel: 0,
color: "#4CAF50",
analPartner: null,
hasAnalFlag: false
},
{
name: $customBrotherName || "Marcus",
gender: "male",
relation: "brother",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#2196F3",
analPartner: null,
hasAnalFlag: false
},
{
name: $customFatherName || "William",
gender: "male",
relation: "father",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#FF9800",
analPartner: null,
hasAnalFlag: false
},
{
name: $customStepmomName || "Debra",
gender: "female",
relation: "stepmom",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#E91E63",
analPartner: null,
hasAnalFlag: false
},
{
name: $customStepsister1Name || "Jill",
gender: "female",
relation: "stepsis1",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#9C27B0",
analPartner: null,
hasAnalFlag: false
},
{
name: $customStepsister2Name || "Angie",
gender: "female",
relation: "stepsis2",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#00BCD4",
analPartner: null,
hasAnalFlag: false
}
]>>
/* Re-initialize tension levels */
<<for $i to 0; $i lt $characters.length; $i++>>
<<set $characters[$i].tension to {}>>
<<for $j to 0; $j lt $characters.length; $j++>>
<<if $i neq $j>>
<<set $characters[$i].tension[$characters[$j].name] to 0>>
<</if>>
<</for>>
<</for>>
/* Reset god mode if it was enabled */
<<set $godModeEnabled to false>>
<</nobr>>
<<goto "Start">><div class="end-game">
<h2>Painting Your Slutty Little Stepsister</h2>
<<nobr>>
<p><<charname 5>>, the little mean brat, lies naked and waiting to receive your load.</p>
<p><<charspeech 5 "What are you waiting for, pervert? Jerk off your stupid giant cock already!">></p>
<</nobr>>
<<video "img/stepsis2/cummed_on_1.mp4">>
<<nobr>>
<p>Your cock erupts like a fucking geyser, completely covering her tight little slut body from head to toe in thick ropes of hot cum. <<charname 5>> can't resist and licks the tip of your cock, sucking what's left in your balls.</p>
<p><<charspeech 5 "Maybe having a big black stepbrother could be fun">> she moans, rubbing your thick cum into her tight body.</p>
<</nobr>>
[[Game Complete - Start Over|Reset]]
</div><div class="end-game">
<h2>Covering Your Slutty Stepsister</h2>
<<nobr>>
<p><<charname 4>> guides your big black cock to her belly. For a moment, you think that she wants you to stick it inside her wet pussy and give her a creampie...</p>
<p><<charspeech 4 "Go on, unload it right on your stepsister's body. I want it so much..."</p>
<</nobr>>
<<video "img/stepsis1/cummed_on_1.mp4">>
<<nobr>>
<p>You stroke your massive cock over her gorgeous slutty body, then explode in powerful spurts that completely coat her curves in thick, hot cum.</p>
<p><<charspeech 4 "Hey, it's a kissing game, remember? Give me the last kiss before you go, my favorite black stepbro..." </p>
<</nobr>>
[[Game Complete - Start Over|Reset]]
</div><div class="end-game">
<h2>Family Bukkake for Your Slutty Stepsister</h2>
<<charspeech 4 "I don't want to be selfish, but... Can you all cum on my face? Like, a bukkake thing?">>
<<charspeech 3 "Buk... Sweetie, where did you learn such things?">>
<<charspeech 5 "Mom, everyone knows what bukkake is. And I'm not surprised that your prized daughter wants to take center stage, as always.">>
<<charspeech 2 "My sweet little girl, my next load is all yours, I promise!">>
<<charname 5>> blushes.
<<charspeech 5 "Fine... daddy... plaster this slut face all you want...">>
Happy <<charname 4>> kneels, and your dad takes the lead, anointing her beautiful face with his thick semen. That is an impressive load on it's own that plasters most of your stepsister's face - and it's only the beginning.
<<video "img/stepsis1/bukkake_1.mp4">>
<<charspeech 4 "Yummy!">>
You can't hold yourself anymore and deliver the next load to your stepsister. There is a lot of semen stored in your balls, but you lack precision, and make a mess - some cum lands on <<charname 4>>'s face, several drops go in her hair, and the rest splashes all over her body. But this sloppy work counts well for the image of this cum-covered slut.
<<video "img/stepsis1/bukkake_2.mp4">>
Finally, it's your brother's turn. He squeezes everything he has in his balls and adds the last touches to the picture of this cum slut that is your stepsister. Now, standing on her knees in front of her family, unable to open her eyes because of the thick layer of cum on her face, <<charname 4>> looks the happiest ever.
<<video "img/stepsis1/bukkake_3.mp4">>
<<charspeech 4 "It was my pleasure being your canvas~">>
[[Game Complete - Start Over|Reset]]
</div><<nobr>>
<!-- Get the performer for video selection -->
<<set $performer to $characters[$originalSpinner]>>
<<set $target to $characters[$originalTarget]>>
<!-- Select a valid commenter (not spinner or target) -->
<<set _validCommenters to []>>
<<for _i to 0; _i lt $characters.length; _i++>>
<<if _i neq $originalSpinner and _i neq $originalTarget>>
<<set _validCommenters.push(_i)>>
<</if>>
<</for>>
<<if _validCommenters.length gt 0>>
<<set $commenter to _validCommenters.random()>>
<<else>>
<<set $commenter to 0>>
<</if>>
<!-- Same-sex interactions -->
<<if $selectedAction.name eq "Tell">>
<p><<charname $originalTarget>> sighs and thinks for a moment, before sharing something so personal (and disturbing!), everyone gets just a little hotter. "<em>[In the future versions, you may get leads to special scenes from here.]</em>"</p>
<<charsayit $commenter "Damn, I never would have guessed...">>
<<elseif $selectedAction.name eq "Dance">>
<<if $characters[$originalTarget].relation eq "brother">>
<<charsayit $originalTarget "Haha, let me show ya!">>
<<elseif $characters[$originalTarget].relation eq "father">>
<<charsayit $originalTarget "I'm too rusty, but back in the day your old man could ignite the dancefloor...">>
<<elseif $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $originalTarget "Oh, well, let me try something...">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $originalTarget "How sexy should I dance?">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $originalTarget "Tell me when to stop, ok?">>
<<else>>
<<charsayit $originalTarget "I think I know some moves.">>
<</if>>
<<set $videoPath to window.getRandomVideo($performer, $target, "dance")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0>>
<p><<charname $originalTarget>> <<sayit "[stands up|raises|gets up]">> with <<sayit "[a confident smile|confidence]">>. <<sayit "[Music starts playing from a smartphone|Others tap some simple beat|No music is needed]">> when <<if $characters[$originalTarget].gender eq "female">>she<<else>>he<</if>> starts <<sayit "[dancing|swinging around|moving rhythmically|showing off]">> and enjoying <<sayit "[the attention from others|fascinated gazes|surprized looks]">>.</p>
<<else>>
<p>You <<sayit "[stand up confidently|rise with energy|get up with a grin] and [unleash your moves|start dancing|hit the rhythm]. [Music plays from someone's phone|Others clap along|The beat drops] as you [work the floor|show your skills|command the room], while everyone [watches with excitement|cheers you on|can't look away]">>.</p>
<</if>>
<<if $characters[$commenter].relation eq "father">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "[I love you, baby!|Those stripper days aren't easy to forget, huh?]">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "[Woah, girl, easy there!|Bravo!]">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "[Daddy wanna know where you learn those moves?|Amazing performance, sweetheart!]">>
<<else>>
<<charsayit $commenter "[That's my boy!|Call the police - somebody is KILLING it on the dancefloor!|Make your papa proud!]">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepmom">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "[Look at my man, isn't he just gorgeous?|Now imagine how he moves in bed - ah, I'm joking of course!]">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "Easy there, young lady, I think boys are getting hard">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "You're my sweet little angel">>
<<else>>
<<charsayit $commenter "Good moves!">>
<</if>>
<<elseif $characters[$commenter].relation eq "brother">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "Come on, you're not that old!">>
<<elseif $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Not bad for an old lady">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "Woah, sis, can I put some bills in your panties?">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "You can make good money dancing like that, little sis.">>
<<else>>
<<charsayit $commenter "Come on, bro, shake your ass!">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "Sir, you are amazing~">>
<<elseif $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "I hope to have a voluptuous body like yours when I'm your age, Mom.">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "When your mouth is shut, you're surprisingly a decent human being">>
<<else>>
<<charsayit $commenter "[My brother knows how to dance!|Will you teach me these moves, bro?|I want to dance with you someday]">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Yeah, go on, it's not like everyone was already looking at your whorish body">>
<<elseif $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "You have some moves, mister">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "Go on, humiliate yourself some more!">>
<<elseif $characters[$originalTarget].relation eq "brother">>
<<charsayit $commenter "No way, you're actually good at something">>
<<else>>
<<charsayit $commenter "No way, you're actually good at something">>
<</if>>
<<else>>
<<charsayit $commenter "Now that's how you work a room!">>
<</if>>
<<elseif $selectedAction.name eq "Tease">>
<<set $videoPath to window.getRandomVideo($performer, $target, "tease")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0>>
<p><<charname $originalTarget>> <<sayit "[turns up the heat|raises the room temperature|raises the stakes] and openly teases the [surprized family|captivated audience]">> with <<if $characters[$originalTarget].gender eq "female">>her<<else>>his<</if>> <<sayit "[daring moves|seductive poses|explicit suggestions]. Everyone [watches with growing excitement|stares with fascination|becomes visibly aroused]">> as <<charname $originalTarget>> <<sayit "[masterfully work the room|expertly command attention|confidently show off]">>.</p>
<<else>>
<p>You <<sayit "[confidently turn up the heat|skillfully raise the stakes|boldly take control] and tease the [captivated family|mesmerized audience] with your [seductive moves|alluring poses|provocative suggestions]. Everyone [watches with growing excitement|stares with fascination|becomes visibly aroused] as you [masterfully work the room|expertly command attention|confidently show off]">>.</p>
<</if>>
<<if $characters[$commenter].relation eq "father">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Hey, our kids are here...">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "You're not afraid to show some skin!">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "I never thought that I would look at my stepdaughter... like that.">>
<<else>>
<<charsayit $commenter "Come on, son, tease those white women!">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepmom">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "Honey, our girls are watching too, you know... But please, don't stop...">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "You have a beautiful body, sweetie, but are you sure you need to show it all?">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "Wait, are you supposed to show so much?">>
<<else>>
<<charsayit $commenter "Mommy likes what she sees.">>
<</if>>
<<elseif $characters[$commenter].relation eq "brother">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "Not bad for an old man">>
<<elseif $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "[Sheesh, lady, aren't you supposed to be our mom?|That's a PAWG if I ever seen one]">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "I do have an irresistible desire to tip you for showing even more, sis">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "Shit, girl, you're making your brother hard!">>
<<else>>
<<charsayit $commenter "Yeah bro, all this time in the gym was worth it!">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "I will call you Daddy from now on~">>
<<elseif $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "I envy your big bubble butt, mom! Why don't we have some junk in the trunk?!">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "You're just a whore, don't pretend to be better than everyone else.">>
<<else>>
<<charsayit $commenter "I always wanted to have a big black brother~">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "You're fat, mom! Face it, your whoring days are over!">>
<<elseif $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "I mean... woah. Not bad.">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "Bend lower, bitch, we can't see your cunt.">>
<<else>>
<<charsayit $commenter "Mmm, nice moves, bro.">>
<</if>>
<<else>>
<<charsayit $commenter "[That's quite the show|Getting bold, aren't we?]">>
<</if>>
<<elseif $selectedAction.name eq "Flash">>
<<set $videoPath to window.getRandomVideo($performer, $target, "flash")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0>>
<p>With a daring grin, <<charname $originalTarget>> takes center stage. In one swift, confident motion, <<if $characters[$originalTarget].gender eq "female">>she<<else>>he<</if>> <<sayit "[reveals|exposes|demonstrates]">> <<if $characters[$originalTarget].gender eq "female">>her goods<<else>>his massive manhood<</if>>.</p>
<<else>>
<p>With a <<sayit "[confident smirk|bold grin|daring look], you take center stage and [decisively expose yourself|boldly reveal everything]. The [stunned family|mesmerized audience|captivated room] [stares in amazement|watches in fascination|gapes at the display] as you [proudly display yourself|confidently show what you've got]">>.</p>
<</if>>
<<if $characters[$commenter].relation eq "father">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "It's okay, honey, I'm sure my boys already were jerking off to your hot body.">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "You're so cute, and it makes it so awkward...">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "Beautiful breasts... You have.. yeah...">>
<<else>>
<<charsayit $commenter "Careful, boys, don't scare them with your heavy tools.">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepmom">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "Mmm, that's how a real man hungs. Girls, once you go black, you never go back. Just look at this penis - it's perfection.">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "You're all grown up, girl - don't be shy, show some more!">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "Please, don't stop, sweetie~">>
<<else>>
<<charsayit $commenter "I can see the family resemblance~">>
<</if>>
<<elseif $characters[$commenter].relation eq "brother">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "...fuck me.">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "Yeah! Show those titties!">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "Tits reveal!">>
<<else>>
<<charsayit $commenter "Ew, do we have to see it?">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "Yeah... you're my black Daddy... Mom, if you ever need help with this beast, your loyal daughter is here to help.">>
<<elseif $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "She just has to flash her tits - and all men in the room are under her spell. That's unfair.">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "Not bad, sis, not bad.">>
<<else>>
<<charsayit $commenter "Mom, you weren't lying about those big black cocks... I don't think I can go back now...">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Yeah, that's how she used to earn money back in the day. And it was a lot of money.">>
<<elseif $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "Fuck, mister, is this thing even real? I need a closer look...">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "You're a hot bitch, I give you that.">>
<<else>>
<<charsayit $commenter "How do you even walk with that thing?..">>
<</if>>
<<else>>
<<charsayit $commenter "No coming back from it">>
<</if>>
<<elseif $selectedAction.name eq "Group fun">>
<p><<charname $originalSpinner>> leans closer to <<charname $originalTarget>> with a mischievous grin. They share a knowing look as they will share the next family slut.</p>
<<set $groupWaiting.pushUnique($originalSpinner)>>
<<set $groupWaiting.pushUnique($originalTarget)>>
<<if $groupWaiting.length eq 2>>
<p><em>Both men are now eagerly waiting for their chance to join the threesome</em></p>
<<elseif $groupWaiting.length eq 3>>
<p><em>All three men are now ready and waiting - foursome is practically a gangbang.</em></p>
<</if>>
<<elseif $selectedAction.name eq "Masturbate" or $selectedAction.name eq "Pleasure yourself">>
<<set $videoPath to window.getRandomVideo($performer, $target, "masturbate")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0>>
<<if $characters[$originalTarget].gender eq "female">>
<p><<charname $originalTarget>> <<sayit "[spreads her legs wide like a dirty slut|opens her pussy wide for everyone to see|arranges herself like the horny whore she is] making sure everybody gets a good view of her wet cunt before [fingering her slutty pussy|pleasuring her dripping wet hole|playing with her dirty cunt]. She [moans like a cheap whore|breathes heavily like a slut in heat|gasps like the dirty cunt she is] while [working her fingers deep in her pussy|rubbing her slutty clit|stimulating her wet fuckhole]">>...</p>
<<else>>
<p><<charname $originalTarget>> <<sayit "[whips out his massive throbbing cock|positions his huge dick for everyone to see|takes center stage with his monster cock] making sure everybody can see his [impressive girthy manhood|massive dick|thick long shaft] before he starts [stroking it|pleasuring himself|working his length]. He [grunts like a satisfied stud|breathes heavily showing off his size|shows off his massive genitalia] while [pumping non-stop|continuing jerking off|focued on masturbation]">>...</p>
<</if>>
<<else>>
<p>You <<sayit "[confidently expose your massive throbbing cock|boldly display your impressive dick|seductively show off your huge shaft] making sure everyone gets a perfect view of your [horse-hung genitalia|impressive manhood] before [expertly stroking|skillfully working|masterfully pleasuring] yourself. You [moan with satisfaction|breathe heavily with dominance|grunt with masculine pride] while [expertly stimulating your massive cock|confidently showing your stroking technique|proudly displaying your masturbation skills]">>...</p>
<</if>>
<<if $characters[$commenter].relation eq "father">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Get your holes ready for me and my sons.">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "Do you want to be daddy's little girl?">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "Show daddy what you've got.">>
<<else>>
<<charsayit $commenter "Show 'em, boys, but don't get too carried away - we have some family bonding to do.">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepmom">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "Mmm, honey, if you need help with that thing - just ask me. Or my daughters, who can't look away from your massive manhood...">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "Make yourself all nice and wet, sweetie, you'll need it.">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "I want to help you cum, but I'm sure we have enough men who can take care of your needs.">>
<<else>>
<<charsayit $commenter "Woah, boy, don't be so quick - let Mommy handle your pleasure~">>
<</if>>
<<elseif $characters[$commenter].relation eq "brother">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "You're making me so fucking hard.">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "Get your holes ready for my big black cock">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "Yeah, bitch, show me how much you want my dick">>
<<else>>
<<charsayit $commenter "Ew, do we have to see it?">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<if $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "I want it so bad, Daddy...">>
<<elseif $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Mom, you're such a slut~">>
<<elseif $characters[$originalTarget].relation eq "stepsis2">>
<<charsayit $commenter "Now you behave like a good little whore you are.">>
<<else>>
<<charsayit $commenter "Why use hands when you have a sister ready to help?..">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<if $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Knowing that this big-titted, fat-assed whore is my mother makes me fucking hot.">>
<<elseif $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "This is so disgusting, jerking off your big, fat cock in front of your stepdaughter... Don't stop...">>
<<elseif $characters[$originalTarget].relation eq "stepsis1">>
<<charsayit $commenter "You just like our mom - so hot, so slutty.">>
<<else>>
<<charsayit $commenter "I can't look away, bro...">>
<</if>>
<<else>>
<<charsayit $commenter "Wow, just wow.">>
<</if>>
<!-- Opposite-sex interactions with heat-based variations -->
<<elseif $selectedAction.name eq "Kiss">>
<<set $videoPath to window.getRandomVideo($performer, $target, "kiss")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0 and $originalSpinner neq 0>>
<<if $characters[$originalTarget].gender eq "female">>
<p><<charname $originalSpinner>> <<sayit "[approaches her slowly|moves closer with desire|draws near with passion] before [placing a sweet, lingering kiss on her soft lips|capturing her mouth in a tender kiss|pressing his lips against hers passionately]">>. <<charname $originalTarget>> <<sayit "[blushes and melts into him|moans softly into the kiss|responds eagerly to his touch], making everyone [watch with fascination|stare in arousal|become visibly excited]">>.</p>
<<else>>
<p><<charname $originalSpinner>> <<sayit "[approaches him boldly|moves closer with confidence|draws near with desire] before [placing a passionate kiss on his lips|capturing his mouth hungrily|pressing her lips against his eagerly]">>. <<charname $originalTarget>> <<sayit "[responds with intensity|pulls her closer|deepens the kiss], making everyone [watch with growing excitement|stare in fascination|become visibly aroused]">>.</p>
<</if>>
<<else>>
<<if $originalSpinner eq 0>>
<p>You <<sayit "[confidently approach|boldly move closer|passionately draw near]">> <<charname $originalTarget>> and <<sayit "[deliver a perfect, passionate kiss|expertly capture her lips|skillfully press your lips together].">></p>
<<else>>
<p>You <<sayit "[confidently approach|boldly move closer|passionately draw near]">> <<charname $originalSpinner>> and <<sayit "[deliver a perfect, passionate kiss|expertly capture her lips|skillfully press your lips together].">></p>
<</if>>
<</if>>
<<if $characters[$commenter].relation eq "stepmom">>
<<if $characters[$originalSpinner].relation eq "father" or $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "[Hey, do you remember your wife is here?|Girls, show your new daddy some love]">>
<<else>>
<<charsayit $commenter "[Your boy's a kisser|I like that kids are getting along|Aww, so sweet]">>
<</if>>
<<elseif $characters[$commenter].relation eq "father">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "[That's my woman you're kissing, son|Careful with my new wife there]">>
<<else>>
<<charsayit $commenter "[I like that kids are getting along|Kiss that sweet little white girl]">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<charsayit $commenter "[That's... gross|Am I the only one who wants to puke?]">>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<charsayit $commenter "[Can't wait for it to be my turn!|It's so romantic...]">>
<<elseif $characters[$commenter].relation eq "brother">>
<<if $characters[$originalSpinner].relation eq "father" or $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "Nice.">>
<<else>>
<<charsayit $commenter "[Use the tongue, bro! The tongue!|Not bad, not bad]">>
<</if>>
<</if>>
<<elseif $selectedAction.name eq "Grope">>
<<set $videoPath to window.getRandomVideo($performer, $target, "grope")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0 and $originalSpinner neq 0>>
<<if $characters[$originalTarget].gender eq "female">>
<p><<charname $originalSpinner>> <<sayit "[moves closer with deliberate intent|approaches her with hungry eyes|closes the distance with desire] and begins [exploring her curves|caressing her soft body|groping her intimate areas]. His hands [roam over her breasts and thighs|squeeze her ass and tits|fondle her body shamelessly]">>. <<charname $originalTarget>> <<sayit "[moans softly at his touch|gasps with pleasure|responds eagerly to his hands], making everyone [watch with growing arousal|stare with fascination|become visibly excited]">>.</p>
<<else>>
<p><<charname $originalTarget>> <<sayit "[moves closer with deliberate intent|approaches her with hungry eyes|closes the distance with desire] and begins [exploring her curves|caressing her soft body|groping her intimate areas]. His hands [roam over her breasts and thighs|squeeze her ass and tits|fondle her body shamelessly]">>. <<charname $originalSpinner>> <<sayit "[moans softly at his touch|gasps with pleasure|responds eagerly to his hands], making everyone [watch with growing arousal|stare with fascination|become visibly excited]">>.</p>
<</if>>
<<elseif $originalSpinner eq 0>>
<p>You <<sayit "[confidently move closer to|boldly approach|passionately close the distance with]">> <<charname $originalTarget>> and <<sayit "[expertly explore her body|skillfully caress her form|masterfully grope and fondle her body]. Your confident touch [drives her wild with pleasure|makes her moan with desire|has her responding eagerly], making everyone [watch in amazement|stare with fascination|become completely captivated]">>.</p>
<<else>>
<p>You <<sayit "[confidently move closer to|boldly approach|passionately close the distance with]">> <<charname $originalSpinner>> and <<sayit "[expertly explore her body|skillfully caress her form|masterfully grope and fondle her body]. Your confident touch [drives her wild with pleasure|makes her moan with desire|has her responding eagerly], making everyone [watch in amazement|stare with fascination|become completely captivated]">>.</p>
<</if>>
<<if $characters[$commenter].relation eq "stepmom">>
<<if $characters[$originalSpinner].relation eq "father" or $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "[Is that how you touch your stepdaughters?|Be gentle with her, honey]">>
<<else>>
<<charsayit $commenter "[I love looking at them bonding like that, do you?|Don't be shy...]">>
<</if>>
<<elseif $characters[$commenter].relation eq "father">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "[She's a handful, right?|Your new mom is too hot to handle, I don't mind some help|Those tits, son, those fucking tits...]">>
<<else>>
<<charsayit $commenter "[Hey, son, keep your hands close!|Kids these days..]">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<charsayit $commenter "[Don't tell me she actually likes that.|Yeah, for once I'm happy I'm fucking flat everywhere.]">>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<charsayit $commenter "[It's getting too hot in here|His hands are so strong...]">>
<<elseif $characters[$commenter].relation eq "brother">>
<<charsayit $commenter "[Don't hold yourself!|Yeah!]">>
<</if>>
<<elseif $selectedAction.name eq "Oral">>
<<set $isATMScene to false>>
<<set $atmMale to -1>>
<<set $atmFemale to -1>>
<<set $atmOriginalPartner to -1>>
<<set $isSamePersonATM to false>>
<<if $characters[$originalSpinner].gender eq "male" and $characters[$originalSpinner].hasAnalFlag>>
<<set $isATMScene to true>>
<<set $atmMale to $originalSpinner>>
<<set $atmFemale to $originalTarget>>
<<set $atmOriginalPartner to $characters[$originalSpinner].analPartner>>
<<set $isSamePersonATM to ($atmOriginalPartner eq $atmFemale)>>
<<elseif $characters[$originalTarget].gender eq "male" and $characters[$originalTarget].hasAnalFlag>>
<<set $isATMScene to true>>
<<set $atmMale to $originalTarget>>
<<set $atmFemale to $originalSpinner>>
<<set $atmOriginalPartner to $characters[$originalTarget].analPartner>>
<<set $isSamePersonATM to ($atmOriginalPartner eq $atmFemale)>>
<</if>>
<<if $isATMScene>>
<<set $videoPath to window.getRandomVideo($performer, $target, "oral")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<p><strong>🔥 ASS TO MOUTH SCENE! 🔥</strong></p>
<<if $isSamePersonATM>>
<p><<charname $atmFemale>> <<sayit "[wraps her lips around his cock and immediately recognizes the familiar taste|tastes her own ass on his shaft and moans with forbidden excitement|realizes she's cleaning her own backdoor juices off his dick] as she [eagerly sucks her own ass taste from his cock|hungrily devours every drop of her anal essence|becomes a dirty slut cleaning her own ass off his shaft]">>. <<charname $atmMale>> <<sayit "[grins wickedly as she tastes her own asshole|watches her become an ATM slut for her own ass|enjoys seeing her degrade herself by cleaning her own backdoor], making everyone [watch this perverted self-ATM scene|witness her tasting her own forbidden hole|become aroused by her taboo self-degradation]">>.</p>
<<else>>
<p><<charname $atmFemale>> <<sayit "[immediately notices the unfamiliar ass taste coating his cock|recognizes another woman's backdoor flavor on his shaft|realizes she's tasting <<charname $atmOriginalPartner>>'s ass juices] and [becomes a dirty ATM slut for another woman's ass|hungrily cleans <<charname $atmOriginalPartner>>'s anal essence|moans as she tastes someone else's forbidden hole]">>. <<charname $atmMale>> <<sayit "[grins as she cleans another girl's ass off his cock|enjoys watching her become an unwilling ATM slut|loves seeing her degrade herself with someone else's backdoor], making everyone [watch this filthy cross-ATM action|witness the taboo ass-sharing scene|become aroused by the perverted anal exchange]">>.</p>
<</if>>
<<if $commenter eq $atmOriginalPartner>>
<<if $isSamePersonATM>>
<<if $characters[$atmOriginalPartner].relation eq "stepmom">>
<<charsayit $atmOriginalPartner "[I can't believe I'm watching myself being tasted like this|My own ass... on his cock... in her mouth|This is so perverted but I'm getting wet]">>
<<elseif $characters[$atmOriginalPartner].relation eq "stepsis1">>
<<charsayit $atmOriginalPartner "[Oh god, I can almost taste my own ass through her|This is so wrong but so hot|I'm watching my backdoor being cleaned]">>
<<elseif $characters[$atmOriginalPartner].relation eq "stepsis2">>
<<charsayit $atmOriginalPartner "[Hehe, taste my ass, you dirty slut|Clean every drop of my backdoor off his cock|How does my asshole taste?]">>
<</if>>
<<else>>
<<if $characters[$atmOriginalPartner].relation eq "stepmom">>
<<charsayit $atmOriginalPartner "[She's... she's tasting my ass|I can't believe she's cleaning my backdoor juices|That's MY ass she's sucking off his cock]">>
<<elseif $characters[$atmOriginalPartner].relation eq "stepsis1">>
<<charsayit $atmOriginalPartner "[OMG she's literally tasting my asshole|That's so gross... but kinda hot?|My ass is in her mouth right now]">>
<<elseif $characters[$atmOriginalPartner].relation eq "stepsis2">>
<<charsayit $atmOriginalPartner "[Haha! Taste my ass, bitch!|How does my backdoor flavor, slut?|Clean every drop of my asshole off that cock!]">>
<</if>>
<</if>>
<<elseif $characters[$commenter].relation eq "stepmom" and $commenter neq $atmOriginalPartner>>
<<charsayit $commenter "[That's so nasty but so hot!|I can't believe you're tasting ass!|Such a dirty slut with that cock in her mouth!]">>
<<elseif $characters[$commenter].relation eq "father" and $commenter neq $atmOriginalPartner>>
<<charsayit $commenter "[Jesus, that's hardcore|This family is getting nasty|Ass to mouth, now that's hot!]">>
<<elseif $characters[$commenter].relation eq "stepsis1" and $commenter neq $atmOriginalPartner>>
<<charsayit $commenter "[OMG that's so gross but... hot?|I can smell the ass from here!|That's so dirty and wrong!]">>
<<elseif $characters[$commenter].relation eq "stepsis2" and $commenter neq $atmOriginalPartner>>
<<charsayit $commenter "[Haha, taste that ass, slut!|From ass to mouth, classic!|Hope you like the flavor!]">>
<<elseif $characters[$commenter].relation eq "brother" and $commenter neq $atmOriginalPartner>>
<<charsayit $commenter "[ATM sluts are the best!|Clean that ass juice off his cock!|That's what I'm talking about!]">>
<</if>>
<<set $characters[$atmMale].hasAnalFlag to false>>
<<set $characters[$atmMale].analPartner to null>>
<<else>>
<!-- Normal Oral Scene -->
<<set $videoPath to window.getRandomVideo($performer, $target, "oral")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0 and $originalSpinner neq 0>>
<<if $characters[$originalSpinner].gender eq "female">>
<p><<charname $originalSpinner>> <<sayit "[drops to her knees like a cheap cocksucker|gets on her knees like the cock-hungry slut she is|kneels down submissively to worship his massive dick] before [devouring his huge black cock|wrapping her slutty lips around his thick shaft|gagging on his impressive length like a pro]. She [bobs her head like a dirty whore|works her slutty mouth expertly on his cock|sucks him like the cock-addicted slut she is]">>. <<charname $originalTarget>> <<sayit "[groans as she worships his black cock|throws his head back as the slut services him|enjoys her skilled cocksucking mouth], making everyone [watch this nasty blowjob|stare at the cock-hungry whore|become aroused by her slutty oral skills]">>.</p>
<<else>>
<p><<charname $originalTarget>> <<sayit "[drops to her knees like a cheap cocksucker|gets on her knees like the cock-hungry slut she is|kneels down submissively to worship his massive dick] before [devouring his huge black cock|wrapping her slutty lips around his thick shaft|gagging on his impressive length like a pro]. She [bobs her head like a dirty whore|works her slutty mouth expertly on his cock|sucks him like the cock-addicted slut she is]">>. <<charname $originalSpinner>> <<sayit "[groans as she worships his black cock|throws his head back as the slut services him|enjoys her skilled cocksucking mouth], making everyone [watch this nasty blowjob|stare at the cock-hungry whore|become aroused by her slutty oral skills]">>.</p>
<</if>>
<<else>>
<p>You <<sayit "[grab her head and guide your cock into her mouth|skillfully position the slutty cocksucker|confidently direct the cock-hungry whore]">> and <<sayit "[receive an incredible blowjob from this dirty slut|enjoy her skilled cocksucking mouth|experience amazing oral worship from the whore]. Your confident control [drives the slut to pleasure your cock expertly|makes the whore work harder to please your dick|has the cocksucker devoted to satisfying your massive cock], making everyone [watch in amazement as she worships your dick|stare with fascination at the blowjob|become completely captivated by her oral skills]">></p>
<</if>>
<<if $characters[$commenter].relation eq "stepmom">>
<<if $characters[$originalSpinner].relation eq "father" or $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "[How do you find my daughter's oral skills?|Don't disappoint your mom, sweetie]">>
<<else>>
<<charsayit $commenter "[Show your stepbrother some love|You can go deeper, sweetie!]">>
<</if>>
<<elseif $characters[$commenter].relation eq "father">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "[Your new mom knows how to handle a monster cock|God, you're such a slut]">>
<<else>>
<<charsayit $commenter "[Wow, your girls are so skilled at blowjobs|Damn, it must feel good]">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Yeah, here comes mom's favorite place in the world - on her knees, next to a big dick.">>
<<else>>
<<charsayit $commenter "You suck at sucking, lol">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<charsayit $commenter "[Please, don't choke her|How can she still breathe?]">>
<<elseif $characters[$commenter].relation eq "brother">>
<<charsayit $commenter "[Gobble it up, slut!|Deeper, bitch!]">>
<</if>>
<</if>>
<<elseif $selectedAction.name eq "Sex">>
<!-- Check if group scene should trigger -->
<<set $isGroupScene to false>>
<<set $groupSize to 0>>
<<set $targetIsFemale to ($characters[$originalTarget].gender eq "female")>>
<<set $spinnerIsFemale to ($characters[$originalSpinner].gender eq "female")>>
<<if ($groupWaiting.includes($originalSpinner) or $groupWaiting.includes($originalTarget)) and ($targetIsFemale or $spinnerIsFemale)>>
<<set $isGroupScene to true>>
<<set $groupSize to $groupWaiting.length>>
<<if $groupSize gte 3>>
<<set $videoPath to window.getRandomVideo($performer, $target, "foursome")>>
<<else>>
<<set $videoPath to window.getRandomVideo($performer, $target, "threesome")>>
<</if>>
<<set $groupWaiting to []>>
<<else>>
<<set $videoPath to window.getRandomVideo($performer, $target, "sex")>>
<</if>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0>>
<<if $isGroupScene>>
<<if $groupSize gte 3>>
<<if $characters[$originalSpinner].gender eq "female">>
<p><<charname $originalSpinner>> <<sayit "[becomes the center of a brutal family gangbang|turns into the family's personal slut|gets used like a dirty whore] as [all the men take turns destroying her|multiple massive cocks fill every hole|she gets completely ravaged]. [The slutty whore takes cock after cock|She screams as multiple dicks pound her|The dirty bitch gets brutally gangbanged], making everyone [watch this hardcore family gangbang|stare at the brutal fucking|become aroused by the intense group action]">>.</p>
<<else>>
<p><<charname $originalTarget>> <<sayit "[becomes the center of a brutal family gangbang|turns into the family's personal slut|gets used like a dirty whore] as [all the men take turns destroying her|multiple massive cocks fill every hole|she gets completely ravaged]. [The slutty whore takes cock after cock|She screams as multiple dicks pound her|The dirty bitch gets brutally gangbanged], making everyone [watch this hardcore family gangbang|stare at the brutal fucking|become aroused by the intense group action]">>.</p>
<</if>>
<<else>>
<<if $characters[$originalSpinner].gender eq "female">>
<p><<charname $originalSpinner>> <<sayit "[becomes a dirty slut for two massive cocks|gets her holes filled in a brutal threesome|turns into the family's personal whore] as [both men take turns using her body|she gets double-fucked relentlessly|two huge dicks stretch her holes]. [The slut screams as both cocks pound her|She takes both massive dicks like a dirty whore|Her holes get completely filled by both men], making everyone [watch the intense threesome|stare at her getting double-fucked|become aroused by the hardcore action]">>.</p>
<<else>>
<p><<charname $originalTarget>> <<sayit "[becomes a dirty slut for two massive cocks|gets her holes filled in a brutal threesome|turns into the family's personal whore] as [both men take turns using her body|she gets double-fucked relentlessly|two huge dicks stretch her holes]. [The slut screams as both cocks pound her|She takes both massive dicks like a dirty whore|Her holes get completely filled by both men], making everyone [watch the intense threesome|stare at her getting double-fucked|become aroused by the hardcore action]">>.</p>
<</if>>
<</if>>
<<else>>
<<if $characters[$originalSpinner].gender eq "female">>
<p><<charname $originalSpinner>> <<sayit "[straddles him eagerly|climbs on top of his massive cock|positions herself over his thick shaft] and [takes him deep inside her|rides him with passion|bounces on his impressive length]. She [moans loudly with pleasure|cries out in ecstasy|screams with delight]">> while <<charname $originalTarget>> <<sayit "[thrusts up into her|pounds her tight pussy|fucks her relentlessly], making everyone [watch the hot fucking|stare at the intense sex|become aroused by the display]">>.</p>
<<else>>
<p><<charname $originalTarget>> <<sayit "[spreads her legs for him|opens herself to his massive cock|welcomes his thick shaft inside her] as he [penetrates her deeply|pounds her tight pussy|fucks her with intensity]. She [moans loudly with pleasure|cries out in ecstasy|screams with delight]">> while <<charname $originalSpinner>> <<sayit "[thrusts into her relentlessly|pounds her with his huge cock|fucks her harder and harder], making everyone [watch the hot fucking|stare at the intense sex|become aroused by the display]">>.</p>
<</if>>
<</if>>
<<else>>
<p>You <<sayit "[expertly take control of|confidently dominate|masterfully fuck]">> <<charname $originalTarget>> and <<sayit "[deliver incredible pleasure|fuck her with perfect technique|show amazing sexual skills]. Your [dominant performance|confident control|masterful technique] [drives her wild with pleasure|makes her scream with ecstasy|has her begging for more], making everyone [watch in amazement|stare with fascination|become completely captivated]">>.</p>
<</if>>
<<if $characters[$commenter].relation eq "stepmom">>
<<if $characters[$originalSpinner].relation eq "father" or $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "[Why am I so horny watching my husband fucking my daughter?|He's your daddy now, sweetie~]">>
<<else>>
<<charsayit $commenter "[They grow up so fast - before you blink, they already spread their legs for a bbc...|Do you like how his massive dick stretches you, sweetie?]">>
<</if>>
<<elseif $characters[$commenter].relation eq "father">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "[One is never enough for this slut|I appreciate you helping me with this fucking whore]">>
<<else>>
<<charsayit $commenter "[NOW kids are really bonding|Deeper, son, deeper!]">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<charsayit $commenter "[I'm surrounded by whores.|These snowbunnies aren't even pretending...]">>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<charsayit $commenter "[I'm getting wet looking at this...|Can I be next?]">>
<<elseif $characters[$commenter].relation eq "brother">>
<<charsayit $commenter "[I love snowbunnies, and they love me back|Can't believe we're family now]">>
<</if>>
<<elseif $selectedAction.name eq "Anal">>
<!-- Check if group scene should trigger -->
<<set $isGroupScene to false>>
<<set $groupSize to 0>>
<<set $targetIsFemale to ($characters[$originalTarget].gender eq "female")>>
<<set $spinnerIsFemale to ($characters[$originalSpinner].gender eq "female")>>
<<if ($groupWaiting.includes($originalSpinner) or $groupWaiting.includes($originalTarget)) and ($targetIsFemale or $spinnerIsFemale)>>
<<set $isGroupScene to true>>
<<set $groupSize to $groupWaiting.length>>
<<if $groupSize gte 3>>
<<set $videoPath to window.getRandomVideo($performer, $target, "foursome")>>
<<else>>
<<set $videoPath to window.getRandomVideo($performer, $target, "threesome")>>
<</if>>
<<set $groupWaiting to []>>
<<else>>
<<set $videoPath to window.getRandomVideo($performer, $target, "anal")>>
<</if>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0>>
<<if $isGroupScene>>
<<if $groupSize gte 3>>
<<if $characters[$originalSpinner].gender eq "female">>
<p><<charname $originalSpinner>> <<sayit "[becomes the center of a brutal family gangbang|turns into the family's anal whore|gets used like a dirty anal slut] as [all the men destroy her gaping asshole|multiple massive cocks stretch her ass beyond limits|she gets her backdoor completely ruined]. [The slutty anal whore takes cock after cock in her ass|She screams as multiple dicks pound her asshole|The dirty bitch gets her ass brutally gangbanged], making everyone [watch this hardcore anal gangbang|stare at the brutal ass destruction|become aroused by the family anal orgy]">>.</p>
<<else>>
<p><<charname $originalTarget>> <<sayit "[becomes the center of a brutal family gangbang|turns into the family's anal whore|gets used like a dirty anal slut] as [all the men destroy her gaping asshole|multiple massive cocks stretch her ass beyond limits|she gets her backdoor completely ruined]. [The slutty anal whore takes cock after cock in her ass|She screams as multiple dicks pound her asshole|The dirty bitch gets her ass brutally gangbanged], making everyone [watch this hardcore anal gangbang|stare at the brutal ass destruction|become aroused by the family anal orgy]">>.</p>
<</if>>
<<else>>
<<if $characters[$originalSpinner].gender eq "female">>
<p><<charname $originalSpinner>> <<sayit "[becomes a dirty anal slut for two massive cocks|gets her ass destroyed in a brutal threesome|turns into the family's anal whore] as [both men take turns destroying her asshole|she gets double-fucked in her tight ass|two huge dicks stretch her backdoor]. [The anal slut screams as both cocks pound her ass|She takes both massive dicks like a dirty whore|Her asshole gets completely ruined by both men], making everyone [watch the intense anal threesome|stare at her ass getting double-fucked|become aroused by the hardcore anal action]">>.</p>
<<else>>
<p><<charname $originalTarget>> <<sayit "[becomes a dirty anal slut for two massive cocks|gets her ass destroyed in a brutal threesome|turns into the family's anal whore] as [both men take turns destroying her asshole|she gets double-fucked in her tight ass|two huge dicks stretch her backdoor]. [The anal slut screams as both cocks pound her ass|She takes both massive dicks like a dirty whore|Her asshole gets completely ruined by both men], making everyone [watch the intense anal threesome|stare at her ass getting double-fucked|become aroused by the hardcore anal action]">>.</p>
<</if>>
<</if>>
<<else>>
<<if $characters[$originalSpinner].gender eq "female">>
<p><<charname $originalSpinner>> <<sayit "[spreads her plump ass cheeks wide|bends over like a dirty anal slut|positions her tight asshole over his massive cock] and [slowly impales her ass on his huge dick|takes every last inch up her backdoor|rides his cock with her perfect ass]. She [screams like a chep whore as he destroys her asshole|moans like a dirty anal slut getting stretched|cries out as his massive cock splits her ass open]">> while <<charname $originalTarget>> <<sayit "[pounds her tight fucking asshole mercilessly|destroys her backdoor with his huge cock|stretches her ass with his monster dick], making everyone [watch this brutal ass pounding|stare at her asshole getting destroyed|become aroused by the hardcore anal action]">>.</p>
<<else>>
<p><<charname $originalTarget>> <<sayit "[spreads her plump ass cheeks wide|bends over like a dirty anal slut|positions her tight asshole over his massive cock] and [slowly impales her ass on his huge dick|takes every last inch up her backdoor|rides his cock with her perfect ass]. She [screams like a chep whore as he destroys her asshole|moans like a dirty anal slut getting stretched|cries out as his massive cock splits her ass open]">> while <<charname $originalSpinner>> <<sayit "[pounds her tight fucking asshole mercilessly|destroys her backdoor with his huge cock|stretches her ass with his monster dick], making everyone [watch this brutal ass pounding|stare at her asshole getting destroyed|become aroused by the hardcore anal action]">>.</p>
<</if>>
<</if>>
<<else>>
<p>You <<sayit "[brutally destroy her tight asshole|mercilessly pound her backdoor|masterfully stretch her ass with your massive cock] and [make her scream like a dirty anal whore|split her asshole wide open|show everyone what real ass drilling feels like]. Your [brutal anal domination|merciless backdoor destruction|masterful ass pounding] [makes her beg for mercy as you destroy her asshole|has her screaming as you stretch her ass beyond limits|drives her insane with anal pleasure and pain], making everyone [watch in shock at the brutal ass punding|stare in amazement at the anal destruction|become captivated by your dominant anal performance]">>.</p>
<</if>>
<<if $characters[$commenter].relation eq "stepmom">>
<<charsayit $commenter "[Wait, since when can your little ass take so much black cock?|You stretch her so much...]">>
<<elseif $characters[$commenter].relation eq "father">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "[I made sure her ass can fit our sizes|Like your mom's ass, kid?]">>
<<else>>
<<charsayit $commenter "Stretch that backdoor, kid">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Ass must have been the last tight hole my mother had, but I'm not so sure anymore.">>
<<else>>
<<charsayit $commenter "I hope you clean your ass well, sis. I don't want to taste your shit later">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<charsayit $commenter "I stretch my ass in my free time, I can do even better!">>
<<elseif $characters[$commenter].relation eq "brother">>
<<charsayit $commenter "Anal sluts are my favorites">>
<</if>>
<!-- Set ATM flags after anal interaction -->
<<if $characters[$originalSpinner].gender eq "male">>
<!-- Male spinner had anal with female target -->
<<set $characters[$originalSpinner].hasAnalFlag to true>>
<<set $characters[$originalSpinner].analPartner to $originalTarget>>
<</if>>
<<if $characters[$originalTarget].gender eq "male" and $originalTarget neq 0>>
<!-- Male target had anal with female spinner -->
<<set $characters[$originalTarget].hasAnalFlag to true>>
<<set $characters[$originalTarget].analPartner to $originalSpinner>>
<</if>>
<!-- Additional actions for variety -->
<<elseif $selectedAction.name eq "Foreplay">>
<<set $videoPath to window.getRandomVideo($performer, $target, "foreplay")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0 and $originalSpinner neq 0>>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<p><<charname $originalSpinner>> <<sayit "[wraps her massive fat tits around|squeezes her giant melons around|uses her enormous round boobs to pleasure]">> <<charname $originalTarget>>'s <<sayit "[huge cock|thick shaft|massive dick]. [Her huge tits completely engulf his cock|Those large melons slide up and down his length|Her enormous boobs work his cock perfectly]">> while <<sayit "[she moans like a dirty slut|the whore works her tits expertly|she titfucks him like the experienced slut she is], making everyone [watch her breasts in action|stare at those giant boobs bouncing|become aroused by the titjob display]">>.</p>
<<else>>
<p><<charname $originalSpinner>> <<sayit "[wraps her delicate hands around|grips with both hands|starts stroking expertly]">> <<charname $originalTarget>>'s <<sayit "[massive cock|thick shaft|impressive length]. [Her small hands can barely fit around his girth|She works his cock with skilled movements|Her fingers explore every inch of his huge dick]">> while <<sayit "[she strokes him with growing excitement|working his length with dedication|pumping his cock with enthusiasm], making everyone [watch her skilled handjob technique|stare at her hands working his shaft|become aroused by her manual skills]">>.</p>
<</if>>
<<else>>
<<if $characters[$originalTarget].relation eq "stepmom" or $characters[$originalSpinner].relation eq "stepmom">>
<p>You <<sayit "[confidently guide|expertly position| enjoy]">> your stepmom's <<sayit "[massive fat tits around your cock|giant melons on your shaft|enormous boobs pleasuring you]. Her [huge round tits|giant melons|massive boobs] [completely engulf your cock|work your length perfectly|slide expertly up and down], making everyone [watch in amazement|stare with fascination|become completely captivated]">>.</p>
<<else>>
<p>You <<sayit "[expertly guide|confidently enjoy| receive]">> your stepsister's <<sayit "[skilled handjob|jerk-off session]. Her [delicate hands|skilled fingers|expert touch] [work your length perfectly|stroke you with precision|pleasure you expertly], making everyone [watch in amazement|stare with fascination|become completely captivated]">>.</p>
<</if>>
<</if>>
<<if $characters[$commenter].relation eq "stepmom">>
<<if $characters[$originalSpinner].relation eq "father" or $characters[$originalTarget].relation eq "father">>
<<charsayit $commenter "[He is so big, right?|I hope you're thinking about your wife!]">>
<<else>>
<<charsayit $commenter "[It's a useful training - a good handjob can take you places.|Mmm, I notice the family resemblance.]">>
<</if>>
<<elseif $characters[$commenter].relation eq "father">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "[Fuck those tits, son!|She's good at it, right?]">>
<<else>>
<<charsayit $commenter "[Look, she can barely wrap her hands around my boy!|Your girls know how to handle a big black cock]">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "Of course, she has to use her gigantic boobs">>
<<else>>
<<charsayit $commenter "Look at this slut, so eager to please black dick - pathetic.">>
<</if>>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "When will we have massive breasts, mom?">>
<<else>>
<<charsayit $commenter "Sis, you look so good with that dick in your hands!">>
<</if>>
<<elseif $characters[$commenter].relation eq "brother">>
<<if $characters[$originalSpinner].relation eq "stepmom" or $characters[$originalTarget].relation eq "stepmom">>
<<charsayit $commenter "No fucking way!">>
<<else>>
<<charsayit $commenter "[Yeah, I think I'm better at jerking off myself.|Not impressed.]">>
<</if>>
<</if>>
<<elseif $selectedAction.name eq "Fingering">>
<<set $videoPath to window.getRandomVideo($performer, $target, "fingering")>>
<<if $videoPath>><div class="video-container"><<video $videoPath>></div><</if>>
<<if $originalTarget neq 0 and $originalSpinner neq 0>>
<p>With expert precision, he focuses entirely on her pleasure.</p>
<<else>>
<p>With expert precision, you focus entirely on her pleasure.</p>
<</if>>
<<if $characters[$commenter].relation eq "stepmom">>
<<charsayit $commenter "[That's how you warm up a girl|Show her some love, honey]">>
<<elseif $characters[$commenter].relation eq "father">>
<<charsayit $commenter "[Nice technique, son|Make her wet for the main event]">>
<<elseif $characters[$commenter].relation eq "stepsis2">>
<<charsayit $commenter "[At least someone knows foreplay exists|Finally some attention to detail]">>
<<elseif $characters[$commenter].relation eq "stepsis1">>
<<charsayit $commenter "[That looks so good|I wish it was me]">>
<<elseif $characters[$commenter].relation eq "brother">>
<<charsayit $commenter "[Good warm-up, man|Get her ready for the real thing]">>
<</if>>
<!-- Default fallback -->
<<else>>
<p><<charname $originalSpinner>> performs $selectedAction.name with <<charname $originalTarget>>. "<em>[Placeholder: Action-specific dialogue]</em>" $selectedAction.desc</p>
<</if>>
<</nobr>><<nobr>>
<div class="warning-box">
<strong>⚠️ WARNING: NSFW CONTENT</strong><br>
<span class="warning-text">This game contains adult themes and is intended for mature audiences only. All characters are 18+, and no relationships between blood relatives are depicted.</span>
</div>
<div class="start-header">
<div style="margin-top: 2em;">
<div style="font-size: 1.5em; font-weight: bold; padding: 0.8em 1.2em; text-align: center;">
[[Start playing|Intro_story1]]
</div>
</div>
<div style="margin-top: 1.5em; padding: 1em; background: rgba(255, 255, 255, 0.1); border-radius: 8px; color: #b8d4e6; line-height: 1.6; font-size: 1.1em;">
<p style="margin: 0 0 1em 0;">This game is inspired by <a href="https://f95zone.to/threads/spin-to-win-1-0a-amd_dman.283125/" target="_blank" style="color: #9bb9d4; text-decoration: underline;">amd_dman's Spin to Win</a>. Check it out if you enjoyed the premise!</p>
<p style="margin: 0;">On my <a href="https://patreon.com/TimJRebel" target="_blank">[Patreon]</a>, you can find a code to unlock a god mode - ability to choose an action for non-player characters - as well as a special supporter scene. But don't worry, (imho) the game is pretty fun as is.</p>
</div>
</div>
<<nobr>>
<div style="margin: 1.5em 0; padding: 1em; background: linear-gradient(135deg, rgba(45, 75, 129, 0.3), rgba(40, 104, 130, 0.3)); border: 1px solid rgba(59, 130, 164, 0.6); border-radius: 8px;">
<h3 style="color: #9bb9d4; margin: 0 0 1em 0; text-shadow: 0 0 6px rgba(59, 130, 164, 0.4);">💎 Supporter Access</h3>
<div style="margin-bottom: 1em;">
<span style="color: #b8d4e6;">Enter supporter code for premium features:</span><br>
<<textbox "$supporterCodeInput" "" "" "style='margin-top: 0.5em; padding: 0.4em; border-radius: 4px; border: 1px solid rgba(59, 130, 164, 0.6); background: rgba(20, 40, 60, 0.5); color: #b8d4e6;'" autofocus>>
<<button "Validate Code" "Start">>
<<if $supporterCodeInput.toUpperCase() is "SPINMAX2026">>
<<set $supporterUnlocked to true>>
<<set $supporterCodeInput to "">>
<<else>>
<<set $supporterUnlocked to false>>
<<if $supporterCodeInput neq "">>
<<set $supporterCodeFailed to true>>
<</if>>
<</if>>
<</button>>
</div>
<<if $supporterCodeFailed>>
<div style="color: #ff6b6b; margin-bottom: 1em; font-weight: bold;">❌ Invalid supporter code. Please try again.</div>
<</if>>
<<if $supporterUnlocked>>
<div style="color: #4ecdc4; margin-bottom: 1em; font-weight: bold;">✅ Supporter features unlocked! Thank you for your support!</div>
<div style="margin-bottom: 1em;">
<<checkbox "$godModeEnabled" false true autocheck>> <span style="color: #9bb9d4; font-weight: bold;">🎮 God Mode:</span> <span style="color: #b8d4e6;">Control all NPCs (you choose actions for everyone)</span>
</div>
<<else>>
<div style="color: #ffa726; font-style: italic;">Premium features (God Mode, special scenes) require supporter code.</div>
<</if>>
</div>
<</nobr>>
<</nobr>><<nobr>>
<div class="game-container">
<div style="text-align: center; padding: 1em 0; margin-bottom: 1.5em;">
<h2 style="color: #9bb9d4; text-shadow: 0 0 10px rgba(59, 130, 164, 0.6); font-family: 'Georgia', serif; margin: 0;">Meet the Family</h2>
</div>
<div style="margin-bottom: 1.5em; line-height: 1.6;">
<p style="color: #b8d4e6; margin-bottom: 1em;">This is you:</p>
<<nobr>><div class="character-card you"><div class="character-portrait you"><img src="img/portraits/you.jpg"></div><div class="character-info"><h3 class="character-name speaker-name you">You, the player</h3><p class="character-description">The main character</p><<textbox "$customPlayerName" $customPlayerName>></div></div><</nobr>>
<p style="color: #b8d4e6; margin: 1em 0;">You have an older brother:</p>
<<nobr>><div class="character-card brother"><div class="character-portrait brother"><img src="img/portraits/brother.jpg"></div><div class="character-info"><h3 class="character-name speaker-name brother">Brother</h3><p class="character-description">Your bro</p><<textbox "$customBrotherName" $customBrotherName>></div></div><</nobr>>
<p style="color: #b8d4e6; margin: 1em 0;">And your father is:</p>
<<nobr>><div class="character-card father"><div class="character-portrait father"><img src="img/portraits/father.jpg"></div><div class="character-info"><h3 class="character-name speaker-name father">Father</h3><p class="character-description">Your father</p><<textbox "$customFatherName" $customFatherName>></div></div><</nobr>>
<p style="color: #b8d4e6; line-height: 1.6; margin: 1.5em 0;">You lost your mom so long ago, it felt like you never really knew her. And your dad took good care of you all these years, so you never really needed anything.</p>
<p style="color: #b8d4e6; line-height: 1.6; margin: 1.5em 0;">When you finally grew up and went to college, your dad seemingly decided to turn the page and remarried. While you and your brother want him to be happy, you simultaneously despise your new family members:</p>
<p style="color: #b8d4e6; margin: 1em 0;">Your new stepmom, whom you call only by her name:</p>
<<nobr>><div class="character-card stepmom"><div class="character-portrait stepmom"><img src="img/portraits/stepmom.jpg"></div><div class="character-info"><h3 class="character-name speaker-name stepmom">Stepmother</h3><p class="character-description">Your father's new wife and mother to your stepsisters</p><<textbox "$customStepmomName" $customStepmomName>></div></div><</nobr>>
<div style="text-align: center; margin: 1em 0;">
<img src="img/stepmom/intro.jpg" style="max-width: 100%; max-height: 90vh; height: auto; display: block; margin: 0 auto; border-radius: 8px; box-shadow: 0 4px 15px rgba(26, 58, 82, 0.4);">
</div>
<p style="color: #b8d4e6; line-height: 1.6; margin: 1em 0;">Where did Dad even find this whore? You despise her and suspect she only cares about father's wealth... but also can't deny how fucking hot her mature body is.</p>
<p style="color: #b8d4e6; margin: 1em 0;">Her older daughter.</p>
<<nobr>><div class="character-card stepsister1"><div class="character-portrait stepsister1"><img src="img/portraits/stepsister1.jpg"></div><div class="character-info"><h3 class="character-name speaker-name stepsister1">Stepsister 1</h3><p class="character-description">Your older stepister</p><<textbox "$customStepsister1Name" $customStepsister1Name>></div></div><</nobr>>
<div style="text-align: center; margin: 1em 0;">
<img src="img/stepsis1/intro.jpg" style="max-width: 100%; max-height: 90vh; height: auto; display: block; margin: 0 auto; border-radius: 8px; box-shadow: 0 4px 15px rgba(26, 58, 82, 0.4);">
</div>
<p style="color: #b8d4e6; line-height: 1.6; margin: 1em 0;">She is actually cute, if not a bit naive. For some reason, she is very shy in the presence of you and your bro, and this makes it awkward for you to hate her.</p>
<p style="color: #b8d4e6; margin: 1em 0;">You have no such problems with her younger daughter:</p>
<<nobr>><div class="character-card stepsister2"><div class="character-portrait stepsister2"><img src="img/portraits/stepsister2.jpg"></div><div class="character-info"><h3 class="character-name speaker-name stepsister2">Stepsister 2</h3><p class="character-description">Your younger stepsister</p><<textbox "$customStepsister2Name" $customStepsister2Name>></div></div><</nobr>>
<div style="text-align: center; margin: 1em 0;">
<img src="img/stepsis2/intro.jpg" style="max-width: 100%; height: auto; display: block; margin: 0 auto; border-radius: 8px; box-shadow: 0 4px 15px rgba(26, 58, 82, 0.4);">
</div>
<p style="color: #b8d4e6; line-height: 1.6; margin: 1em 0;">She's a mean brat, and while you may understand that it's her defensive mechanisms at work, you can't stand her attitude and despicable remarks. Sometimes you want to punish her little body for such behaviour, and part of you is sure she is just asking for it.</p>
<p style="color: #b8d4e6; line-height: 1.6; margin: 1.5em 0;">Thankfully, you meet together only on special occasions - those that end up in fights and scandals. But your father and your new stepmother don't give up on bonding you all together.</p>
<div style="text-align: center; margin: 2em 0;">
[[It's their latest attempt|Intro_story2]]
</div>
</div>
</div>
<</nobr>><<nobr>>
/* Apply custom names if they were set */
<<if $customPlayerName and $customPlayerName.trim() neq "">>
<<set $characters[0].name to $customPlayerName.trim()>>
<</if>>
<<if $customBrotherName and $customBrotherName.trim() neq "">>
<<set $characters[1].name to $customBrotherName.trim()>>
<</if>>
<<if $customFatherName and $customFatherName.trim() neq "">>
<<set $characters[2].name to $customFatherName.trim()>>
<</if>>
<<if $customStepmomName and $customStepmomName.trim() neq "">>
<<set $characters[3].name to $customStepmomName.trim()>>
<</if>>
<<if $customStepsister1Name and $customStepsister1Name.trim() neq "">>
<<set $characters[4].name to $customStepsister1Name.trim()>>
<</if>>
<<if $customStepsister2Name and $customStepsister2Name.trim() neq "">>
<<set $characters[5].name to $customStepsister2Name.trim()>>
<</if>>
/* Re-initialize tension levels with updated names */
<<for $i to 0; $i lt $characters.length; $i++>>
<<set $characters[$i].tension to {}>>
<<for $j to 0; $j lt $characters.length; $j++>>
<<if $i neq $j>>
<<set $characters[$i].tension[$characters[$j].name] to 0>>
<</if>>
<</for>>
<</for>>
<div class="game-container">
<div style="margin-bottom: 1.5em; line-height: 1.6;">
<p style="color: #b8d4e6; line-height: 1.6; margin-bottom: 1.5em;">This time, you meet in a rented bungalow for a holiday. It goes as well as could be expected, until after a few drinks your father and stepmother propose a game for tonight.</p>
<<charspeech 1 "Spin the bottle? You know it's a kissing game, right?">>
<<charspeech 5 "We're not teenagers anymore, mom!">>
<<charspeech 3 "Come on, let's give it a try. I know there is a lot of tension between us, and we believe it could be constructive to release it in a game setting...">>
<p style="color: #b8d4e6; line-height: 1.6; margin: 1.5em 0;">You look around. It seems like your family members, old and new, are relaxed enough to give it a try - after all, you can always fight afterwards.</p>
<<charspeech 5 "Whatever. This will only prove how perverted my stepbrothers are!">>
<<charspeech 1 "Shut up, bitch. I'm in, get ready to watch me doing it with your mom!">>
<<charspeech 4 "Hey, calm down! Let's take this opportunity to know each other better.">>
<<charspeech 2 "Yes! It's like.. truth or dare?">>
<<charspeech 3 "Yes, honey, a bit of truth... a lot of dares...">>
<<charspeech 0 "Fuck it, let's start.">>
<div style="text-align: center; margin: 2em 0;">
[[The rules?|Intro_game]]
</div>
</div>
</div>
<</nobr>>
<<script>>
window.applyCustomNames = function() {
// Apply custom names to character array
if (State.variables.characters) {
// Find and update each character
const characters = State.variables.characters;
// Update player name
const player = characters.find(c => c.relation === "The player");
if (player && State.variables.customPlayerName && State.variables.customPlayerName.trim() !== "") {
player.name = State.variables.customPlayerName.trim();
}
// Update brother name
const brother = characters.find(c => c.relation === "brother");
if (brother && State.variables.customBrotherName && State.variables.customBrotherName.trim() !== "") {
brother.name = State.variables.customBrotherName.trim();
}
// Update father name
const father = characters.find(c => c.relation === "father");
if (father && State.variables.customFatherName && State.variables.customFatherName.trim() !== "") {
father.name = State.variables.customFatherName.trim();
}
// Update stepmom name
const stepmom = characters.find(c => c.relation === "stepmom");
if (stepmom && State.variables.customStepmomName && State.variables.customStepmomName.trim() !== "") {
stepmom.name = State.variables.customStepmomName.trim();
}
// Update stepsisters - need to handle multiple stepsisters
const stepsisters = characters.filter(c => c.relation === "stepsister");
if (stepsisters.length >= 2) {
if (State.variables.customStepsister1Name && State.variables.customStepsister1Name.trim() !== "") {
stepsisters[0].name = State.variables.customStepsister1Name.trim();
}
if (State.variables.customStepsister2Name && State.variables.customStepsister2Name.trim() !== "") {
stepsisters[1].name = State.variables.customStepsister2Name.trim();
}
}
// Re-initialize tension levels with new names
for (let i = 0; i < characters.length; i++) {
characters[i].tension = {};
for (let j = 0; j < characters.length; j++) {
if (i !== j) {
characters[i].tension[characters[j].name] = 0;
}
}
}
}
};
<</script>><<nobr>>
<<if $characters and $characters.length gt 0>>
<div id="story-caption">
<h4>Heat Levels</h4>
<div class="sidebar-heat-list">
<<for $i to 0; $i lt $characters.length; $i++>>
<<if $characters[$i].active>>
<div class="sidebar-heat-item">
<span @style="'color: ' + $characters[$i].color + '; font-weight: bold;'">$characters[$i].name</span>
<<if $groupWaiting.includes($i)>>🔥<</if>><<if $characters[$i].hasAnalFlag>>🍑<</if>>
<span class="sidebar-heat-value">$characters[$i].heatLevel</span>
</div>
<</if>>
<</for>>
</div>
<h4 style="margin-top: 20px;">Statistics</h4>
<div class="sidebar-stats">
<div class="sidebar-heat-item">
<span>Max Heat:</span>
<span class="sidebar-heat-value">$maxIndividualHeat</span>
</div>
<div class="sidebar-heat-item">
<span>Average:</span>
<span class="sidebar-heat-value"><<= Math.round($averageHeat * 10) / 10>></span>
</div>
<div class="sidebar-heat-item">
<span>Global Level:</span>
<span class="sidebar-heat-value">$globalHeatLevel</span>
</div>
</div>
</div>
<</if>>
<</nobr>><<nobr>>
/* Player preferences */
<<set $videosMuted to true>>
<<set $videosAutoplay to true>>
<<set $godModeEnabled to false>>
/* Supporter code system */
<<set $supporterUnlocked to false>>
<<set $supporterCodeInput to "">>
<<set $supporterCodeFailed to false>>
/* Initialize custom name variables with defaults */
<<set $customPlayerName to "Jason">>
<<set $customBrotherName to "Marcus">>
<<set $customFatherName to "William">>
<<set $customStepmomName to "Debra">>
<<set $customStepsister1Name to "Jill">>
<<set $customStepsister2Name to "Angie">>
/* Character definitions */
<<set $characters to [
{
name: "Jason",
gender: "male",
relation: "The player",
active: true,
isPlayerControlled: true,
tension: {},
heatLevel: 0,
color: "#4CAF50",
analPartner: null,
hasAnalFlag: false
},
{
name: "Marcus",
gender: "male",
relation: "brother",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#2196F3",
analPartner: null,
hasAnalFlag: false
},
{
name: "William",
gender: "male",
relation: "father",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#FF9800",
analPartner: null,
hasAnalFlag: false
},
{
name: "Debra",
gender: "female",
relation: "stepmom",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#DC143C",
analPartner: null,
hasAnalFlag: false
},
{
name: "Jill",
gender: "female",
relation: "stepsis1",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#FFFFFF",
analPartner: null,
hasAnalFlag: false
},
{
name: "Angie",
gender: "female",
relation: "stepsis2",
active: true,
isPlayerControlled: false,
tension: {},
heatLevel: 0,
color: "#00BCD4",
analPartner: null,
hasAnalFlag: false
}
]>>
/* Initialize tension levels between all characters */
<<for $i to 0; $i lt $characters.length; $i++>>
<<for $j to 0; $j lt $characters.length; $j++>>
<<if $i neq $j>>
<<set $characters[$i].tension[$characters[$j].name] to 0>>
<</if>>
<</for>>
<</for>>
/* Game state variables */
<<set $round to 1>>
<<set $globalHeatLevel to 1>>
<<set $maxIndividualHeat to 0>>
<<set $averageHeat to 0>>
<<set $currentSpinner to 0>>
<<set $currentTarget to 0>>
<<set $gamePhase to "spinning">>
<<set $roundsSinceMCSpun to 0>>
<<set $maxRoundsWithoutMC to 5>>
<<set $groupWaiting to []>>
<<set $groupTarget to -1>>
/* Same-sex interaction templates */
<<set $sameSexInteractions to [
{level: 1, name: "Tell", desc: "Ask them to share a secret or personal story"},
{level: 2, name: "Dance", desc: "Tell them to show the audience some moves"},
{level: 3, name: "Tease", desc: "Tease the others"},
{level: 4, name: "Flash", desc: "Show them some skin"},
{level: 7, name: "Group fun", desc: "Join his next sexual interaction", malesOnly: true},
{level: 5, name: "Masturbate", desc: "Make them pleasure themselves"}
]>>
/* Opposite-sex interaction templates */
<<set $oppositeSexInteractions to [
{level: 1, name: "Kiss", desc: "A simple kiss - it's in the game."},
{level: 3, name: "Grope", desc: "Touch, stroke, squeeze, slap."},
{level: 4, name: "Foreplay", desc: "Touch where it matters", malesOnly: true},
{level: 4, name: "Fingering", desc: "Focus on their pleasure"},
{level: 5, name: "Oral", desc: "Just a taste of what's to come"},
{level: 6, name: "Sex", desc: "Release inhibitions!"},
{level: 7, name: "Anal", desc: "Deep dark fantasies"}
]>>
<</nobr>>
<<script>>
/*
Heat Level Progression System:
- Individual Heat: +1 per interaction for both participants
- Global Heat Levels (based on max individual or average heat):
Level 1: Starting level
Level 2: 4+ max heat OR 3.0+ average (≈4-18 spins)
Level 3: 7+ max heat OR 5.5+ average (≈7-33 spins)
Level 4: 10+ max heat OR 8.0+ average (≈10-48 spins)
Level 5: 13+ max heat OR 11.0+ average (≈13-66 spins)
Level 6: 16+ max heat OR 14.0+ average (≈16-84 spins)
Level 7: 19+ max heat OR 16.0+ average (≈19-96 spins)
Level 8: 22+ max heat (≈22 spins)
Level 9: 25+ max heat (≈25 spins)
Level 10: 28+ max heat (≈28 spins)
With 6 players, approximate spins needed for progression:
- Fast track: Based on max individual heat (one active participant)
- Slow track: Based on average heat (distributed engagement)
*/
window.calculateGlobalHeat = function() {
var totalHeat = 0;
var maxHeat = 0;
var activeCount = 0;
for (var i = 0; i < State.variables.characters.length; i++) {
if (State.variables.characters[i].active) {
var charHeat = State.variables.characters[i].heatLevel;
totalHeat += charHeat;
activeCount++;
if (charHeat > maxHeat) {
maxHeat = charHeat;
}
}
}
State.variables.maxIndividualHeat = maxHeat;
State.variables.averageHeat = activeCount > 0 ? totalHeat / activeCount : 0;
// Global heat increases when someone reaches higher individual heat OR average exceeds higher thresholds
var newGlobalHeat = 1;
if (maxHeat >= 28) {
newGlobalHeat = 10;
} else if (maxHeat >= 25) {
newGlobalHeat = 9;
} else if (maxHeat >= 22) {
newGlobalHeat = 8;
} else if (maxHeat >= 19 || State.variables.averageHeat >= 16.0) {
newGlobalHeat = 7;
} else if (maxHeat >= 16 || State.variables.averageHeat >= 14.0) {
newGlobalHeat = 6;
} else if (maxHeat >= 13 || State.variables.averageHeat >= 11.0) {
newGlobalHeat = 5;
} else if (maxHeat >= 10 || State.variables.averageHeat >= 8.0) {
newGlobalHeat = 4;
} else if (maxHeat >= 7 || State.variables.averageHeat >= 5.5) {
newGlobalHeat = 3;
} else if (maxHeat >= 4 || State.variables.averageHeat >= 3.0) {
newGlobalHeat = 2;
}
var oldGlobalHeat = State.variables.globalHeatLevel;
State.variables.globalHeatLevel = newGlobalHeat;
return newGlobalHeat > oldGlobalHeat;
};
/* Function to get newly unlocked actions at a specific heat level */
window.getNewActionsAtLevel = function(level) {
var newActions = [];
// Same-sex actions unlocked at this level
var sameSexActions = State.variables.sameSexInteractions || [];
for (var i = 0; i < sameSexActions.length; i++) {
if (sameSexActions[i].level === level) {
var action = {
name: sameSexActions[i].name,
desc: sameSexActions[i].desc,
type: "same-sex"
};
if (sameSexActions[i].malesOnly) {
action.restriction = "males only";
}
newActions.push(action);
}
}
// Opposite-sex actions unlocked at this level
var oppositeSexActions = State.variables.oppositeSexInteractions || [];
for (var i = 0; i < oppositeSexActions.length; i++) {
if (oppositeSexActions[i].level === level) {
var action = {
name: oppositeSexActions[i].name,
desc: oppositeSexActions[i].desc,
type: "opposite-sex"
};
if (oppositeSexActions[i].malesOnly) {
action.restriction = "males only";
}
newActions.push(action);
}
}
// Add type indicators for clarity
for (var i = 0; i < newActions.length; i++) {
if (newActions[i].type === "same-sex") {
newActions[i].name = newActions[i].name + " (same-sex)";
} else {
newActions[i].name = newActions[i].name + " (opposite-sex)";
}
}
return newActions;
};
<</script>>[[Settings]]
[[Links]]
[[Credits]]<<nobr>>
<div style="margin-top: 1em; padding: 1em; background-color: rgba(255, 255, 255, 0.3); border-radius: 8px; width: fit-content;">
@@.videoToggle;🔊Videos <<if $videosMuted>>MUTED<<else>>UNMUTED<</if>>@@
<<link "Toggle Video Audio">><<set $videosMuted = !$videosMuted>><<replace ".videoToggle">>🔊Videos <<if $videosMuted>>MUTED<<else>>UNMUTED<</if>><</replace>><</link>>
</div>
<div style="margin-top: 1em; padding: 1em; background-color: rgba(255, 255, 255, 0.3); border-radius: 8px; width: fit-content;">
@@.autoplayToggle;▶️Videos <<if $videosAutoplay>>AUTOPLAY ON<<else>>AUTOPLAY OFF<</if>>@@
<<link "Toggle Video Autoplay">><<set $videosAutoplay = !$videosAutoplay>><<replace ".autoplayToggle">>▶️Videos <<if $videosAutoplay>>AUTOPLAY ON<<else>>AUTOPLAY OFF<</if>><</replace>><</link>>
</div>
<</nobr>>
<<return>>Support me on <a href="https://patreon.com/TimJRebel" target="_blank">[Patreon]</a>.
Check out my other games:
<a href="https://f95zone.to/threads/black-christmas-v1-0-timjrebel.280654/" target="_blank">[Black Christmas]</a>.
<a href="https://f95zone.to/threads/justice-is-black-v0-3-timjrebel.241575/" target="_blank">[Justice is Black]</a>.
<<return>>List of actresses:
<ul class="actress-list">
<li style="margin-bottom: 1.5em; display: flex; align-items: center;">
<img src="img/portraits/stepmom.jpg" style="width: 80px; height: 80px; object-fit: cover; border-radius: 8px; margin-right: 1em; box-shadow: 0 2px 8px rgba(0,0,0,0.3);">
<div>
<strong style="color: #9bb9d4; font-size: 1.1em;">Dee Williams</strong><br>
</div>
</li>
<li style="margin-bottom: 1.5em; display: flex; align-items: center;">
<img src="img/portraits/stepsister1.jpg" style="width: 80px; height: 80px; object-fit: cover; border-radius: 8px; margin-right: 1em; box-shadow: 0 2px 8px rgba(0,0,0,0.3);">
<div>
<strong style="color: #9bb9d4; font-size: 1.1em;">Jillian Janson</strong><br>
</div>
</li>
<li style="margin-bottom: 1.5em; display: flex; align-items: center;">
<img src="img/portraits/stepsister2.jpg" style="width: 80px; height: 80px; object-fit: cover; border-radius: 8px; margin-right: 1em; box-shadow: 0 2px 8px rgba(0,0,0,0.3);">
<div>
<strong style="color: #9bb9d4; font-size: 1.1em;">Angel Smalls</strong><br>
</div>
</li>
</ul>
<<return>><<widget sayit>><<=$args[0].sayIt()>><</widget>>