diff --git a/src/uncategorized/main.tw b/src/uncategorized/main.tw index 28935922ea8fdf877f238432e92ca9dbe47191f9..f8229bf372e2c46f2ffeb96bd74dabb992b842f6 100644 --- a/src/uncategorized/main.tw +++ b/src/uncategorized/main.tw @@ -194,3 +194,6 @@ __''MAIN MENU''__ //[[Summary Options]]// <<if $activeSlave && ($activeSlave.assignment != "please you") && ($activeSlave.assignment != "guard you")>> <br>//<span id="walk"><<include "Walk Past">></span>// <</if>> +<<if ($debugMode == 1)>> + //| [[Show all walk past scenes|Walk Past List]]// +<</if>> diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index b1bcbb4c6976170f60332d7d92c12d0c54532fff..a58e53d3d3e65b646fd7d17f91397b7c0ae2471f 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -3131,6 +3131,7 @@ //If you wish to have vanilla intercourse with $him you must order $him to remove $his chastity belt.// <<elseif _flag > 100>> <<if $familyTesting == 1 && _flag == 110>> + /* No content yet */ <<else>> <span id="walkpast"><<link "Summon them both">><<replace "#walk">><<include $target>><</replace>><</link>></span> <</if>> diff --git a/src/uncategorized/walkPastList.tw b/src/uncategorized/walkPastList.tw new file mode 100644 index 0000000000000000000000000000000000000000..261bac7acbb1cfbf2d636122e75a110bd747fb13 --- /dev/null +++ b/src/uncategorized/walkPastList.tw @@ -0,0 +1,29 @@ +:: Walk Past List [nobr] + +<<set $nextButton = "Back to Main", $nextLink = "Main">> +//For testing purposes only, this page lists or can produce all of the "walk past" scenes. Please note that on this screen, the "summon them both" option will only summon them both for Rival and Relation scenes. Otherwise, it will simply call the active slave.//<br> + +<br> +//<span id="walk">No scene has been selected yet.</span>// +<br> + +<h2>Choose target</h2> +Target: <span id="target">$target</span><br> +<<link "Boobs">><<set $target = "FBoobs">><<replace #target>>$target<</replace>><</link>><br> +<<link "Butt">><<set $target = "FButt">><<replace #target>>$target<</replace>><</link>><br> +<<link "Fondle Butt">><<set $target = "FondleButt">><<replace #target>>$target<</replace>><</link>><br> +<<link "Anus">><<set $target = "FAnus">><<replace #target>>$target<</replace>><</link>><br> +<<link "Vagina">><<set $target = "FVagina">><<replace #target>>$target<</replace>><</link>><br> +<<link "Kiss">><<set $target = "FKiss">><<replace #target>>$target<</replace>><</link>><br> +<<link "Lips">><<set $target = "FLips">><<replace #target>>$target<</replace>><</link>><br> +<<link "Rival">><<set $target = "FRival">><<replace #target>>$target<</replace>><</link>> //(Will only work for "Summon them both" options)//<br> +<<link "Relation">><<set $target = "FRelation">><<replace #target>>$target<</replace>><</link>> //(Will only work for "Summon them both" options)//<br> + +<h2>Walk Past List</h2> +<<for _i = 0; _i < $slaves.length; _i++>> + <<set $activeSlave = $slaves[_i]>> + <<capture $activeSlave>> + //<<include "Walk Past">>// + <</capture>> + <br><br> +<</for>> \ No newline at end of file