From e490141b28271bc5f93fbe7e182979458d81aca2 Mon Sep 17 00:00:00 2001 From: lowercase-donkey <lowercasedonkey@gmail.com> Date: Sun, 19 May 2019 13:44:26 -0400 Subject: [PATCH] Add walkPast list to aid testing --- src/uncategorized/main.tw | 3 +++ src/uncategorized/walkPast.tw | 1 + src/uncategorized/walkPastList.tw | 27 +++++++++++++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 src/uncategorized/walkPastList.tw diff --git a/src/uncategorized/main.tw b/src/uncategorized/main.tw index 28935922ea8..f8229bf372e 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 b1bcbb4c697..8880e550486 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>> + //Calling them up would be incestuous// <<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 00000000000..aaae70df14f --- /dev/null +++ b/src/uncategorized/walkPastList.tw @@ -0,0 +1,27 @@ +:: 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.//<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 "Rival">><<set $target = "FRival">><<replace #target>>$target<</replace>><</link>><br> +<<link "Relation">><<set $target = "FRelation">><<replace #target>>$target<</replace>><</link>> //(Will not work for all slaves)//<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 "Kiss">><<set $target = "FKiss">><<replace #target>>$target<</replace>><</link>><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 -- GitLab