Rope group twins and Cassi ()

* More SlaveTwin

* To cut or not to cut

* SlaveTwin Beta Ready

The SlaveTwin section should be ready for some testing, but the accompanying RopeGroup section still needs a lot of work doing to it.

* Cleanup random selection function

This still uses the previous random number selection method, it's just been cleaned up to make it more readable and to avoid duplication.

As far as I could tell, there was no reason for the `C101_KinbakuClub_Slaves_Random#` variables to be global. So that's been incorperated into the function to keep things cleaner.

* RopeGroup tidied for Alhpa

* Change going to K Club.

* More KC fitting in

* Can leave KC

Changed the door in the club, player can now leave if not in bondage.

* A bit more RopeGroup

* Twins Stage 1

First part of main interaction with either twin.

* upload 14-11-2018

* Update Cassi 1

* Return to dorm added

* RG bug fix

Fixed reference error

* Cassi with rope group release

* Disabled save function in club
This commit is contained in:
wildsj 2019-01-06 19:24:21 +00:00 committed by Ben987
parent 7f76def0fb
commit bbb9e60f51
150 changed files with 2079 additions and 178 deletions
Actor.js
C012_AfterClass/DormExit
C101_KinbakuClub
BlindMansBuff
ClubRoom1
Door
Erica
JennaIntro
Lauren
Outro
RopeGroup
Blindfold.jpgCassiFreedPlayer.jpgComfortView.jpgComforted.jpgExpressionCrying.jpgExpressionDefiant.jpgExpressionMasochist.jpgExpressionSensetive.jpgHeatherCaught.jpgHeatherGone.jpgHeatherReady.jpgHeatherSet.jpgIntro_EN.csvJennaGone.jpgJennaIntervene.jpgPlayerHogtied.jpgPlayerHogtiedGagged.jpgPlugged.jpgPluggedAccept.jpgPluggedHappily.jpgPluggedPanic.jpgPluggingClentch.jpgPlugingStart.jpgReleasedByJenna.jpgRopeGroupTwinFree.pngScript.jsShownPlug.jpgStage_EN.csvSusCas_Cunni.pngSusCas_CunniAnkleHold.pngSusCas_CunniCuffed.pngSusCas_CunniCuffedPressed.pngSusCas_CunniCuffedStruggle.pngSusCas_CunniFinger.pngSusCas_CunniFingerPressed.pngSusCas_CunniPressed.pngSusCas_Done.pngSusCas_DoneBelt.pngSusCas_DoneBelted.pngSusCas_DoneCuffs.pngSusCas_InspectBelt.jpgSusCas_InspectKey.jpgSusCas_KneelDown.pngSusCas_KneelDownCuffs.pngSusCas_LeftHoldingTape.jpgSusCas_RemovingBelt.jpgSusCas_Scissors.pngSusPlr_JustTapeGagged.jpgSusPlr_LookDownDominant.jpgSusPlr_LookDownLeft.jpgSusPlr_LookDownNeutral.jpgSusPlr_LookDownSubmissive.jpgSuspended1.jpgSuspended1BallGag.jpgSuspended1ClothGag.jpgSuspended2.jpgSuspended2BallGag.jpgSuspended2ClothGag.jpgSuspended3.jpgSuspended3BallGag.jpgSuspended3ClothGag.jpgSuspended4.jpgSuspended4BallGag.jpgSuspended4ChastityBelt.jpgSuspended4ClothGag.jpgSuspended5.jpgSuspended5BallGag.jpgSuspended5Cassi1.pngSuspended5ClothGag.jpgSuspended5FrogTie.pngSuspended5LookUp.pngSuspended5Lucy.pngSuspended5Pantieless.jpgSuspended5TapeGag.jpgSuspended6.jpgSuspended7.jpgSuspended8.jpgSuspended8S.jpgSuspendedBreath2.jpgText_EN.csvToBeSuspended.jpg

View file

@ -218,7 +218,7 @@ function ActorSpecificInBondage(SpecificActor) {
} else {
for (var A = 0; A < Actor.length; A++)
if (Actor[A][ActorName] == SpecificActor)
return (ActorSpecificHasInventory(SpecificActor, "Rope") || ActorSpecificHasInventory(SpecificActor, "TwoRopes") || ActorSpecificHasInventory(SpecificActor, "ThreeRopes") || ActorSpecificHasInventory(SpecificActor, "Armbinder") || ActorSpecificHasInventory(SpecificActor, "Cuffs") || ActorSpecificHasInventory(SpecificActor, "Manacles") || ActorSpecificHasInventory(SpecificActor, "BallGag") || ActorSpecificHasInventory(SpecificActor, "TapeGag") || ActorSpecificHasInventory(SpecificActor, "ClothGag"));
return (ActorSpecificHasInventory(SpecificActor, "Rope") || ActorSpecificHasInventory(SpecificActor, "TwoRopes") || ActorSpecificHasInventory(SpecificActor, "ThreeRopes") || ActorSpecificHasInventory(SpecificActor, "Armbinder") || ActorSpecificHasInventory(SpecificActor, "Cuffs") || ActorSpecificHasInventory(SpecificActor, "Manacles") || ActorSpecificHasInventory(SpecificActor, "BallGag") || ActorSpecificHasInventory(SpecificActor, "TapeGag") || ActorSpecificHasInventory(SpecificActor, "ClothGag") || ActorSpecificHasInventory(SpecificActor, "PantieGag") || ActorSpecificHasInventory(SpecificActor, "SockGag"));
}
}
@ -257,7 +257,7 @@ function ActorIsGagged() {
if (CurrentActor == "")
return Common_PlayerGagged;
else
return (ActorHasInventory("BallGag") || ActorHasInventory("TapeGag") || ActorHasInventory("ClothGag"));
return (ActorHasInventory("BallGag") || ActorHasInventory("TapeGag") || ActorHasInventory("ClothGag") || ActorHasInventory("PantieGag") || ActorHasInventory("SockGag"));
}
// Returns true if the actor is chaste (if there's no actor, we return the player status)
@ -281,6 +281,8 @@ function ActorUngag() {
if (ActorHasInventory("BallGag")) { ActorRemoveInventory("BallGag"); PlayerAddInventory("BallGag", 1); }
if (ActorHasInventory("ClothGag")) { ActorRemoveInventory("ClothGag"); PlayerAddInventory("ClothGag", 1); }
if (ActorHasInventory("TapeGag")) ActorRemoveInventory("TapeGag");
if (ActorHasInventory("PantieGag")) { ActorRemoveInventory("PantieGag"); PlayerAddInventory("PantieGag", 1); }
if (ActorHasInventory("SockGag")) { ActorRemoveInventory("SockGag"); PlayerAddInventory("SockGag", 1); }
}
// Remove the blindfold from the actor and return it to the player
@ -337,6 +339,14 @@ function ActorApplyRestrain(RestrainName) {
CurrentTime = CurrentTime + 60000;
}
// Mouth filling before regular gags (only available in the Kinbaku club for now)
if (((RestrainName == "PantieGag") || (RestrainName == "SockGag")) && !(ActorHasInventory("BallGag") || ActorHasInventory("ClothGag") || ActorHasInventory("TapeGag")) && (CurrentChapter == "C101_KinbakuClub")) {
PlayerRemoveInventory(RestrainName, 1);
ActorAddInventory(RestrainName);
CurrentTime = CurrentTime + 60000;
}
// Blindfold (only available in the Kinbaku club for now)
if ((RestrainName == "Blindfold") && (CurrentChapter == "C101_KinbakuClub")) {
PlayerRemoveInventory("Blindfold", 1);
@ -353,6 +363,15 @@ function ActorApplyRestrain(RestrainName) {
} else return;
}
// Anal items (cannot be used if the actor is chaste) (only available in the Kinbaku club for now)
if ((RestrainName == "ChastityBelt") || (RestrainName == "ButtPlug")) {
if (!ActorIsChaste()) {
PlayerRemoveInventory(RestrainName, 1);
ActorAddInventory(RestrainName);
CurrentTime = CurrentTime + 60000;
} else return;
}
// Cuffs key
if (RestrainName == "CuffsKey") {
if (ActorHasInventory("Cuffs")) {
@ -381,15 +400,16 @@ function ActorSpecificHasInventory(QueryActor, QueryInventory) {
}
// Clear all inventory from an actor (expect the egg, chastitybelt and collar)
// Clear all inventory from an actor (expect the egg, plug, chastitybelt and collar)
function ActorSpecificClearInventory(QueryActor, Recover) {
for (var A = 0; A < Actor.length; A++)
if (Actor[A][ActorName] == QueryActor) {
var HadEgg = ActorSpecificHasInventory(QueryActor, "VibratingEgg");
var HadPlug = ActorSpecificHasInventory(QueryActor, "ButtPlug");
var HadCollar = ActorSpecificHasInventory(QueryActor, "Collar");
var HadBelt = ActorSpecificHasInventory(QueryActor, "ChastityBelt");
while (Actor[A][ActorInventory].length > 0) {
if ((Actor[A][ActorInventory][0] != "VibratingEgg") && (Actor[A][ActorInventory][0] != "TwoRopes") && (Actor[A][ActorInventory][0] != "ThreeRopes") && (Actor[A][ActorInventory][0] != "Collar") && (Actor[A][ActorInventory][0] != "ChastityBelt") && (Actor[A][ActorInventory][0] != "TapeGag") && Recover)
if ((Actor[A][ActorInventory][0] != "VibratingEgg") && (Actor[A][ActorInventory][0] != "ButtPlug") && (Actor[A][ActorInventory][0] != "TwoRopes") && (Actor[A][ActorInventory][0] != "ThreeRopes") && (Actor[A][ActorInventory][0] != "Collar") && (Actor[A][ActorInventory][0] != "ChastityBelt") && (Actor[A][ActorInventory][0] != "TapeGag") && Recover)
PlayerAddInventory(Actor[A][ActorInventory][0], 1);
if ((Actor[A][ActorInventory][0] == "ThreeRopes") && Recover)
PlayerAddInventory("Rope", 1);
@ -398,6 +418,7 @@ function ActorSpecificClearInventory(QueryActor, Recover) {
Actor[A][ActorInventory].splice(0, 1);
}
if (HadEgg) Actor[A][ActorInventory].push("VibratingEgg");
if (HadPlug) Actor[A][ActorInventory].push("ButtPlug");
if (HadCollar) Actor[A][ActorInventory].push("Collar");
if (HadBelt) Actor[A][ActorInventory].push("ChastityBelt");
}

View file

@ -30,7 +30,7 @@ function C012_AfterClass_DormExit_Click() {
}
// Chapter 12 After Class - Launch the Kinbaku club chapter if the player isn't restrained, gagged and is wearing school clothes
// Chapter 12 After Class - Launch the Kinbaku club chapter if the player isn't restrained, gagged, is wearing school clothes and the club has not finished.
function C012_AfterClass_DormExit_LaunchKinbaku() {
if (!Common_PlayerRestrained && !Common_PlayerGagged) {
if (Common_PlayerClothed && (Common_PlayerCostume == "")) {

View file

@ -1,5 +1,6 @@
var C101_KinbakuClub_BlindMansBuff_CurrentStage = 0;
var C101_KinbakuClub_BlindMansBuff_PlayerIsCuffed = false;
var C101_KinbakuClub_BlindMansBuff_PlayerIsTied = false;
var C101_KinbakuClub_BlindMansBuff_PlayerCuffCall = false;
var C101_KinbakuClub_BlindMansBuff_PlayerIsGagged = false;
var C101_KinbakuClub_BlindMansBuff_TouchSomebody = false;
@ -16,7 +17,7 @@ var C101_KinbakuClub_BlindMansBuff_PlayerIsFree = true;
// Calculates the scene parameters
function C101_KinbakuClub_BlindMansBuff_CalcParams() {
C101_KinbakuClub_BlindMansBuff_PlayerIsCuffed = PlayerHasLockedInventory("Cuffs");
//if (!PlayerHasLockedInventory("Cuffs")) C101_KinbakuClub_BlindMansBuff_PlayerIsCuffed = false;
C101_KinbakuClub_BlindMansBuff_PlayerIsTied = PlayerHasLockedInventory("Rope");
C101_KinbakuClub_BlindMansBuff_PlayerIsGagged = Common_PlayerGagged;
C101_KinbakuClub_BlindMansBuff_PlayerIsFree = Common_PlayerNotRestrained;
}
@ -243,7 +244,7 @@ function C101_KinbakuClub_BlindMansBuff_UnCuffed() {
// Chapter 101 - BlindMansBuff - Player has their ropes untied
function C101_KinbakuClub_BlindMansBuff_Untie() {
PlayerUnlockInventory("rope");
PlayerReleaseBondage();
C101_KinbakuClub_BlindMansBuff_CalcParams()
}
@ -252,7 +253,7 @@ function C101_KinbakuClub_BlindMansBuff_SlaveCall() {
if (C101_KinbakuClub_BlindMansBuff_EricaHelping) C101_KinbakuClub_BlindMansBuff_CurrentStage == 110;
if (C101_KinbakuClub_BlindMansBuff_GagCall >= 1) {
OverridenIntroText = GetText("Helped");
PlayerUnlockInventory("BallGag");
PlayerUngag();
C101_KinbakuClub_BlindMansBuff_CalcParams()
}
C101_KinbakuClub_BlindMansBuff_GagCall++;

View file

@ -29,12 +29,13 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
40,0,0,,(Try pleading|with them.),,40,0,0,GameOver()
100,0,0,EricaHelping,(Stand there listening|to the commotion.),(Someone taps you on the shoulder.)|Do you need some help there?,110,0,0,
100,0,0,PlayerIsCuffed,"Hey, someone uncuff|me right now.",(Someone unlocks the handcuffs.),100,0,0,UnCuffed()
100,0,0,PlayerIsTied,Can you untie me please.,Ok. (Someone undoes the knots|and you manage to wriggle out of the ropes.),100,0,0,Untie()
100,0,0,PlayerIsTied,Can someone|untie me please.,Ok. (Someone undoes the knots|and you manage to wriggle out of the ropes.),100,0,0,Untie()
100,0,0,PlayerIsGagged,@Mmmmmmp,"(No one responds,|but you hear someone walking towards you.)",100,0,0,SlaveCall()
100,0,0,PlayerIsFree,(Remove the blindfold.),,200,0,0,UnBlindfold()
110,0,0,,Yes could you help me.,Certainly.|(You feel a collar fasten tightly around your neck.),120,0,0,Collared()
110,0,0,PlayerIsFree,No I'm fine.|(Remove the blindfold.),,200,0,0,UnBlindfold()
110,0,0,PlayerIsCuffed,"Yes, uncuff me|right now.",(Someone removes the handcuffs.),100,0,0,UnCuffed()
110,0,0,PlayerIsTied,"Yes, untie me|right now.",Ok. (Someone undoes the knots|and you manage to wriggle out of the ropes.),100,0,0,Untie()
110,0,0,PlayerIsGagged,@Ummh hmm,(You feel a collar fasten tightly around your neck.)|Your mine now.,120,0,0,Collared()
120,0,0,,Hey what are you doing.,,120,0,0,EricaKidnap1()
120,0,0,,"No, please let me go.",,120,0,0,EricaKidnap2()

1 Stage LoveReq SubReq VarReq Interaction Result NextStage LoveMod SubMod Function
29 40 0 0 (Try pleading|with them.) 40 0 0 GameOver()
30 100 0 0 EricaHelping (Stand there listening|to the commotion.) (Someone taps you on the shoulder.)|Do you need some help there? 110 0 0
31 100 0 0 PlayerIsCuffed Hey, someone uncuff|me right now. (Someone unlocks the handcuffs.) 100 0 0 UnCuffed()
32 100 0 0 PlayerIsTied Can you untie me please. Can someone|untie me please. Ok. (Someone undoes the knots|and you manage to wriggle out of the ropes.) 100 0 0 Untie()
33 100 0 0 PlayerIsGagged @Mmmmmmp (No one responds,|but you hear someone walking towards you.) 100 0 0 SlaveCall()
34 100 0 0 PlayerIsFree (Remove the blindfold.) 200 0 0 UnBlindfold()
35 110 0 0 Yes could you help me. Certainly.|(You feel a collar fasten tightly around your neck.) 120 0 0 Collared()
36 110 0 0 PlayerIsFree No I'm fine.|(Remove the blindfold.) 200 0 0 UnBlindfold()
37 110 0 0 PlayerIsCuffed Yes, uncuff me|right now. (Someone removes the handcuffs.) 100 0 0 UnCuffed()
38 110 0 0 PlayerIsTied Yes, untie me|right now. Ok. (Someone undoes the knots|and you manage to wriggle out of the ropes.) 100 0 0 Untie()
39 110 0 0 PlayerIsGagged @Ummh hmm (You feel a collar fasten tightly around your neck.)|Your mine now. 120 0 0 Collared()
40 120 0 0 Hey what are you doing. 120 0 0 EricaKidnap1()
41 120 0 0 No, please let me go. 120 0 0 EricaKidnap2()

Binary file not shown.

After

(image error) Size: 1 KiB

Binary file not shown.

After

(image error) Size: 1 KiB

View file

@ -26,8 +26,14 @@ function C101_KinbakuClub_ClubRoom1_Run() {
// Draw Rope Group
DrawImage(CurrentChapter + "/" + CurrentScreen + "/Amelia.png", 690, 120);
DrawImage(CurrentChapter + "/" + CurrentScreen + "/Charlotte.png", 883, 103);
if (!C101_KinbakuClub_RopeGroup_LeftTwinReleased && !C101_KinbakuClub_RopeGroup_LeftTwinKidnapped) DrawImage(CurrentChapter + "/" + CurrentScreen + "/TwinLeftStart.png", 945, 160);
if (!C101_KinbakuClub_RopeGroup_RightTwinReleased && !C101_KinbakuClub_RopeGroup_RightTwinKidnapped) DrawImage(CurrentChapter + "/" + CurrentScreen + "/TwinRightStart.png", 800, 155);
if (C101_KinbakuClub_RopeGroup_LeftTwinStatus == "StartTied") DrawImage(CurrentChapter + "/" + CurrentScreen + "/TwinLeftStart.png", 945, 160);
if (C101_KinbakuClub_RopeGroup_LeftTwinStatus == "Released" || C101_KinbakuClub_RopeGroup_RightTwinStatus == "Released") DrawImage(CurrentChapter + "/" + CurrentScreen + "/TwinReleased.png", 925, 68);
if (C101_KinbakuClub_RopeGroup_RightTwinStatus == "StartTied") DrawImage(CurrentChapter + "/" + CurrentScreen + "/TwinRightStart.png", 800, 155);
// Draw Save function
//if ((MouseX >= 550) && (MouseX < 650) && (MouseY >= 500) && (MouseY <= 600)) DrawImage(CurrentChapter + "/" + CurrentScreen + "/Save_Active.png", 550, 500);
//else DrawImage(CurrentChapter + "/" + CurrentScreen + "/Save_Inactive.png", 550, 500);
}
// Chapter 101 - Club Room 1 Click
@ -37,8 +43,9 @@ function C101_KinbakuClub_ClubRoom1_Click() {
if ((MouseX >= 15) && (MouseX <= 115) && (MouseY >= 520) && (MouseY <= 580)) SetScene(CurrentChapter, "ClubRoom3");
if ((MouseX >= 1085) && (MouseX <= 1185) && (MouseY >= 520) && (MouseY <= 580)) SetScene(CurrentChapter, "ClubRoom2");
if ((MouseX >= 0) && (MouseX <= 215) && (MouseY >= 45) && (MouseY <= 350)) SetScene(CurrentChapter, "Door");
if ((MouseX >= 235) && (MouseX <= 650) && (MouseY >= 140) && (MouseY <= 510)) SetScene(CurrentChapter, "Lauren");
if ((MouseX >= 235) && (MouseX <= 650) && (MouseY >= 140) && (MouseY <= 499)) SetScene(CurrentChapter, "Lauren");
if ((MouseX >= 690) && (MouseX <= 1190) && (MouseY >= 100) && (MouseY <= 520)) SetScene(CurrentChapter, "RopeGroup");
//if ((MouseX >= 550) && (MouseX < 650) && (MouseY >= 500) && (MouseY <= 600)) SaveMenu(CurrentChapter, "ClubRoom1");
// Checks if the user clicks on any regular item
InventoryClick(GetClickedInventory(), "C101_KinbakuClub", "ClubRoom1");

Binary file not shown.

After

(image error) Size: 111 KiB

View file

@ -10,9 +10,14 @@ var C101_KinbakuClub_Door_NotPlead = true;
function C101_KinbakuClub_Door_Load() {
// Load the scene parameters
LeaveScreen = "ClubRoom1";
ActorLoad("Cassi", "ClubRoom1");
LeaveIcon = "Leave";
LoadInteractions();
// Different stage if gagged
if (PlayerHasLockedInventory("BallGag") || PlayerHasLockedInventory("TapeGag") || PlayerHasLockedInventory("ClothGag")) {
C101_KinbakuClub_Door_CurrentStage = 20;
} else C101_KinbakuClub_Door_CurrentStage = 0;
}
// Chapter 101 - Door Run
@ -25,13 +30,29 @@ function C101_KinbakuClub_Door_Click() {
// Regular and inventory interactions
ClickInteraction(C101_KinbakuClub_Door_CurrentStage);
// Checks if the user clicks on any regular item
InventoryClick(GetClickedInventory(), "C101_KinbakuClub", "Door");
}
// Chapter 101 - Door - Leave the club
function C101_KinbakuClub_Door_LeaveClub() {
CurrentTime = CurrentTime + 290000;
SetScene("C012_AfterClass", "Dorm");
// Chapter 101 - Door Force
function C101_KinbakuClub_Door_Force() {
C101_KinbakuClub_Door_NotForce = false;
}
// Chapter 101 - Door Kick
function C101_KinbakuClub_Door_Kick() {
C101_KinbakuClub_Door_NotKick = false;
}
// Chapter 101 - Door Force
function C101_KinbakuClub_Door_Who() {
C101_KinbakuClub_Door_NotWho = false;
}
// Chapter 101 - Door Force
function C101_KinbakuClub_Door_NeedsRestroom() {
C101_KinbakuClub_Door_NotRestroom = false;
}
// Chapter 101 - Door Force
function C101_KinbakuClub_Door_Plead() {
C101_KinbakuClub_Door_NotPlead = false;
}

View file

@ -1,4 +1,11 @@
Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
0,0,0,!Common_PlayerRestrained,Leave the club and|return to your dorm.,,0,0,0,LeaveClub()
0,0,0,Common_PlayerRestrained,Leave the club.,"(You try to open the door, but cannot|open it with your arms in bondage.)",0,0,0,
0,0,0,Common_PlayerGagged,(Leave the club.),(A girl calls over) Hey where do you think your going?|It's not sensible to walk around college like that.,0,0,0,
0,0,0,,(Open the door.),(The door has been locked shut and won't budge.),10,0,0,
10,0,0,NotForce,(Try forcing the door open.),(Cassi calls over.) The club has a locked door policy|to keep members safe. Jenna let you in earlier.,10,0,0,Force()
10,0,0,NotKick,(Kick the door.),"(Cassi calls over.) Stop that, you're not|getting out before a club rep gets back.",10,0,0,Kick()
10,0,0,NotWho,Who has the door key?,"(Cassi calls over.) Jenna let you in earlier,|but she and the other club reps are out at the moment.",10,0,0,Who()
10,0,0,NotRestroom,But I really need|the Restroom.,(Cassi calls over.) Amateur mistake. You will just|have to hold it in till a club rep gets back.,10,0,-1,NeedsRestroom()
20,0,0,,(Open the door.),(The door has been locked shut and won't budge.),30,0,0,
30,0,0,NotPlead,@plmhfm lmt mm hht.,(Cassi calls over.) The door is kept locked|to protect helpless girls like you.,30,0,-1,Plead()
30,0,0,NotRestroom,@Bht Hm rmhlln nmmd|thm Rmftrhhm.,(Cassi calls over.) Amateur mistake. You will just|have to hold it in till a club rep gets back.,30,0,-1,NeedsRestroom()
30,0,0,NotForce,(Try forcing the door open.),(Cassi calls over.) The club has a locked door policy|to protect the helpless girls like you.,30,0,0,Force()
30,0,0,NotKick,(Kick the door.),"(Cassi calls over.) Stop that, you're not|getting out before a club rep gets back.",30,0,0,Kick()

1 Stage LoveReq SubReq VarReq Interaction Result NextStage LoveMod SubMod Function
2 0 0 0 !Common_PlayerRestrained Leave the club and|return to your dorm. (Open the door.) (The door has been locked shut and won't budge.) 0 10 0 0 LeaveClub()
3 0 10 0 0 Common_PlayerRestrained NotForce Leave the club. (Try forcing the door open.) (You try to open the door, but cannot|open it with your arms in bondage.) (Cassi calls over.) The club has a locked door policy|to keep members safe. Jenna let you in earlier. 0 10 0 0 Force()
4 0 10 0 0 Common_PlayerGagged NotKick (Leave the club.) (Kick the door.) (A girl calls over) Hey where do you think your going?|It's not sensible to walk around college like that. (Cassi calls over.) Stop that, you're not|getting out before a club rep gets back. 0 10 0 0 Kick()
5 10 0 0 NotWho Who has the door key? (Cassi calls over.) Jenna let you in earlier,|but she and the other club reps are out at the moment. 10 0 0 Who()
6 10 0 0 NotRestroom But I really need|the Restroom. (Cassi calls over.) Amateur mistake. You will just|have to hold it in till a club rep gets back. 10 0 -1 NeedsRestroom()
7 20 0 0 (Open the door.) (The door has been locked shut and won't budge.) 30 0 0
8 30 0 0 NotPlead @plmhfm lmt mm hht. (Cassi calls over.) The door is kept locked|to protect helpless girls like you. 30 0 -1 Plead()
9 30 0 0 NotRestroom @Bht Hm rmhlln nmmd|thm Rmftrhhm. (Cassi calls over.) Amateur mistake. You will just|have to hold it in till a club rep gets back. 30 0 -1 NeedsRestroom()
10 30 0 0 NotForce (Try forcing the door open.) (Cassi calls over.) The club has a locked door policy|to protect the helpless girls like you. 30 0 0 Force()
11 30 0 0 NotKick (Kick the door.) (Cassi calls over.) Stop that, you're not|getting out before a club rep gets back. 30 0 0 Kick()

View file

@ -249,9 +249,7 @@ function C101_KinbakuClub_Erica_PlayerSlaved() {
C101_KinbakuClub_Erica_PlayerIsSlave = true;
CurrentTime = CurrentTime + 180000;
PlayerClothes("Underwear");
PlayerUnlockInventory("Cuffs");
PlayerUnlockInventory("BallGag");
PlayerUnlockInventory("TapeGag");
PlayerReleaseBondage();
PlayerLockInventory("Rope");
PlayerLockInventory("ClothGag");
PlayerLockInventory("Collar");
@ -453,7 +451,7 @@ function C101_KinbakuClub_Erica_SkipToTransition() {
// Chapter 101 - Erica - remove players Collar
function C101_KinbakuClub_Erica_PlayerReleased() {
CurrentTime = CurrentTime + 60000;
PlayerUnlockInventory("Collar")
if (!C999_Common_Collar_LockedOn) PlayerUnlockInventory("Collar")
C101_KinbakuClub_Erica_PlayerIsSlave = false;
LeaveIcon = "Leave"
}
@ -462,7 +460,7 @@ function C101_KinbakuClub_Erica_PlayerReleased() {
function C101_KinbakuClub_Erica_PlayerReleasedGag() {
CurrentTime = CurrentTime + 60000;
PlayerLockInventory("BallGag")
PlayerUnlockInventory("Collar")
if (!C999_Common_Collar_LockedOn) PlayerUnlockInventory("Collar")
C101_KinbakuClub_Erica_PlayerIsSlave = false;
LeaveIcon = "Leave"
}

View file

@ -37,6 +37,7 @@ function C101_KinbakuClub_JennaIntro_Load() {
if (C101_KinbakuClub_JennaIntro_CurrentStage == 80) LeaveIcon = "Leave";
else LeaveIcon = "";
GameLogAdd("KinbakuClubInfo");
}
// Chapter 101 - Jenna Run
@ -66,12 +67,15 @@ function C101_KinbakuClub_JennaIntro_ShortCut() {
PlayerAddInventory("BallGag", 4);
PlayerAddInventory("TapeGag", 8);
PlayerAddInventory("ClothGag", 4);
PlayerAddInventory("PantieGag", 4);
PlayerAddInventory("SockGag", 4);
PlayerAddInventory("Collar", 4);
PlayerAddInventory("Crop", 1);
PlayerAddInventory("VibratingEgg", 4);
PlayerAddInventory("ChastityBelt", 4);
PlayerAddInventory("Armbinder", 4);
PlayerAddInventory("Blindfold", 4);
PlayerAddInventory("ButtPlug", 4);
C101_KinbakuClub_JennaIntro_Done()
SetScene(CurrentChapter, "ClubRoom1")
PlayerAddSkill("Arts", 1);

View file

@ -1,10 +1,10 @@
Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
0,0,0,,What is it?,It's about this club and also about Natalie.,10,0,0,
0,0,0,,(Short cut to clubroom|for development only.),,80,0,0,ShortCut()
01234,0,0,,(Short cut to clubroom|for development only.),,80,0,0,ShortCut()
0,0,0,,I already know about the|birds and the bees.,"We'll see about that, I meant the club and also Natalie.",10,-1,0,
0,0,0,,"Don't bother explaining,|it's all pretty obvious.",I'll let you work it out for yourself then.,70,-1,0,SkipExplanation()
5,0,0,,"Hello, what's|happening here?",This is the college's Kinbaku Club.|Your welcome to stay for the evening.,15,0,0,
5,0,0,,(Short cut to clubroom|for development only.),,80,0,0,ShortCut()
5000,0,0,,(Short cut to clubroom|for development only.),,80,0,0,ShortCut()
10,0,0,,Is there an issue|with the club?,"No issue, but I don't think Natalie|explained much about the club to you.",30,0,0,
10,0,0,,"Is Natalie here, I would|like to see here again?","Not at the moment. She lost a bet with|another member, but should be here later.",20,1,0,Asked()
15,0,0,,"Sounds interesting,|yeah I'll stay.",That's great. I'm Jenna.,25,1,0,

1 Stage LoveReq SubReq VarReq Interaction Result NextStage LoveMod SubMod Function
2 0 0 0 What is it? It's about this club and also about Natalie. 10 0 0
3 0 01234 0 0 (Short cut to clubroom|for development only.) 80 0 0 ShortCut()
4 0 0 0 I already know about the|birds and the bees. We'll see about that, I meant the club and also Natalie. 10 -1 0
5 0 0 0 Don't bother explaining,|it's all pretty obvious. I'll let you work it out for yourself then. 70 -1 0 SkipExplanation()
6 5 0 0 Hello, what's|happening here? This is the college's Kinbaku Club.|Your welcome to stay for the evening. 15 0 0
7 5 5000 0 0 (Short cut to clubroom|for development only.) 80 0 0 ShortCut()
8 10 0 0 Is there an issue|with the club? No issue, but I don't think Natalie|explained much about the club to you. 30 0 0
9 10 0 0 Is Natalie here, I would|like to see here again? Not at the moment. She lost a bet with|another member, but should be here later. 20 1 0 Asked()
10 15 0 0 Sounds interesting,|yeah I'll stay. That's great. I'm Jenna. 25 1 0

View file

@ -57,8 +57,8 @@ function C101_KinbakuClub_Lauren_Load() {
// Different stage if player approaches Lauren while tied or cuffed
if (C101_KinbakuClub_Lauren_CurrentStage <= 150){
if (C101_KinbakuClub_Lauren_CurrentStage >= 30) C101_KinbakuClub_Lauren_PreviousStage = C101_KinbakuClub_Lauren_CurrentStage;
if (PlayerHasLockedInventory("Rope")) C101_KinbakuClub_Lauren_CurrentStage = 10;
if (!PlayerHasLockedInventory("Rope") && (C101_KinbakuClub_Lauren_CurrentStage == 10 || C101_KinbakuClub_Lauren_CurrentStage == 15)) C101_KinbakuClub_Lauren_CurrentStage = C101_KinbakuClub_Lauren_PreviousStage;
if (Common_PlayerRestrained) C101_KinbakuClub_Lauren_CurrentStage = 10;
if (!Common_PlayerRestrained && (C101_KinbakuClub_Lauren_CurrentStage == 10 || C101_KinbakuClub_Lauren_CurrentStage == 15)) C101_KinbakuClub_Lauren_CurrentStage = C101_KinbakuClub_Lauren_PreviousStage;
if (C101_KinbakuClub_Lauren_CurrentStage < 50 && PlayerHasLockedInventory("Cuffs")) C101_KinbakuClub_Lauren_CurrentStage = 20;
if (!Common_PlayerRestrained && ((C101_KinbakuClub_Lauren_CurrentStage > 0 && C101_KinbakuClub_Lauren_CurrentStage < 30) || (C101_KinbakuClub_Lauren_CurrentStage == 50 || C101_KinbakuClub_Lauren_CurrentStage == 55))) C101_KinbakuClub_Lauren_CurrentStage = 0;
if (PlayerHasLockedInventory("Cuffs") && (C101_KinbakuClub_Lauren_CurrentStage == 140 || C101_KinbakuClub_Lauren_CurrentStage == 145)) {

View file

@ -99,9 +99,9 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
440,0,0,,A gag would help|you concentrate.,"I don't think it would, but if you insist.",450,0,1,Leave()
440,0,0,,Would you like a gag?,"Not really, but it shouldn't|make this any more difficult.",450,0,0,Leave()
450,0,0,,Do you give up?,"No, give me a little longer.",450,0,0,GiveUpGagged()
450,0,0,,So you like the|feel of satin?,"(You gently draw a finger over a bra cup,|startling and causing her to drop the hair clip.)",460,-1,0,
450,0,0,,"Too slow, times up.|(Release her.)",(You release Lauren and she hastily redresses.),510,-1,1,ReleaseLauren()
450,0,0,,I think I could escape|that before you.,(Nicole interrupts.) There are plenty more|hand and leg cuffs if you want to try.,455,0,0,NoLeave()
450,0,0,!Common_PlayerRestrained,So you like the|feel of satin?,"(You gently draw a finger over a bra cup,|startling and causing her to drop the hair clip.)",460,-1,0,
450,0,0,!Common_PlayerRestrained,"Too slow, times up.|(Release her.)",(You release Lauren and she hastily redresses.),510,-1,1,ReleaseLauren()
450,0,0,!Common_PlayerRestrained,I think I could escape|that before you.,(Nicole interrupts.) There are plenty more|hand and leg cuffs if you want to try.,455,0,0,NoLeave()
450,0,0,LaurenGagged,(Ungag her.),"(You remove her gag.)|Thank you, this was tricky enough already.",450,0,0,UngagLauren()
455,0,0,,I was kidding.,(You turn back to Lauren.),450,0,0,Leave()
455,0,0,,"Yeah okay,|I'll give it a go.","(You remove you uniform and after unlocking her|cuffs, Nicole helps cuff you to another chair.)",490,0,-3,PlayerCuffed()

1 Stage LoveReq SubReq VarReq Interaction Result NextStage LoveMod SubMod Function
99 440 0 0 A gag would help|you concentrate. I don't think it would, but if you insist. 450 0 1 Leave()
100 440 0 0 Would you like a gag? Not really, but it shouldn't|make this any more difficult. 450 0 0 Leave()
101 450 0 0 Do you give up? No, give me a little longer. 450 0 0 GiveUpGagged()
102 450 0 0 !Common_PlayerRestrained So you like the|feel of satin? (You gently draw a finger over a bra cup,|startling and causing her to drop the hair clip.) 460 -1 0
103 450 0 0 !Common_PlayerRestrained Too slow, times up.|(Release her.) (You release Lauren and she hastily redresses.) 510 -1 1 ReleaseLauren()
104 450 0 0 !Common_PlayerRestrained I think I could escape|that before you. (Nicole interrupts.) There are plenty more|hand and leg cuffs if you want to try. 455 0 0 NoLeave()
105 450 0 0 LaurenGagged (Ungag her.) (You remove her gag.)|Thank you, this was tricky enough already. 450 0 0 UngagLauren()
106 455 0 0 I was kidding. (You turn back to Lauren.) 450 0 0 Leave()
107 455 0 0 Yeah okay,|I'll give it a go. (You remove you uniform and after unlocking her|cuffs, Nicole helps cuff you to another chair.) 490 0 -3 PlayerCuffed()

Binary file not shown.

Before

(image error) Size: 65 KiB

Binary file not shown.

After

(image error) Size: 62 KiB

View file

@ -13,18 +13,19 @@ function C101_KinbakuClub_Outro_Run() {
// Paints the background
DrawRect(0, 0, 800, 600, "black");
DrawImage(CurrentChapter + "/" + CurrentScreen + "/Bell.jpg", 800, 0);
DrawImage(CurrentChapter + "/" + CurrentScreen + "/Jenna.jpg", 800, 0);
// Dialog depending on the outro situation
if (TextPhase >= 0) DrawText(GetText("Outro1"), 400, 100, "White");
if (TextPhase >= 1) DrawText(GetText("Outro2"), 400, 200, "White");
if (TextPhase >= 2) DrawText(GetText("Outro3"), 400, 300, "White");
if (TextPhase >= 0) DrawText(GetText("Outro1"), 400, 86, "White");
if (TextPhase >= 1) DrawText(GetText("Outro2"), 400, 171, "White");
if (TextPhase >= 2) DrawText(GetText("Outro3"), 400, 257, "White");
if (TextPhase >= 3) {
if (!C101_KinbakuClub_Outro_Freed) DrawText(GetText("Outro4"), 400, 400, "White");
if (C101_KinbakuClub_Outro_Freed) DrawText(GetText("Outro4Free"), 400, 400, "White");
if (!C101_KinbakuClub_Outro_Freed) DrawText(GetText("Outro4"), 400, 343, "White");
if (C101_KinbakuClub_Outro_Freed) DrawText(GetText("Outro4Free"), 400, 343, "White");
PlayerReleaseBondage()
}
if (TextPhase >= 4) DrawText(GetText("Outro5"), 400, 500, "White");
if (TextPhase >= 4) DrawText(GetText("Outro5"), 400, 429, "White");
if (TextPhase >= 5) DrawText(GetText("Outro6"), 400, 514, "White");
}
// Chapter 101 - Kinbaku Club Click
@ -34,8 +35,9 @@ function C101_KinbakuClub_Outro_Click() {
TextPhase++;
// Jump to lunch on phase 3
//if (TextPhase >= 5) {
if (TextPhase >= 6) {
SetScene("C012_AfterClass", "Dorm");
//SaveMenu("C103_KinbakuCompetition", "Intro");
//}
}
}

View file

@ -5,3 +5,4 @@ Outro3,A lot of the club members leave the room.
Outro4,Jenna comes over to see how you are doing.
Outro4Free,Jenna comes over and frees you.
Outro5,The next chapter will available in another version.
Outro6,You leave the club and return to your dorm.

1 Tag Content
5 Outro4 Jenna comes over to see how you are doing.
6 Outro4Free Jenna comes over and frees you.
7 Outro5 The next chapter will available in another version.
8 Outro6 You leave the club and return to your dorm.

Binary file not shown.

After

(image error) Size: 6.3 KiB

Binary file not shown.

After

(image error) Size: 80 KiB

Binary file not shown.

After

(image error) Size: 63 KiB

Binary file not shown.

After

(image error) Size: 99 KiB

Binary file not shown.

After

(image error) Size: 7.8 KiB

Binary file not shown.

After

(image error) Size: 7.9 KiB

Binary file not shown.

After

(image error) Size: 7.8 KiB

Binary file not shown.

After

(image error) Size: 7.8 KiB

Binary file not shown.

After

(image error) Size: 100 KiB

Binary file not shown.

After

(image error) Size: 3.7 KiB

Binary file not shown.

After

(image error) Size: 86 KiB

Binary file not shown.

After

(image error) Size: 41 KiB

View file

@ -40,13 +40,109 @@ Stage,LoveReq,SubReq,VarReq,IntroText,Image
360,0,0,,,Charlotte.jpg
400,0,0,,,LeftTwin.jpg
410,0,0,,,LeftTwin.jpg
420,0,0,,,LeftTwin.jpg
430,0,0,,,
450,0,0,,,RightTwin.jpg
460,0,0,,,Tickling.jpg
465,0,0,,,TicklingTears.jpg
470,0,0,,,RightTwin.jpg
490,0,0,,,RightTwin.jpg
500,0,0,,,Amelia.jpg
600,0,0,,,RopeGroupBG.jpg
700,0,0,,,RopeGroupBG.jpg
710,0,0,,,RopeGroupBG.jpg
720,0,0,,,RopeGroupBG.jpg
730,0,0,,,RopeGroupBG.jpg
600,0,0,,,TwinsBackground.jpg
610,0,0,,,TwinsBackground.jpg
620,0,0,,,TwinsBackground.jpg
621,0,0,,,TwinsBackground.jpg
622,0,0,,,TwinsBackground.jpg
623,0,0,,,TwinsBackground.jpg
630,0,0,,,TwinsBackground.jpg
631,0,0,,,TwinsBackground.jpg
632,0,0,,,ToBeSuspended.jpg
633,0,0,,,Suspended1.jpg
634,0,0,,,Suspended2.jpg
635,0,0,,,Suspended3.jpg
636,0,0,,,Suspended4.jpg
637,0,0,,,Suspended4.jpg
638,0,0,,,Suspended4.jpg
639,0,0,,,Suspended4.jpg
640,0,0,,,Suspended4.jpg
641,0,0,,,Suspended4.jpg
642,0,0,,,Suspended4.jpg
643,0,0,,,HeatherReady.jpg
644,0,0,,,HeatherReady.jpg
645,0,0,,,HeatherReady.jpg
646,0,0,,,HeatherReady.jpg
647,0,0,,,HeatherReady.jpg
648,0,0,,,HeatherReady.jpg
650,0,0,,,Suspended4.jpg
660,0,0,,,Suspended4.jpg
661,0,0,,,Suspended5.jpg
662,0,0,,,Suspended5.jpg
663,0,0,,,Suspended6.jpg
664,0,0,,,Suspended6.jpg
665,0,0,,,Suspended6.jpg
666,0,0,,,Suspended5.jpg
667,0,0,,,Suspended5.jpg
668,0,0,,,Suspended5.jpg
669,0,0,,,Suspended7.jpg
670,0,0,,,Suspended7.jpg
671,0,0,,,Suspended8.jpg
672,0,0,,,Suspended5.jpg
673,0,0,,,Suspended5.jpg
674,0,0,,,Suspended5.jpg
675,0,0,,,Suspended5.jpg
680,0,0,,,Suspended5.jpg
681,0,0,,,Suspended5.jpg
682,0,0,,,SuspendedBreath2.jpg
685,0,0,,,Suspended5.jpg
686,0,0,,,Suspended5.jpg
687,0,0,,,Suspended5.jpg
688,0,0,,,Suspended5.jpg
689,0,0,,,Suspended5.jpg
690,0,0,,,Suspended5.jpg
691,0,0,,,CassiFreedPlayer.jpg
700,0,0,,Thanks for untying me.,TwinsBackground.jpg
710,0,0,,I've had enough of being tied up.|Can I tie you up now?,TwinsBackground.jpg
720,0,0,,,TwinTyingPlayer.jpg
730,0,0,,,PlayerHogtied.jpg
740,0,0,,,PlayerHogtiedGagged.jpg
750,0,0,,,WhisperingTwin.jpg
760,0,0,,,WhisperingTwin.jpg
765,0,0,,,WhisperingTwin.jpg
770,0,0,,,TwinUnHogtiesPlayer.jpg
800,0,0,,,WhisperingTwin.jpg
810,0,0,,,WhisperingTwin.jpg
811,0,0,,,WhisperingTwin.jpg
812,0,0,,,WhisperingTwin.jpg
813,0,0,,,WhisperingTwin.jpg
814,0,0,,,WhisperingTwin.jpg
820,0,0,,,WhisperingTwin.jpg
821,0,0,,,WhisperingTwin.jpg
822,0,0,,,WhisperingTwin.jpg
823,0,0,,,WhisperingTwin.jpg
824,0,0,,,WhisperingTwin.jpg
830,0,0,,,WhisperingTwin.jpg
831,0,0,,,WhisperingTwin.jpg
832,0,0,,,WhisperingTwin.jpg
833,0,0,,,WhisperingTwin.jpg
840,0,0,,,WhisperingTwin.jpg
841,0,0,,,WhisperingTwin.jpg
842,0,0,,,HeatherCaught.jpg
843,0,0,,,Comforted.jpg
844,0,0,,,ComfortView.jpg
845,0,0,,,ComfortView.jpg
846,0,0,,,ComfortView.jpg
847,0,0,,,ComfortView.jpg
848,0,0,,,ReleasedByJenna.jpg
849,0,0,,,JennaGone.jpg
850,0,0,,,WhisperingTwin.jpg
851,0,0,,,WhisperingTwin.jpg
852,0,0,,,TwinUnHogtiesPlayer.jpg
853,0,0,,,ShownPlug.jpg
854,0,0,,,PlugingStart.jpg
855,0,0,,,PlugingStart.jpg
856,0,0,,,HeatherReady.jpg
857,0,0,,,HeatherReady.jpg
858,0,0,,,HeatherSet.jpg
860,0,0,,,Blindfold.jpg
861,0,0,,,Blindfold.jpg
900,0,0,,Are You ready to do this?,TwinsBackground.jpg

1 Stage LoveReq SubReq VarReq IntroText Image
40 360 0 0 Charlotte.jpg
41 400 0 0 LeftTwin.jpg
42 410 0 0 LeftTwin.jpg
43 420 0 0 LeftTwin.jpg
44 430 0 0
45 450 0 0 RightTwin.jpg
46 460 0 0 Tickling.jpg
47 465 0 0 TicklingTears.jpg
48 470 0 0 RightTwin.jpg
49 490 0 0 RightTwin.jpg
50 500 0 0 Amelia.jpg
51 600 0 0 RopeGroupBG.jpg TwinsBackground.jpg
52 700 610 0 0 RopeGroupBG.jpg TwinsBackground.jpg
53 710 620 0 0 RopeGroupBG.jpg TwinsBackground.jpg
54 720 621 0 0 RopeGroupBG.jpg TwinsBackground.jpg
55 730 622 0 0 RopeGroupBG.jpg TwinsBackground.jpg
56 623 0 0 TwinsBackground.jpg
57 630 0 0 TwinsBackground.jpg
58 631 0 0 TwinsBackground.jpg
59 632 0 0 ToBeSuspended.jpg
60 633 0 0 Suspended1.jpg
61 634 0 0 Suspended2.jpg
62 635 0 0 Suspended3.jpg
63 636 0 0 Suspended4.jpg
64 637 0 0 Suspended4.jpg
65 638 0 0 Suspended4.jpg
66 639 0 0 Suspended4.jpg
67 640 0 0 Suspended4.jpg
68 641 0 0 Suspended4.jpg
69 642 0 0 Suspended4.jpg
70 643 0 0 HeatherReady.jpg
71 644 0 0 HeatherReady.jpg
72 645 0 0 HeatherReady.jpg
73 646 0 0 HeatherReady.jpg
74 647 0 0 HeatherReady.jpg
75 648 0 0 HeatherReady.jpg
76 650 0 0 Suspended4.jpg
77 660 0 0 Suspended4.jpg
78 661 0 0 Suspended5.jpg
79 662 0 0 Suspended5.jpg
80 663 0 0 Suspended6.jpg
81 664 0 0 Suspended6.jpg
82 665 0 0 Suspended6.jpg
83 666 0 0 Suspended5.jpg
84 667 0 0 Suspended5.jpg
85 668 0 0 Suspended5.jpg
86 669 0 0 Suspended7.jpg
87 670 0 0 Suspended7.jpg
88 671 0 0 Suspended8.jpg
89 672 0 0 Suspended5.jpg
90 673 0 0 Suspended5.jpg
91 674 0 0 Suspended5.jpg
92 675 0 0 Suspended5.jpg
93 680 0 0 Suspended5.jpg
94 681 0 0 Suspended5.jpg
95 682 0 0 SuspendedBreath2.jpg
96 685 0 0 Suspended5.jpg
97 686 0 0 Suspended5.jpg
98 687 0 0 Suspended5.jpg
99 688 0 0 Suspended5.jpg
100 689 0 0 Suspended5.jpg
101 690 0 0 Suspended5.jpg
102 691 0 0 CassiFreedPlayer.jpg
103 700 0 0 Thanks for untying me. TwinsBackground.jpg
104 710 0 0 I've had enough of being tied up.|Can I tie you up now? TwinsBackground.jpg
105 720 0 0 TwinTyingPlayer.jpg
106 730 0 0 PlayerHogtied.jpg
107 740 0 0 PlayerHogtiedGagged.jpg
108 750 0 0 WhisperingTwin.jpg
109 760 0 0 WhisperingTwin.jpg
110 765 0 0 WhisperingTwin.jpg
111 770 0 0 TwinUnHogtiesPlayer.jpg
112 800 0 0 WhisperingTwin.jpg
113 810 0 0 WhisperingTwin.jpg
114 811 0 0 WhisperingTwin.jpg
115 812 0 0 WhisperingTwin.jpg
116 813 0 0 WhisperingTwin.jpg
117 814 0 0 WhisperingTwin.jpg
118 820 0 0 WhisperingTwin.jpg
119 821 0 0 WhisperingTwin.jpg
120 822 0 0 WhisperingTwin.jpg
121 823 0 0 WhisperingTwin.jpg
122 824 0 0 WhisperingTwin.jpg
123 830 0 0 WhisperingTwin.jpg
124 831 0 0 WhisperingTwin.jpg
125 832 0 0 WhisperingTwin.jpg
126 833 0 0 WhisperingTwin.jpg
127 840 0 0 WhisperingTwin.jpg
128 841 0 0 WhisperingTwin.jpg
129 842 0 0 HeatherCaught.jpg
130 843 0 0 Comforted.jpg
131 844 0 0 ComfortView.jpg
132 845 0 0 ComfortView.jpg
133 846 0 0 ComfortView.jpg
134 847 0 0 ComfortView.jpg
135 848 0 0 ReleasedByJenna.jpg
136 849 0 0 JennaGone.jpg
137 850 0 0 WhisperingTwin.jpg
138 851 0 0 WhisperingTwin.jpg
139 852 0 0 TwinUnHogtiesPlayer.jpg
140 853 0 0 ShownPlug.jpg
141 854 0 0 PlugingStart.jpg
142 855 0 0 PlugingStart.jpg
143 856 0 0 HeatherReady.jpg
144 857 0 0 HeatherReady.jpg
145 858 0 0 HeatherSet.jpg
146 860 0 0 Blindfold.jpg
147 861 0 0 Blindfold.jpg
148 900 0 0 Are You ready to do this? TwinsBackground.jpg

Binary file not shown.

After

(image error) Size: 36 KiB

Binary file not shown.

After

(image error) Size: 96 KiB

Binary file not shown.

After

(image error) Size: 84 KiB

Binary file not shown.

After

(image error) Size: 93 KiB

Binary file not shown.

After

(image error) Size: 12 KiB

Binary file not shown.

After

(image error) Size: 6.2 KiB

Binary file not shown.

After

(image error) Size: 6.3 KiB

Binary file not shown.

After

(image error) Size: 6.3 KiB

Binary file not shown.

After

(image error) Size: 6.1 KiB

Binary file not shown.

After

(image error) Size: 82 KiB

Binary file not shown.

After

(image error) Size: 69 KiB

Binary file not shown.

After

(image error) Size: 97 KiB

File diff suppressed because it is too large Load diff

Binary file not shown.

After

(image error) Size: 89 KiB

View file

@ -1,56 +1,57 @@
Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
0,0,0,,"Yeah, what's|it too you?","Nothing, we just seem to have a lot of new faces today.",10,0,1,
0,0,0,,Yep. A new start|and new possibilities.,"Great, I'm sure you will find new possibilities her.",10,1,0,
0,0,0,,Yes. This is all|new to me.,We will have to make sure you get a|propper introduction to Kinbaku then.,10,0,-1,
0,0,0,,Yes. This is all|new to me.,We will have to make sure you get a|proper introduction to Kinbaku then.,10,0,-1,
01234,0,0,,(Development only|short cut.),,600,0,0,
10,0,0,,"I'm COMMON_PLAYERNAME,|pleased to meet you miss...","I'm Amelia, this is Charlotte and the twins|Heather and Lucy who are already bound and gagged.",100,1,-1,Introduced()
10,0,0,,Call me COMMON_PLAYERNAME.,You can call me Amelia. This is Charlotte and the twins|Heather and Lucy who are already bound and gagged.,100,0,0,Introduced()
10,0,0,,The name's COMMON_PLAYERNAME.|Be sure to remember it.,"OK. I'm Amelia, this is Charlotte and the twins|Heather and Lucy who are already bound and gagged.",100,0,1,Introduced()
50,0,0,,Can you help me please.,"Certainly, I can check those ropes are secure.|(Amelia makes sure your bondage is very tight.)",50,,,
50,0,0,,Can you help me please?,"Certainly, I can check those ropes are secure.|(Amelia makes sure your bondage is very tight.)",50,,,
50,0,0,,Don't you know what a girl|in bondage looks like?,"I do, but its not everyday a cute girl in|bondage just presents herself to you. ",50,,,
50,0,0,,(Point at your bondage.),Yes it suits you well.,50,,,
50,0,0,PlayerOnlyGagged,(Remove your gag.),"(Amelia garbs you and starts tying you up.)|If your gagged, you shouldn't be able to remove it.",50,,,
50,0,0,PlayerOnlyGagged,(Remove your gag.),"(Amelia garbs you and starts tying you up.)|If youre gagged, you shouldn't be able to remove it.",50,,,PlayerTied()
100,0,0,,(Talk to Amelia.),(What do you want to talk to Amelia about?),200,0,0,LoadAmelia()
100,0,0,,(Talk to Charlotte.),(What do you want to talk to Charlotte about?),300,0,0,LoadCharlotte()
100,0,0,TwoTiedTwins,(Go to the furthest twin.),"She looks up at you, gesturing for you to release her.",400,0,0,LoadLeftTwin()
100,0,0,TwoTiedTwins,(Go to the nearest twin.),"She looks up at you, gesturing for you to release her.",450,0,0,LoadRightTwin()
100,0,0,!TwoTiedTwins,(Go to the remainng twin.),"She looks up at you, gesturing for you to release her.",400,0,0,LoadRemainingTwin()
101,0,0,,(For testing only.|reveal twins.),,100,0,0,RevealTwins()
101,0,0,LucyFree,(Talk to Lucy.),(What do you want to talk to Amelia about?),500,0,0,LoadLucy()
101,0,0,HeatherFree,(Talk to Heather.),"To Do, maybe not?",550,0,0,LoadHeather()
100,0,0,RemainingTwin,(Go to the remaining twin.),"She looks up at you, gesturing for you to release her.",400,0,0,LoadRemainingTwin()
100,0,0,LucyTied,(Go to Lucy.),"She looks up at you, gesturing for you to release her.",430,0,0,LoadLucy()
100,0,0,LucyFree,(Talk to Lucy.),"Hey there, do you want to be tied up again?",600,0,0,LoadLucy()
110,0,0,,"Alright, let me go now.","Fine, just don't get too greedy.|(She lets go of your arm.)",100,0,0,CanLeave()
110,0,0,,"Yes miss, I won't|try that again.","Good, it doesn't pay to get too greedy.|(She lets go of your arm.)",100,0,-1,CanLeave()
110,0,0,,Try stopping me.,(You shake off Amelia's grasp.)|I will if you carry on like that.,100,-1,0,TryStopMe()
120,0,0,,Let go of me.,"No, you need a time out.|(She forces you across the room.)",125,-1,0,
120,0,0,,I'm really sorry.|I won't try it again.,I will make sure of that this time.|(She forces you across the room.),125,0,-1,
120,1,2,,(Break free from|her grasp.),Fine just don't try that again here.,100,-1,0,
125,0,0,,Please let me go.,,125,0,-1,PlayerLockedAway()
125,0,0,,"Okay, just don't|hurt me.",,125,1,0,PlayerLockedAway()
125,0,0,,Get your hand off me.,,125,-1,0,PlayerLockedAway()
125,0,0,,Please let me go.,- This text should not display -,125,0,-1,PlayerLockedAway()
125,0,0,,"Okay, just don't|hurt me.",- This text should not display -,125,1,0,PlayerLockedAway()
125,0,0,,Get your hand off me.,- This text should not display -,125,-1,0,PlayerLockedAway()
200,0,0,Amelia210NotDone,Do you know a|lot about Kinbaku?,I know enough to keep anyone helplessly tied up.,210,0,0,Amelia210Done()
200,0,0,Amelia220NotDone,Have you tied|Charlotte up yet?,She was a nervious wreck when I tried earlier and only|calmed down after I made her help tie up the twins.,220,0,0,Amelia220Done()
200,0,0,Amelia230NotDone,"So which do you prefer,|boxtie or elbows touching?",Both have thier advantages.|I prefer how elbows toching really shows off a sub.,230,0,0,Amelia230Done()
200,0,0,Amelia220NotDone,Have you tied|Charlotte up yet?,She was a nervous wreck when I tried earlier and only|calmed down after I made her help tie up the twins.,220,0,0,Amelia220Done()
200,0,0,Amelia230NotDone,"So which do you prefer,|boxtie or elbows touching?",Both have their advantages.|I prefer how elbows touching really shows off a sub.,230,0,0,Amelia230Done()
200,0,0,,We should try|some Kinbaku now.,Yes we should and now I will tie you up.,260,0,0,
200,0,0,Amelia250NotDone,"Heather and Lucy,|which twin is which?","We're not sure, which is why we tried out different|Kinbaku patterns on both of them and gagged them.",250,0,0,Amelia250Done()
200,0,0,AnyoneKnow,Can anyone here|tell the twins apart?,"Jenna seems to know, but she isn't here to ask.",200,0,0,
200,0,0,UngagTwins,Do the twins need|to be gagged?,Yes. We don't need to listen to Heathers forked tongue.,200,,,
200,0,0,InspectedTwins,Why are they tied|so uncomfortably?,To get Heather to admit which one she in exchange|for a much more comfortable bondage.,255,,,
200,0,0,,(Go back to the|rest of the grounp.),(Amelia is telling Charlotte about Kinbaku.),100,0,0,
200,0,0,,(Go back to the|rest of the group.),(Amelia is telling Charlotte about Kinbaku.),100,0,0,
210,0,0,,Even me?,Even you.,200,0,0,
210,0,0,,So you tie yourself up|helplessly as well?,That's not what I meant.,200,0,1,
210,0,0,HasRopeMastery,"You talk big, but|I'm a master with ropes.","Thats good,|but is that just tying or escaping as well?",215,1,0,
210,0,0,HasRopeMastery,"You talk big, but|I'm a master with ropes.","Thats good,|but is that just tying or escaping as well?",215,1,0,
210,0,0,,Would you tie me up?,"When you're ready, just ask|and I'll make you totally at my mercy.",200,0,-1,
215,0,0,,I've not actually|managed to escape yet.,So you have mastered being submissive.,200,0,-1,
215,0,0,EscapedIsolationMildred,Mildred left me tied|up and I escaped that.,"Impressive, you must have pissed her off to do that|and she doesn't mess then.",200,1,1,
215,0,0,EscapedIsolationYuki,Yuki left me tied up|and I escaped that.,"Impressive, but I wouldn't expect Yuki to just|tie someone up and then leave them.",216,1,0,
215,0,0,,No ropes can hold me.,Thats a bold claim.|Turn around and we'll see about that.,218,0,0,
216,0,0,,I drugged her so she just|tied me up in a basement.,"If you do things like that, maybe we ought|to keep you permenantly restrained.",200,-1,0,
215,0,0,,No ropes can hold me.,Thats a bold claim.|Turn around and we'll see about that.,218,0,0,
216,0,0,,I drugged her so she just|tied me up in a basement.,"If you do things like that, maybe we ought|to keep you permanently restrained.",200,-1,0,
216,0,0,IsolationYukiOrgasm,"She forced me to give|her oral, then gagged me.",Haha that's some serious motivation to escape|or did you want to savour that gag instead?,217,0,0,
216,0,0,IsolationYukiOrgasm,She wanted some control|while I made her cum.,"Wow, fair play.",200,1,1,
217,0,0,,I couldn't get that|gag out fast enough.,I'm not surprised.,200,0,0,
217,0,0,,I though about keeping|the gag in after escaping.,You must be a very obediant teachers pet to|love your mistresses taste that much.,200,0,-2,
217,0,0,,I though about keeping|the gag in after escaping.,You must be a very obedient teachers pet to|love your mistresss taste that much.,200,0,-2,
218,0,0,,Actually I'm not|quite ready yet.,"Most chickens have beaks, not big mouths.",200,-1,-1,
218,0,0,,"Go on then, try your best.|(Turn around for her.)","(Amelia helps remove your uniform, pulls your wrists|behind you and starts tying you up.)",500,1,1,AmeliaTies()
220,0,0,,Who cares if|she is a wreck.,That's a nasty attitude and|it should be fun for both all involved.,200,-1,0,
220,0,0,,What is she doing|here then?,She said she came with a friend and|won't give me a striaght answer.,225,0,0,
220,0,0,,What is she doing|here then?,She said she came with a friend and|won't give me a straight answer.,225,0,0,
220,0,0,,Does she only want|to dom others then?,"I'm not sure, she took a lot of persuading to help me|tie up the twins, but then seemed to enjoy it.",225,0,0,
225,0,0,,Maybe I can talk her|into some ropes.,Sure you can try.,200,1,0,
225,0,0,,Perhaps she would|enjoy practicing on me.,I'm sure she would if you could only get her to start.,200,0,-1,
@ -58,48 +59,50 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
230,0,0,,Elbows touching really|pushes out the breasts.,You could put it like that.,233,,,
231,0,0,,"Hey Charlotte,|which do you prefer.",Well I don't have an opinion on that.,232,0,0,Charlotte()
231,0,0,,Not apart enough to stop|me pulling a crotch rope.,You must really love being tied up.,200,1,-1,
231,0,0,,And it's nicer on the|sub if its long term.,"Sure, but sometimes, like with the twns here,|the discomfort is essential.",200,0,0,
231,0,0,,And it's nicer on the|sub if its long term.,"Sure, but sometimes, like with the twins here,|the discomfort is essential.",200,0,0,
231,0,0,HasLooseArmbinder,I have an armbinder that|will inhibit the hands.,"Cool, have you tried it on yourself?",235,0,0,
232,0,0,,You should try both|and then decide.,No really I don't need an opinion on that.|(You turn back to Amelia.),200,-1,1,Amelia()
232,0,0,,Which method would|you use on me.,If Amelia ties you up then she can decide.|(You turn back to Amelia.),200,0,-1,Amelia()
233,0,0,,You did a good elbow tie|on one of the twins.,"Yeah with elbows touching and hands tied forwards,|her breasts are about the only things she can touch.",234,1,0,
233,0,0,,Some girl's need the|help with their cleevage.,"Maybe, some of us are naturally|more gifted than others.",234,,,
233,0,0,,Some girl's need the|help with their cleavage.,"Maybe, some of us are naturally|more gifted than others.",234,,,
234,0,0,,I'm not sure mine|need the assistance.,"Every little helps,|but you look fine as you are.",200,0,0,
234,0,0,,Your breasts would look|massive if I tied you up.,That isn't going to happen.,200,-1,1,
234,0,0,HasArmbinder,I have an armbinder that|pins the elbows together.,"Cool, have you tried it on yourself?",235,0,0,
234,0,0,HasLooseArmbinder,I have an armbinder that|pins the elbows together.,"Cool, have you tried it on yourself?",235,0,0,
235,0,0,,"I tried, but it's no|good for self bondage.",I will help strap you into it.,236,1,-1,
235,0,0,,No it's only for|my favorite subies.,Some of the girls in this club would love|to be your favorite pet for that.,200,0,0,
235,0,0,,No it's only for|my favorite subies.,Some of the girls in this club would love|to be your favourite pet for that.,200,0,0,
235,0,0,,"No, but you should try it.","Forget it, try that on me and they can|use it on you as an arm splint.",200,-1,0,
236,0,0,,I'm not sure I want|to just yet,"Nonsense, come on you will look|beautifully submissive with it on.",236,0,-1,
236,0,0,,"No, another time.","Okay, your loss.",200,0,0,
236,0,0,,"Would you, thanks.|I was struggling with it.","(Amelia helps you into armbinder, doing up the laces|and straps till your elbows are forced together.)",500,1,-1,PlayerArmbinded()
236,0,0,,Would you? Thanks.|I was struggling with it.,"(Amelia helps you into armbinder, doing up the laces|and straps till your elbows are forced together.)",500,1,-1,PlayerArmbinded()
250,0,0,,Do they both|need restraining?,Lucy is sweet enough when she isn't trying to steal|boyfriends and she knows a lot of Kinbaku techniques.,251,,,
250,0,0,,Do you need to restrain|me like that too?,"Maybe, but we didn't need to restrain Lucy, she could|demonstarte some impressive Kinbaku on you.",251,0,-1,
251,0,0,,And Hether?,She is the evil left twin and impersonates her sister.|They both claim to be Lucy.,252,0,0,
251,0,0,,I already know enough|to restrin anybody.,Lucy could teach you that kinbaku is more than just|restraint. Heather though would teach you about pain.,252,0,1,
250,0,0,,Do you need to restrain|me like that too?,"Maybe, but we didn't need to restrain Lucy, she could|demonstrate some impressive Kinbaku on you.",251,0,-1,
251,0,0,,And Heather?,She is the evil left twin and impersonates her sister.|They both claim to be Lucy.,252,0,0,
251,0,0,,I already know enough|to restrain anybody.,Lucy could teach you that kinbaku is more than just|restraint. Heather though would teach you about pain.,252,0,1,
252,0,0,,If we work out which one is|Lucy we should untie her. ,"Yes, she would teach you a thing or two,|but how could you tell which one she is?",200,0,0,
252,0,0,,Best keep them|both tightly bound.,Probably. If we knew which one was lucy then|she could show us some new techniques.,200,0,1,
255,0,0,,"Cool, lets make their|bondage even tighter.",Its already plenty tight enough.|Any tighter would cut of their blood circulation.,200,,,
252,0,0,,Best keep them|both tightly bound.,Probably. If we knew which one was Lucy then|she could show us some new techniques.,200,0,1,
255,0,0,,"Cool, lets make their|bondage even tighter.",Its already plenty tight enough.|Any tighter would cut of their blood circulation.,200,,,
255,0,0,,Are those bindings|painful enough?,Let me tie you up and you can find out for yourself.,260,0,0,
255,0,0,,"Wow, I doubt I could hold|out long tied like that.","A delicate girl like yourself would talk fast, but|you would still hold the pose for as long as I want.",200,,,
255,0,0,,Is Heather likely|to agree to that?,"It's got to be better than this, but I think she is|hoping Lucy will break first and claim to be Heather.",200,,,
260,0,0,,Yes Miss Amelia.,"(Amelia helps remove your uniform, pulls your wrists|behind you and starts tying you up.)",500,1,-1,AmeliaTies()
260,0,3,,Okay lets see how|skilled you are.,(Amelia quickly secures your|arms with a tight box tie.),500,0,0,AmeliaTiesDom()
260,0,3,,Okay lets see how|skilled you are.,(Amelia quickly secures your|arms with a tight box tie.),500,0,0,AmeliaTiesDom()
260,0,0,,You're not tying me up.,"Fine not now,|but when you ready just call me Miss Amelia.",200,0,0,NotTieMe()
260,0,0,,We could tie up|Charlotte instead.,I don't think she is ready for that yet.|You look far more keen.,200,0,0,TieCharlotte()
260,0,0,,We could tie up|Charlotte instead.,I don't think she is ready for that yet.|You look far keener.,200,0,0,TieCharlotte()
300,0,0,Charlotte310NotDone,So you tied these|girls up super tight?,"No, it's not like that. Amelia tied them|up and told me to help her.",310,0,0,Charlotte310Done()
300,0,0,Charlotte320NotDone,Are you a regular here?,"No no. I'm not a member of this club,|it's just a friend asked me to meet her here.",320,0,0,Charlotte320Done()
300,0,0,Charlotte330NotDone,I bet you prefer|to be tied up.,"I'm really not into bondage, honest.|I'm just waiting here for a friend.",330,0,0,Charlotte330Done()
300,0,0,Charlotte340NotDone,You should be tied up now.,What do you mean? I really wouldn't like that.,340,-1,1,Charlotte340Done()
300,0,0,Charlotte350NotDone,What do you think|the twins need now.,"I dunno, untie them maybe.",350,0,0,Charlotte350Done()
300,0,0,Charlotte350NotDone,What do you think|the twins need now.,"I dont know, untie them maybe.",350,0,0,Charlotte350Done()
300,0,0,Charlotte360NotDone,"You're clutching that bag|tight, what's in there?","Nothing much, just my homework.",360,0,0,Charlotte360Done()
300,0,0,,(Go back to the|rest of the grounp.),(Amelia is telling Charlotte about Kinbaku.),100,0,0,
300,0,0,,Any idea which|twin is which?,"No, but Lucy is pretty honest unlike her sister.|Hmmm, have you heard of the two guards riddle?",300,0,0,
300,0,0,,(Go back to the|rest of the group.),(Amelia is telling Charlotte about Kinbaku.),100,0,0,
310,0,0,,Don't you like tying?,"It's not my thing, Amelia just asked for|some help something, that's all.",311,0,1,
310,0,0,,"Come on, it looks|like you helped a lot.",Maybe little. It's not really my thing.,311,1,0,
311,0,0,,So you prefere|to be tied up.,Seriously? Who would like being tied up?,312,-1,1,
310,0,0,,"Come on, it looks|like you helped a lot.",Maybe a little. It's not really my thing.,311,1,0,
311,0,0,,So you prefer|to be tied up.,Seriously? Who would like being tied up?,312,-1,1,
311,0,0,,What is your thing?,"Oh well it's la... wait, my thing...|Sorry I though I just saw my friend in the corridor.",300,0,0,
312,0,0,,I would.,"Curious, not that I would consider tying you up of course.",300,0,-1,
312,0,0,,Some of the girls here|clearly enjoy it.,Well it doesn't seem right the|way some of them express in it.,300,0,0,
312,0,0,,Someone who doesn't|want to admit it.,I have no idea what your on about.,300,0,1,
312,0,0,,Someone who doesn't|want to admit it.,I have no idea what youre on about.,300,0,1,
320,0,0,,"Oh really, you look|quite settled here.","Well, um it's only a college club.|There's nothing wrong with that.",300,0,0,
320,0,0,,So who is this|friend of yours?,Oh she's not here yet.,321,0,0,
321,0,0,,Maybe I'm the friend|you're waiting for.,"Well we hardly know each other,|but we could be friends I suppose.",322,1,0,
@ -108,60 +111,449 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
322,0,0,,Friends with benefits?,I'm not sure what you mean?,323,0,0,
323,0,0,,It's just we always help|each other when in need.,"Sure, a friend in need is a friend indeed.",300,1,0,
323,0,0,,"Come on, there is more to|enjoy than just the ropes.",I'm really not sure what you mean.|Anyway was there anything else?,300,-1,1,
330,0,0,,To do.,,300,,,
330,0,0,,To do.,- To do -,300,,,
340,0,0,,You don't sound certain.,"No really, I'm not into this kind of thing.",300,0,0,
340,0,0,,"Oh, the lady doth|protest too much.","No no, wait.. what.. I...|Please don't tie me up.",300,0,1,
350,0,0,,A good spanking should|sort them apart.,"That's just cruel, they seem to be|in a lot of discomfort as it is.",300,-1,0,
350,0,0,,What about stripping them?,I'm not sure what you're trying to achive|and I'm not interested in their predicament.,300,0,0,
350,0,0,,What about stripping them?,I'm not sure what you're trying to achieve|and I'm not interested in their predicament.,300,0,0,
360,0,0,,Oh okay. It's not like a|dog will eat it here.,A dog might find it rather chewy.,300,0,0,
360,0,0,,Come on you can tell me.,I told you its just boring homework.,300,-1,0,
360,0,0,,I could help|you with that.,"No no, I will manage just fine on my own.",300,0,1,
400,0,0,,I wish I could be tied|tightly like that.,(Amelia says.) We could make that wish come true.,400,,,
400,0,0,,I think we should keep|you like that all night.,(The girl shakes her head and graons painfully.),400,,,
400,0,0,,I think we should keep|you like that all night.,(The girl shakes her head and groans painfully.),400,,,
400,0,0,,That's an innovative|rope tie.,"(Amelia says.) Yes Lucy demonstrated it on Natalie|last week. Not classic Kinbaku, put pretty painful.",400,,,
400,0,0,,(Interrogate her.),,410,,,
400,0,0,Kidnapper,(Kidnap her.),,400,,,Kidnap()
401,0,0,,(Release her.),(You release her). Thank you.|I'm sick of Heather masquerading as me. I'm lucy.,700,,,ReleaseTwin()
400,0,0,,(Release her.),To do.,400,,,
400,0,0,,(Go back to the|rest of the grounp.),(Amelia was telling Charlotte about Kinbaku.),100,0,0,
400,0,0,,(Interrogate her.),(There must be a way to work out which twin she is.),410,,,
400,0,0,Kidnapper,(Kidnap her.),- This text should not display -,400,,,Kidnap()
400,0,0,,(Release her.),(Amelia speaks up as you reach for a knot.)|Are you sure that is Lucy?,420,0,0,
400,0,0,,(Go back to the|rest of the group.),(Amelia was telling Charlotte about Kinbaku.),100,0,0,
410,0,0,,Are you Lucy?,(She nods her head.),410,,,
410,0,0,,Are you Heather?,(She shakes her head.),410,,,
410,0,0,,Is your sister Lucy?,(She shakes her head.),410,,,
410,0,0,,Would your sister|claim to be Lucy?,,410,,,WouldYourSister()
410,0,0,,You've been a naughty girl|and should be punished.,"(She shakes and pleads. Charlotte speaks up.)|Leave her allown, you're upsetting her.",410,,,Naughty()
410,0,0,,I think you should be|tied up even tighter.,(She whimpers and shakes her head.|She is already aching from her arms tied like that.),410,,,Tighter()
410,0,0,,Would your sister|claim to be Lucy?,- This text should not display -,410,,,WouldYourSister()
410,0,0,,You've been a naughty girl|and should be punished.,"(She shakes and pleads. Charlotte speaks up.)|Leave her alone, you're upsetting her.",410,,,NaughtyLeft()
410,0,0,,I think you should be|tied up even tighter.,(She whimpers and shakes her head.|She is already aching from her arms tied like that.),410,,,TighterLeft()
410,0,0,,(Reconsider your|options.),(What do you do now?),400,,,
410,0,0,,(Go back to the|rest of the grounp.),(Amelia was telling Charlotte about Kinbaku.),100,0,0,
410,0,0,,(Go back to the|rest of the group.),(Amelia was telling Charlotte about Kinbaku.),100,0,0,
420,0,0,,"Yes, I'm sure|which one this is.",(You release her). Thank you.|I'm sick of Heather masquerading as me. I'm Lucy.,400,0,0,ReleaseTwin()
420,0,0,,"No, I'm not sure.",(You leave her tied up and reconsider your options.),400,0,0,
430,0,0,Kidnapper,(Kidnap her.),- This text should not display -,430,0,0,Kidnap()
430,0,0,,(Release her.),(You release her). Thank you.|I'm sick of Heather masquerading as me. I'm Lucy.,600,0,0,ReleaseLucy()
430,0,0,,Should I untie you now?,Hntnm mm hlrmhdn. Hm'vm ght rmhlln bhd grhmp.|(Untie me already. I've got really bad cramp.),430,0,0,
430,0,0,,Do you want to stay like|that or join your sister?,Thht'f nht fhnnn. Plmhfm hntnm mm.|(That's not funny. Please untie me.),430,0,0,JoinSister()
430,0,0,,(Go back to the|rest of the group.),(Amelia was telling Charlotte about Kinbaku.),100,0,0,
450,0,0,,You're lucky to be|tied so tightly.,(Amelia says.) You could be just as lucky.,450,,,
450,0,0,,(Tickle her.),(You pin her by sitting on her lap and start tickling|the exposed armpit. She giggles helplessly.),460,,,
450,0,0,,Thats an intriguing rope tie.,(Amelia says.) Yes Lucy showed us that a while ago.|Asymmetric tying is supposedly common with Kinbaku.,450,,,
450,0,0,,(Interrogate her.),,470,,,
450,0,0,Kidnapper,(Kidnap her.),,450,,,Kidnap()
451,0,0,,(Release her.),(You release her). Thank you.|I'm sick of Heather masquerading as me. I'm lucy.,700,,,ReleaseTwin()
450,0,0,,(Release her.),To do.,450,,,
450,0,0,,(Go back to the|rest of the grounp.),(Amelia was telling Charlotte about Kinbaku.),100,0,0,
450,0,0,,Thats an intriguing rope tie.,(Amelia says.) Yes Lucy showed us that a while ago.|Asymmetric tying is supposedly common with Kinbaku.,450,,,
450,0,0,,(Interrogate her.),(There must be a way to work out which twin she is.),470,,,
450,0,0,Kidnapper,(Kidnap her.),- This text should not display -,450,,,Kidnap()
450,0,0,,(Release her.),(Amelia speaks up as you reach for a knot.)|Are you sure that is Lucy?,490,0,0,
450,0,0,,(Go back to the|rest of the group.),(Amelia was telling Charlotte about Kinbaku.),100,0,0,
460,0,0,,(Stop tickling her.),"(You stand up, letting her recover.)",450,,,
460,0,0,,(Keep tickling her.),"(As you you tickle her more intensly she breaks down|in tears of laughter, pleading for you to stop.)",465,,,
460,0,0,,(Keep tickling her.),"(As you tickle her more intensely she breaks down|in tears of laughter, pleading for you to stop.)",465,,,
465,0,0,,Are you Heather?,"(She reluctantly nods her head.) nmf mnff.|(You stand up, letting her recover.)",450,,,
465,0,0,,(Stop tickling her.),"(You stand up, letting her recover.)",450,,,
465,0,0,,(Keep tickling her.),"(Charlotte tries to interrupt you.)|That's enough, you're upsetting her now.",465,0,0,CharlotteDislike()
470,0,0,,Are you Lucy?,(She nods her head.),470,,,
470,0,0,,Are you Heather?,(She shakes her head.),470,,,
470,0,0,,Is your sister Lucy?,(She shakes her head.),470,,,
470,0,0,,Would your sister|claim to be Lucy?,,470,,,WouldYourSister()
470,0,0,,You've been a naughty girl|and should be punished.,"(She shakes and pleads. Charlotte speaks up.)|Leave her allown, you're upsetting her.",470,,,Naughty()
470,0,0,,I think you should be|tied up even tighter.,(She whimpers and shakes her head.|She is already aching from her arms tied like that.),470,,,Tighter()
470,0,0,,Would your sister|claim to be Lucy?,- This text should not display -,470,,,WouldYourSister()
470,0,0,,You've been a naughty girl|and should be punished.,"(She shakes and pleads. Charlotte speaks up.)|Leave her alone, you're upsetting her.",470,,,NaughtyRight()
470,0,0,,I think you should be|tied up even tighter.,(She whimpers and shakes her head.|She is already aching from her arms tied like that.),470,,,TighterRight()
470,0,0,,(Reconsider your|options.),(What do you do now?),450,,,
470,0,0,,(Go back to the|rest of the grounp.),(Amelia was telling Charlotte about Kinbaku.),100,,,
500,0,0,,To Do.,To do.,500,,,
600,0,0,,Can I tie you up now.,,,,,
600,0,0,,Can you tie me up again plaese.,,,1,-1,
600,0,0,,(Go back to the|rest of the grounp.),(Amelia is telling Charlotte about Kinbaku.),100,0,0,
700,0,0,,"So Lucy, shall we tie|up your captors now.","That is easier said than done with Amelia. I know a lot|of Kinbaku, would like to be tied up instead?",710,1,1,
700,0,0,,You must be aching|after that.,"Yes, I need to stretch my arms. Can I tie you up now to work some life back into them?",710,1,0,
710,0,0,,"No, you're not|tying me up.","Aww please, I have an neat idea I want to try.",710,0,0,
470,0,0,,(Go back to the|rest of the group.),(Amelia was telling Charlotte about Kinbaku.),100,,,
490,0,0,,"Yes, I'm sure|which one this is.",(You release her). Thank you.|I'm sick of Heather masquerading as me. I'm Lucy.,450,0,0,ReleaseTwin()
490,0,0,,"No, I'm not sure.",(You leave her tied up and reconsider your options.),450,0,0,
500,0,0,,To Do.,- To do -,500,,,
600,0,0,,Can I tie you up now?,Sorry I've had enough for one day and could do with|stretching my arms. Can I practice kinbaku on you?,600,0,0,
600,0,0,,Would you tie|me up please.,"Great. Hmmm, shall we keep this simple or would|you like to experience something more advanced?",620,0,0,LucyTieMe()
600,0,0,ATwinStillTied,We should practice|more Kinbaku on Heather.,"Hmm, that is tempting.",600,0,0,
600,0,0,ATwinStillTied,Do you mind if I|kidnap your sister?,"You can take her, as long as you don't let her go.",610,0,0,
600,0,0,,(Go back to the|rest of the group.),(Amelia is telling Charlotte about Kinbaku.),100,0,0,
610,0,0,Kidnapper,I have just the|thing for her.,- This text should not display -,600,0,0,Kidnap()
610,0,0,!Kidnapper,I'm not sure I can|guarantee that.,I had better keep her then. We don't want|her missing out on a play date with Jenna.,600,0,0,
610,0,0,,Do we really need to|keep her restrained?,Yes. I don't want to be mistaken again and|suffer Jenna's wrath instead of her.,600,0,0,
620,0,0,,Actually maybe|not right now.,Suit yourself. Just ask when you are ready.,600,0,0,
620,0,0,,Just a simple tie|would be nice.,Okay then. (She soon has your arms tightly|secured behind your back.) How do you like that?,621,1,0,PlayerTied()
620,0,0,,What did you have in mind?,Have you tried Tsuri Kinbaku before?,630,0,0,
621,0,0,,"Hmm, the same|old arm bondage.",It's tried and tested. I doubt you will get|out of that without help. Have fun now.,622,0,0,CanLeave()
621,0,0,,Thanks.,You're welcome.|Have fun now.,622,1,0,CanLeave()
621,0,0,,"Umm, it's a bit too tight.","Nonsense, your circulation is fine and we wouldn't|want you just slipping out of it. Have fun now.",622,0,-1,CanLeave()
621,0,0,,"Not bad, but|could be better.",You try restraining someone with cramp in your arms.|See if you can escape that.,622,-1,1,CanLeave()
622,0,0,,(Try struggling in|this bondage.),It's nice to see someone demonstrated how good|your rope work is and how helpless they are.,622,0,0,StruggleForLucy()
622,0,0,,You can untie me now.,"Ohh agh. Sorry, I think my arms are cramping up again.",622,0,0,WillLucyUntie()
622,0,0,Common_PlayerGagged,@Nhh ghn hntnm mm nhw.|(You can untie me now.),"Sorry, I can't make out what you're trying to say.",622,0,0,
622,0,0,,(Try escaping|the rope tie.),(There isn't any slack in the ropes and there doesn't|even seem to be a knot. Lucy smiles as you try.),622,0,0,StruggleForLucy()
622,0,0,,Could we try|something else?,"Ohh yes, I know just the thing.|(She guides you towards a corner of the room.)",632,1,0,
622,0,0,Common_PlayerGagged,(Look at Lucy expectantly.),What is it; do you want to try some more Kinbaku?,623,0,0,
622,0,0,,So do you get|tied up often?,I think thats enough chit chat.|(She takes some cloths and gags you.),622,0,0,PlayerClothGag()
623,0,0,,(Nod your head.),Oh goodie. Come here.|(She excitedly escorts you to a corner of the room.),632,1,0,
623,0,0,,(Shake your head.),"Aw, well I suggest you go and try someone else then.",622,0,0,
630,0,0,,"No, what is that?",It's Kinbaku with you suspended. First you need|a harness. (She ties up your arms and chest.),631,0,0,PlayerTied()
630,0,0,,"Yes, I think.",That's a start. Let's get you ready to be suspended.|(She ties up your arms and chest.),631,0,0,PlayerTied()
630,0,0,,Actually maybe|not this time.,"Nonsense, you really should try being suspended.|(She starts tying up your arms and chest.)",631,0,0,WillLucyTie()
631,0,0,,Are you sure|about this?,Of course I am. You won't be the first girl I've hung.|(She pushes you towards a corner of the room.),632,0,-1,
631,0,0,,Hurry up. I can't|wait to try this.,"Yes, I'm going as quickly as I can.|(She takes you towards a corner of the room.)",632,1,1,
631,0,0,,How many times|have you done this?,"I'm not sure, too many to bother counting.|(She takes you towards a corner of the room.)",632,0,0,
632,0,0,,Why are you pushing|me over here?,Because there is a suspension ring already setup|in this corner. (She starts tying you to it.),633,0,0,TyingTime()
632,0,0,,(Follow her direction.),Thats it. Keep stand under this ring now.|(She starts tying you to it.),633,0,0,TyingTime()
633,0,0,,That ring is|strong enough?,Of course it is. Each anchor in the ceiling is|rated to hold at least two girls each.,634,0,-1,TyingTime()
633,0,0,,What are you doing?,'Tachi tsuri' is tied to stand up. Now tying|one leg up turns that into 'Kataashi age tsuri',634,1,0,TyingTime()
633,0,0,,(Watch quietly.),'Tachi tsuri' is tied to stand up. Now tying|one leg up turns that into 'Kataashi age tsuri',634,0,0,TyingTime()
633,0,0,,(Pull away|from Lucy.),"(The rope from the ceiling stops you, while Lucy hoists|one of your legs up, leaving you standing precariously.)",634,0,0,TyingTime()
634,0,0,,You make that|look too easy.,"Yep, I use the ropes and ring like a pulley|hoist to manipulate you however I want to.",635,1,0,TyingTime()
634,0,0,,(Try struggling.),"(She quickly ties off the ropes and starts on the|next leg.) Hold still a minuet, I won't be long.",635,0,-1,TyingTime()
634,0,0,,(Watch quietly.),"(Humming quietly while she works, Lucy secures your|raised leg and starts tying rope to the other leg.)",635,0,0,TyingTime()
635,0,0,,I think this is|already enough.,"No point stopping now. (She hoists your other|leg up, leaving you dangling in mid air.)",636,0,-1,TyingTime()
635,0,0,Common_PlayerGagged,@Hm thnng thnf Hmf|hlrmhdn mnhhgh.,"No point stopping now. (She hoists your other|leg up, leaving you dangling in mid air.)",636,0,-1,TyingTime()
635,0,0,,You're going to do|the same to that leg?,"Yes. I could leave you partially suspended, but I|fancy suspending you fully. 'M ji kaikyaku tsuri' style.",636,0,0,TyingTime()
635,0,0,,You're not hanging|about with that rope.,"Nope, that is for you to do. (She hoists your other|leg up, leaving you dangling in mid air.)",636,1,0,TyingTime()
635,0,0,,(Watch quietly.),"(Humming quietly, Lucy hoists your other|leg up, leaving you dangling in mid air.)",636,0,0,TyingTime()
636,0,0,,Have you finished?,"I think so. (She slowly spins you all the way round,|checking and tweaking her rope work.)",638,0,0,Wait()
636,0,0,,"Errr, could you|rearrange my skirt please?","Sorry, this method can leave|bound person very exposed.",638,0,-1,Wait()
636,0,0,,(Try to free|you arms.),"Careful there. If you did manage to untie yourself,|you would probably flop back and crack your head.",638,0,0,Wait()
636,0,0,,(Struggle desperately.),"Haha. I like to see a spirited damsel,|even if their struggles are futile.",638,1,-1,Wait()
636,0,0,,This is fun.,So you like being the damsel then? We should|dress you up as a princess before tying you up.,637,1,0,Wait()
637,0,0,,Err no thanks.,"Suit yourself, but submissive members tend to be|used as models for interclub displays and dioramas.",638,0,0,
637,0,0,,Ohh would you please.,"Not now, but sometimes we do bondage displays and|dioramas. You could be a model in one.",638,1,-1,
638,0,0,,So what do we do now you|have me all strung up?,Were you paying attention to how|I tied you and learnt something?,639,0,0,
638,0,0,Common_PlayerGagged,(Look curiously to Lucy.),Were you paying attention to how|I tied you and learnt something?,639,0,0,
639,0,0,,Yes it was fascinating.,"Good, you can learn a lot just watching others and|there is nothing like experiencing it for yourself.",640,1,0,LearntRopeSkill()
639,0,0,,(Nod your head.),"Good, you can learn a lot just watching others and|there is nothing like experiencing it for yourself.",640,1,0,LearntRopeSkill()
639,0,0,,"Not really, I kind|of space out there.","Honestly, there is no helping some people.|You're as hopeless as Chloe.",640,-1,0,
639,0,0,,(Shake your head.),"Honestly, there is no helping some people.|You're as hopeless as Chloe.",640,-1,0,
640,0,0,,It would be a shame not to|really enjoy this moment.,"Wow, how horny are you! You want some relief?",660,0,0,
640,0,0,,(Moan alluringly.),You really are a horny girl. Do you want some relief?,660,0,0,
640,0,0,,Will you be my mistress|and keep tying me up?,Sorry I'm not into that whole mistress thing.|Although tying you up isn't a problem.,640,0,0,
640,0,0,,Can you untie me now?,"I could, but that rope work was too much|effort to just release you so soon.",640,0,0,
640,1,-1,,"Pretty please, untie|me Miss Lucy.",Seeing as you ask so nicely.|(She carefully releases you from bondage.),643,1,0,PlayerReleased()
640,0,0,Common_PlayerGagged,(Whimper and try to|spit out your gag.),"Awww, you poor thing. Let me help you with that.|(She removes your gag.)",641,0,0,PlayerWhimperLucy()
640,0,0,Common_PlayerGagged,@Bhnhnh.,"What? Oh, I am being delicate with you.|Maybe you have jaw ache? (She removes your gag.)",641,0,-1,PlayerBhnhnhLucy()
640,0,0,,Banana.,What's the matter?|You asked to be tied up and I am being gentle with you.,642,0,0,
6400,0,0,,Can I ask you something?,Sure. It's not like your going anywhere.,650,0,0,
641,0,0,,Thank you Miss Lucy.,"You have such as sweet mouth,|it's a shame you were gagged.",640,1,-1,
641,0,0,,Thanks.,Thats okay.,640,0,0,
641,0,0,,About bloody time.,Well if that is all you have to say! (She Forces a|large ball gag in your mouth and buckles it tight.),640,-2,0,RudeToLucy()
642,0,0,,I know but this is far|more than I expected.,"Oh, that's fine. You should be careful if you are|that delicate in this club. (She releases you.)",643,0,-1,PlayerReleased()
642,0,0,,"It's a safe word,|what are you playing it?","Oh my, I'm sorry, really sorry. I didn't mean to|get carried away with this. (She releases you.)",643,0,2,PlayerReleased()
642,0,0,,Stop messing about and|untie me you dumb blonde.,You know cows can't speak! (She forces a large|ball gag in your mouth and buckles it tight.),640,-2,0,RudeToLucy()
642,0,0,,"It's okay. I just got a|bit nervous, that's all. ",That's fine.|I won't do any more unless you ask me to.,640,0,0,
643,0,0,,That was fun.|Can we do some more?,"That's enough suspension for now, but no reason you|can't be kept tied up. (She starts binding you.)",644,1,-1,PlayerTied()
643,0,0,,That was fun.|Can I try that on you?,"I'm glad you enjoyed it, but there is no way I'm|letting myself get tied up again at the moment.",647,1,0,
643,0,0,,Right now it's your turn.,"What? No, please NO!|I don't like being tied up at the best of times.",647,-1,1,
643,0,0,,Is that all?,For now yes. Come and see me later if you|want to try suspending someone. (She leaves you.),649,0,0,LucyPromise()
644,0,0,,Don't forget my big mouth.,How could I? (She packs your mouth|full with a cloth gag.) How's that?,645,0,-1,PlayerClothGag()
644,0,0,,This is great.,You are really into this! Hows that?,646,1,0,
644,0,0,,"What, just another|boring box tie?",It's good enough to keep you out of or in trouble.|A cloth gag will deal with any criticisms.,645,-1,0,PlayerClothGag()
645,0,0,,@Thm ghg fmmmf|mffmgtnvm.,"Yes, reduced nicely to no more|than incoherent mumbling.",646,1,0,
645,0,0,,(Stay quiet.),Looks like you know how to behave when gagged.,646,0,-1,
646,0,0,,(Struggle playfully.),"Good, have fun. Come and see me later if you|want to try suspending someone. (She leaves you.)",649,1,-1,LucyPromise()
646,0,0,,Thats fine.,"Good, have fun. Come and see me later if you|want to try suspending someone. (She leaves you.)",649,0,0,LucyPromise()
646,0,0,,(Whimper and beg.),You need to find a play mate. See me later if you|want to try suspending someone. (She leaves you.),649,0,-1,LucyPromise()
646,0,0,,(Look bored.),You need to find a play mate. See me later if you|want to try suspending someone. (She leaves you.),649,0,0,LucyPromise()
647,1,0,,"Awww please,|do it for a friend?","It's nice of you to think of me like that, but my|arms really are still aching from what Amelia did. ",648,1,0,
647,0,1,,Don't disobey me.,"I said no, leave me alone. (She leaves you.)",649,-1,1,ActorLeftAndCanLeave()
647,0,0,,Fine then.,Thanks for understanding. Was there anything else?,648,0,0,
648,0,0,,Can we do some more?,"That's enough suspension for now, but no reason you|can't be kept tied up. (She starts binding you.)",644,1,-1,PlayerTied()
648,0,0,,I suppose not.,No need to be so gloomy. See me later if you|want to try suspending someone. (She leaves you.),649,0,0,LucyPromise()
650,,,,@To Do.,- To do -,640,,,
660,0,0,,Oh please! I can't even rub|against a desk like this.,Sorry I'm not a lesbian|or into pleasuring helpless girls.,640,0,0,FriendOfAFriend()
660,0,0,,(Nod eagerliy.),Sorry I'm not a lesbian|or into pleasuring helpless girls.,640,0,0,FriendOfAFriend()
660,0,0,,Just a gag would be nice.,"Oh, in that case I can help restrain your voice.|(She straps a gag on you.)",640,0,-1,PlayerBallGagged()
660,0,0,,"No, errr... It's not like that.","It's okay, bondage does seem confuse some people.",640,1,-1,
660,0,0,,(Blush and avoid her gaze.),"It's okay, bondage does seem confuse some people.",640,0,-1,
661,0,0,,(Struggle in the ropes.),"(You buck and writhe, but the firm|embrace of the ropes holds you captive.)",661,0,0,WaitingForFriend()
661,0,0,,(Hang quietly.),(You wait as patiently as you can while the pressure|of the ropes gradually bite into you arms and chest.,661,0,0,WaitingForFriend()
661,0,0,,(Try escaping.),"(You wriggle and test the bonds, but the suspension|pulls all slack out of the ropes around your arms.",661,0,0,WaitingForFriend()
661,0,0,,(Try Calling for help.),(Most of the club seem to be busy|or just trying to ignore your cries.),661,0,0,WaitingForFriend()
661,0,0,,@BHNHNH.,"(The safe word seems to have fallen on death ears.|Lucy is too busy chatting, her back turned to you.)",661,0,0,WaitingForFriend()
662,0,0,Common_PlayerGagged,@Hmllh Ghffn,"Oh where are my manners, here lets get that|out of your mouth. (She removes the gag.)",663,0,0,PlayerIsUngagged()
662,0,0,Common_PlayerGagged,(Stay silent.),"Oh where are my manners, here lets get that|out of your mouth. (She removes the gag.)",663,0,-1,PlayerIsUngagged()
662,0,0,,Hello Cassi.,Lucy says you have a problem she can't help you with.,663,0,0,
662,0,0,,Why don't we see how cute|you look tied up like this.,Don't tempt me. I'm supposed to be|looking after the club while Jenna is out.,663,0,1,
662,0,0,!Common_PlayerGagged,(Stay silent.),"Awww, you're a little nervous I see.|Don't fret, I'm just here to help you.",663,0,-1,
663,0,0,,You are here to help me?,Sure I'll help you. I'm going to help you with|the really important things that Lucy won't.,664,0,0,
663,0,0,,What are going|to do to me?,I'm going to help a very horny girl with|a very important matter that Lucy won't.,664,0,-1,
663,0,0,,Can you untie me now?,"What, after the effort Lucy put into this? No way.|Besides I don't think Lucy was kidding about you.",664,0,0,
664,0,0,,Oh god please.|This is so frustrating.,"Wow, Lucy you weren't kidding about her.|Steady on there, first things first.",665,1,0,
664,0,0,,(Blush and avoid her gaze.),"Hehe, you're horny and we know it,|but first things first. ",665,0,-1,
664,0,0,,What are you messing|about at. Get on with it.,Easy tiger. First we need to get you ready for action.,665,-1,1,
664,0,0,,Actually I'm fine.|I don't need help from you.,"Oh, umm, in that case She is all yours|again Lucy. (Cassi sulks off muttering.)",640,-1,1,LoadLucyNoLeave()
665,0,0,,What do you mean?,That chastity belt has got to go for a start.|(Lucy leaves Cassi and you to it.),666,0,0,PlayerIsNotChaste()
665,0,0,,(Stare at her.),"Come on, let's get rid of this chastity belt.|(Lucy leaves Cassi and you to it.)",666,0,0,PlayerIsNotChaste()
666,0,0,,Sorry but I don't|have a key for it.,"That's not a problem. Fortunately for you, I|have a universal key to unlock belts like that.",667,0,-1,
666,0,0,,I happen to like|being chaste.,"Really? One, that is weird, two, I have a universal|belt key and three, you already made your choice.",667,-1,0,
666,0,0,RevengeBelted,Amanda and Sarah|trapped me in it.,Well neither of them are here and I happen to have|a universal key to fit belts like that one.,667,0,0,
666,0,0,,You can remove this belt?,"Of course, thats a fairly common belt type|I happen have a universal key for.",667,0,0,
667,0,0,,You have a key?|Please free me.,"I will, but I'll also make sure it is securely|locked back on before you are untied.",668,1,-1,RemovePlayersChastity()
667,0,0,,I didn't know you could get|universal keys for belts.,Unfortunately some have custom anti tamper locks.|I'll make sure you are locked back in afterwards.,668,0,0,RemovePlayersChastity()
667,0,0,,Don't just stand there.|Get this damn belt off me.,No need to be like that.|I'll lock it back on before untying you.,668,-1,1,RemovePlayersChastity()
668,0,0,,"I feels kind of odd,|not being chaste now.","Yeah, I wish I knew that feeling better.|Anyway, panties or sock?",669,1,0,
668,0,0,,I want that key.,"No, you can buy your own. Enough chat,|you only have one choice. Panties or sock?",669,0,1,
668,0,0,,Please don't lock me|back in that thing.,"Free choice is a rare luxury.|You do have one choice though, panties or sock?",669,0,-1,
668,0,0,,What is the point in a|belt if others have a key?,"Like the Police, chastity belts only exist to punish|you, not protect you. Anyway, panties or sock?",669,0,0,
668,0,0,,Aaaah! The whole club|will see my clit like this.,"Relax, we've all seen and got one, but I can|help quieten your anxiety. Panties or sock?",669,1,-2,
668,0,0,,Does that key work|on any lock?,"No. It only fits some common chastity belts.|Now that's dealt with, panties or sock?",669,0,0,
669,0,0,,Panties.,Very well. (She balls up the large panties and|packs your mouth with it.) Try to close your lips.,671,1,0,PlayerPantieGagged()
669,0,0,,Sock.,Very well. (She stuffs your mouth full|with a sock.) Try to close your lips.,671,1,0,PlayerSockGagged()
669,0,0,,(Keep your mouth shut.),Don't tempt me to punish you.|Socks or panties is your only choice now.,669,0,0,
669,0,0,,What kind of a|choice is that?,It's a simple one.|Which do you want to gag on while in heaven?,669,0,0,
669,0,0,,I don't want|to do this.,It's this or be left hanging there all alone.|Either way you will be gagged.,670,0,0,
670,0,0,,"Okay, panties please.",(She balls up the large panties and packs your mouth|with it.) That's better. Try to close your lips.,671,0,-1,PlayerPantieGagged()
670,0,0,,"Okay, sock please.",(She stuffs your mouth full with a sock.)|That's better. Try to close your lips.,671,0,-1,PlayerSockGagged()
670,0,0,,No way is underwear|going in my mouth.,"Have it your way. (She takes a ball gag|and silences you with it, then leaves.)",661,-1,1,LeftBallGagged()
671,0,0,PantieGagged,(Spit out the panties.),"(Cassi is too quick. Before your mouth is free, she|pushes the panties back in and tapes them in place.)",672,-1,0,PlayerTapeGagged()
671,0,0,SockGagged,(Spit out the sock.),"(Cassi is too quick. Before your mouth is free, she|pushes the sock back in and tapes them in place.)",672,-1,0,PlayerTapeGagged()
671,0,0,,@Hmf thnf nmgmffhrn?|(Is this necessary?),Totally! (Cassi traps the underwear|in your mouth with a tape gag.),672,0,0,PlayerTapeGagged()
671,0,0,PantieGagged,(Try to close your|mouth around the panties.),(It is more than a mouth full. Your lips don't|meet before Cassi smoothes tape over them.),672,0,-1,PlayerTapeGagged()
671,0,0,SockGagged,(Try to close your|mouth around the sock.),(It is more than a mouth full. Your lips don't|meet before Cassi smoothes tape over them.),672,0,-1,PlayerTapeGagged()
671,0,0,PantieGagged,(Bite down hard|on the panties.),"Hey, easy on there.|(She tapes over your bared teeth to hold the panties in.)",672,0,1,PlayerTapeGagged()
671,0,0,SockGagged,(Bite down hard|on the sock.),"Hey, easy on there.|(She tapes over your bared teeth to hold the sock in.)",672,0,1,PlayerTapeGagged()
671,0,0,PantieGagged,(Hum happily.),Are you trying to make Chloe jealous?|(Cassi secures the panties in place with a tape gag.),672,1,0,PlayerTapeGagged()
671,0,0,SockGagged,(Hum happily.),Are you trying to make Chloe jealous?|(Cassi secures the sock in place with a tape gag.),672,1,0,PlayerTapeGagged()
672,0,0,PantieGagged,(Chew on the panties|filling your mouth.),(You start wondering whether the panties were clean.),674,0,0,CassiLegTie(1)
672,0,0,SockGagged,(Chew on the socks|filling your mouth.),(You start wondering whether the sock was clean.),674,0,0,CassiLegTie(2)
672,0,0,PantieGagged,(Spit out the panties.),"(It is too late now, the tape holds the panties firmly|in your mouth.)",674,0,0,CassiLegTie(3)
672,0,0,SockGagged,(Spit out the socks.),"(It is too late now, the tape holds the sock firmly in|your mouth.)",674,0,0,CassiLegTie(4)
672,0,0,,(Hum happily.),(The combined underwear and tape gag|almost completely mutes you.),674,1,0,CassiLegTie(5)
672,0,0,,(Wait quietly.),(You ponder your predicament.),674,0,-1,CassiLegTie(6)
673,0,0,,(Shake your|head nervously.),"These have got to go, but don't worry,|the club has spare panties for times like this.",674,0,-1,PantiesCut(0)
673,0,0,,(Nod vigorously.),"You know, if you wore a chastity belt, I would|not have had to cut off good pair of panties.",674,1,0,PantiesCut(1)
673,0,0,,(Shake your hips violently.),"Sorry, but it's the only way without untying your legs.|The club has spare panties for times like this.",674,0,1,PantiesCut(0)
673,0,0,,@Bhnhnh.,(Cassi doesn't seem to hear you and carries on.)|The club has spare panties for times like this.,674,0,0,PantiesCut(0)
673,0,0,!TsuriFrogTied,(Kick out at Cassi.),Ouch. You wanted more bondage? (She frog ties|your legs and finishes cutting away your panties.),674,0,0,PantiesCut(2)
674,0,0,,(Nod happily.),I hope you enjoy this as much as I wish I could.|(Cassi starts nuzzling your pussy.),675,1,0,CassiCuffs()
674,0,0,,"@Nhh hhd bmttmr mhgm thnf|whrth whnlm, bntgh!","Your mouth is making that underwear filthy.|(Cassi hesitates, and then starts nuzzling your pussy.)",675,-1,1,CassiCuffs()
674,0,0,,@Bhnhnh.,(Neither Cassi or the club seem to be able to|hear you. Cassi starts nuzzling your pussy.),675,0,0,CassiCuffs()
675,0,0,,(Whimper uneasily.),(You feel Cassi's tongue gently part your lips|and start doing soft strokes up you clitoris.,680,0,-1,
675,0,0,,(Thrust your|hips impatiently.),(You feel Cassi's tongue plunge through your lips|and start doing long firm strokes up you clitoris.,680,0,1,
675,0,0,,(Relax and enjoy|the sensation.),(You feel Cassi's tongue pushes your lips apart|and start doing long strokes up you clitoris.,680,0,0,
6800,0,0,,(Quietly savor|Cassi's technique.),(You hang there entranced as Cassi's tongue|continues to dances on your clitoris.),680,0,0,CassiCunni(1)
680,0,0,,(Moan of pleasure.),"(Cassi keeps teasing your clitoris, working that|sweet spot and prolonging your stifled moans.)",680,0,0,CassiCunni(2)
680,0,0,,(Breathe heavily.),"(Cassi maintain the stimulation of your clitoris,|while your whole body heaves with each breathe.)",680,0,0,CassiCunni(3)
680,0,0,,(Grunt helplessly.),"(Cassi keeps on licking steadily,|while you squirm and gag on the panties.)",680,0,0,CassiCunni(4)
680,0,0,,(Mumble impatiently.),- cassi changes style of stimulation. reduce arousal?,680,0,0,CassiCunni(5)
680,0,0,,(Thrust your hips.),"(Cassi keeps teasing clitoris,|keeping rhythm with you thrusting.)",680,0,0,CassiCunni(2)
680,0,0,,(Shift your hips awkwardly.),- cassi changes style of stimulation. reduce arousal?,680,0,0,CassiCunni(5)
680,0,0,CanPressCassi,(Use your feet to press her|head into your crotch.),"(Wrapping your feet round her head, you startle Cassi,|but she quickly resumes licking your clitoris.)",680,0,0,CassiCunni(6)
680,0,0,PressingCassi,(Press her head hard|into your crotch.),"(Cassi's mouth and nose get sealed tight against you.|She starts struggling, but doesn't stop licking.)",680,0,0,CassiCunni(7)
680,0,0,ForcingCassi,(Keep pressing her|head hard against you.),"(Cassi struggles helplessly.|Unable to pull away, she tries licking you harder.",680,0,0,CassiCunni(8)
680,0,0,ForcingCassi,(Let Cassi pull back.),"(Cassi keeps licking you, but tilts her head, looks|up anxiously and breathes through her nose again.)",680,0,0,CassiCunni(9)
680,0,0,PressingCassi,(Let go of her head.),"(You let your legs drop away from Cassi,|who carries on teasing you with her tongue.)",680,0,0,CassiCunni(10)
680,0,0,,(Try to ignore Cassi.),"(You try distracting yourself with mental and pain|techniques, but Cassis tongue is unrelenting.)",680,0,0,CassiCunni(11)
680,0,0,,(Struggle frantically.),"(Cassi leans into your crotch, keeping hear|tongue on you clitoris as you buck and shake.)",680,0,0,CassiCunni(12)
681,0,0,,(Whine gleefully.),"(Your orgasm subsides, but you realise that Cassi|hasn't stopped and is still licking you intensely.)",680,0,-1,CassiContinue()
681,0,0,,(Shiver with delight.),"(Your orgasm subsides, but you realise that Cassi|hasn't stopped and is still licking you intensely.)",680,1,0,CassiContinue()
681,0,0,,(Shriek into your gag.),"(Your orgasm subsides, but you realise that Cassi|hasn't stopped and is still licking you intensely.)",680,0,0,CassiContinue()
682,0,0,,(Try to free yourself.),The ropes have not got any looser. (Cassi gets her|breath back and hurries off to find her key.),661,0,0,NoActor()
682,0,0,,@HMLP MM!,(The girls watching laugh as Cassi gets her|breath back and hurries off to find her cuffs key.),661,0,0,NoActor()
682,0,0,,(Hang there.),"(Cassi gets her breath back and hurries off to|find her handcuff key, leaving you there.)",661,0,0,NoActor()
685,0,0,,(Nod your head.),"You'll soon realise how cramped it gets, suspended for|a while like that. I had better untie you now.",687,0,0,
685,0,0,,(Shake your head.),"Kinky girl, you love this predicament.|(She resumes licking your clitoris.)",680,1,-1,
686,0,0,,(Nod your head.),Maybe another time if you're good to me.|I really should untie you now.,687,0,0,
686,0,0,,(Shake your head.),"Don't get greedy, you've had far more than|some of us get. I really should untie you now.",687,-1,0,
687,0,0,,(Nod your head.),"First about your panties I sort of cut up earlier.|It's okay, the club can lend you this chastity belt.",688,0,0,
687,0,0,,(Shake your head.),"You are gluten for punishment! Well I should|get back to Alyssa, Bye. (She leaves you hanging.)",661,0,-1,PunishmentGlutten()
688,0,0,,(Nod your head.),"Great, Do you need any extras to|keep you kinky places occupied?",689,0,-1,
688,0,0,,(Shake your head.),"Come on, you need to wear some form of underwear.|I can spice it up if you like?",689,0,0,
689,0,0,,(Nod your head.),"These should do nicely. (She slips an egg into your|vagina and plugs your ass, then locks the belt on.)",690,0,0,AddedExtras(0)
689,0,0,,(Shake your head.),"Stop arguing. (She slips an egg into your|vagina and plugs your ass, then locks the belt on.)",690,0,0,AddedExtras(1)
690,0,0,,(Bow your head|and whimper.),"Awww there there, I've had to endure worse.|(She releases you.)",691,0,-1,PlayerFreed()
690,0,0,,(Frown at her.),"Oops, it's too late now anyway.|(She releases you.)",691,0,1,PlayerFreed()
690,0,0,,(Moan happily.),I knew you would like it.|(She releases you.),691,1,0,PlayerFreed()
690,0,0,,(Wait quietly.),It won't take long now.|(She releases you.),691,0,0,PlayerFreed()
691,0,0,,That was awesome.|Can we try it again?,"I'm glad you like it, but you need will a stretch|and I really need to check on Alyssa soon.",691,0,0,
691,0,0,,"Great, now its your|turn to be eaten.",That might be rather difficult right now|and I really need to check on Alyssa soon.,691,0,0,
691,0,0,,"It might be just cramp,|but I'm still shacking.",Feels great doesn't it. ,691,0,0,
691,0,0,,What was all that about?,Well... I... errrr...|I though it was obvious and you seemed to be enjoying it.,691,0,0,
691,0,0,Common_PlayerChaste,Unlock this damn|belt right now!,It will remain locked up until you've|had a chance to calm down get used to it.,691,0,0,
691,0,0,Common_PlayerChaste,Please let me out|of this belt.,"I've only just locked it on. I think you should|try wearing it for a whole day, maybe even 2.",691,0,0,
691,0,0,Common_PlayerChaste,"This plug, what if|I need the toilet?","You'll be fine... For tonight at least,|I'll make sure I bring the key to college tomorrow.",691,0,0,
700,0,0,,"So Lucy, shall we tie|up your captors now.","That is easier said than done with Amelia. I know a lot|of Kinbaku, would like to be tied up instead?",710,0,1,
700,0,0,,You must be aching|after that.,"Yes, I need to stretch my arms.|Can I tie you up now to work some life back into them?",710,1,0,
710,0,0,,"No, you're not|tying me up.","Aww please, I have a neat idea I want to try.",710,0,0,
710,0,0,,Tie up Amelia or|Charlotte instead.,"No, I really want to try out a new idea on you.",710,0,0,
710,0,0,,"Okay, but make it quick.","We'll see, you might enjoy this. (She starts with a|box tie, helps you lie down and ties your ankles.)",720,0,0,
720,0,0,,Come on this is|nothing special.,Just a moment. (She ties a crotch rope going around|your arms and then hogtied to your ankles.),730,0,1,
720,0,0,,I can't move|away like this.,Thats the idea. (She ties a crotch rope going around|your arms and then hogtied to your ankles.),730,0,-1,
730,0,0,,(Try struggle in|this bondage.),(As you kick your legs it yanks the crotch rope deep into you.),740,0,-1,
710,0,0,ATwinStillTied,You're just going to leave|your sister like that?,"She can hold that pose a bit longer.|Come on, you could keep her company.",710,0,0,
710,0,0,,"Okay, but make it quick.","We'll see, you might enjoy this. (She starts with a|box tie, helps you lie down and ties your legs.)",720,0,1,PlayerTied()
710,0,0,,"Sure, show me|what you can do.","Thanks, you might enjoy this. (She starts with a|box tie, helps you lie down and ties your legs.)",720,1,0,PlayerTied()
710,0,0,,I'm not sure I want|to be tied up.,"Relax, you might enjoy this. (She starts with a|box tie, helps you lie down and ties your legs.)",720,0,-1,PlayerTied()
720,0,0,,Come on this is|nothing special.,"Just a moment. (She ties a crotch rope, brings it|up around your arms and hogties you with it.)",730,0,1,PlayerTied()
720,0,0,,Could you make this|a more restrictive?,"Certainly. (She ties a crotch rope, brings it|up around your arms and hogties you with it.)",730,1,-1,PlayerTied()
720,0,0,,Well I can't just|walk away like this.,"Thats the idea. (She ties a crotch rope, brings it|up around your arms and hogties you with it.)",730,0,-1,PlayerTied()
730,0,0,,(Reach for a knot.),"(You reach up behind your back to find a knot, but|that pulls the crotch rope, digging it deeper into you.",730,0,0,HelplessKnot()
730,0,0,,(Try struggle in|this bondage.),"(As you kick your legs, they yank on the crotch|rope, making it cut deep into your pussy.)",730,0,0,HelplessStruggle()
730,0,0,,Thats enough. You|can let me go now.,"Just a moment youre almost done.|(She straps a gag on you, cutting your protests short.)",740,0,-1,PlayerBallGagged()
730,0,0,,This is great.,"Yes, but something is missing. (She securely|straps a gag in your mouth.) That's better.",740,1,-1,PlayerBallGagged()
730,0,0,,I want to see you|tied like this now.,"Those that want don't get. Learn some manners,|like asking ""May I have a gag please?” Yes you may.",740,0,0,PlayerBallGagged()
740,0,0,,(Reach for a knot.),"(You reach up behind your back to find a knot, but|that pulls the crotch rope, digging it deeper into you.)",740,0,0,HelplessKnot()
740,0,0,,(Try struggling in|this bondage.),"(As you kick your legs, they yank on the crotch|rope, making it cut deep into your pussy.)",740,0,-1,HelplessStruggle()
740,0,0,,@Bhnhnh.,"Calm down, this isn't too bad if you dont struggle.|You can mange to hold this position for a bit longer.",740,0,0,HelplessTime()
740,0,0,,(Spit the gag out.),"(You try in vain to get the ball out of your mouth.)|Don't worry, that's not the same gag I was drooling over.",740,0,0,HelplessTime()
740,0,0,,(Chew on the gag.),"Hmmm, maybe I should find you a bigger ball gag or|maybe pack something else into you mouth first.",740,0,0,HelplessTime()
740,0,0,,"@Thhtf mnhhgh,|lmt mm gh nhw.",What is that? I can't quite make out what|you're saying with your mouth full.,740,0,0,HelplessTime()
740,0,0,,"@Thhng nhh, thnf|hhgtnm Hmf hwfhmm.",You're welcome. I though you would enjoy it.,740,0,0,HelplessThankYou()
740,0,0,,(Tug on the|crotch rope.),(You can't help softly moaning with pleasure|and pain as you tease yourself.),740,0,0,HelplessTug()
750,0,0,,@Wnll nhh lmt|mm gh nhw?,"Yes, in a moment. If you're interested, I could|demonstrate another kinbaku method on you?",760,0,0,
750,0,0,,@Plmhfm lmt mm gh.|Hm'll bm h ghhd gnrl.,A good girl? You would be a great girl|if let me demonstrate more Kinbaku on you.,760,1,-1,
750,0,0,,@Bhnhnh?,You were fine like that a moment ago. Maybe you're|aching and want to be tied up another way?,760,0,0,
750,0,0,,(Whimper.),What's the matter?|Experiencing some more Kinbaku might cheer you up.,760,0,0,
750,0,0,,(Point to the|crotch rope.),"I might like tying people up, but I'm not|into pleasuring other girls. Sorry.",750,0,0,
760,0,0,,(Shake your head.),Are you really sure? You're such a super cute model.,765,0,0,
760,0,0,,(Nod your head.),Great. I want try something a little more adventurous.|(She releases your legs.),770,1,0,
760,0,0,,@N fhpphfm fh,"Don't worry, I will try something extra special to|brighten you up, I promise. (She releases your legs.)",770,0,1,
760,0,0,,"@Plmhfm, Hm'm bmggnng|nhh. Lmt mm gh.",Are you really sure? You're such a super cute model.,765,0,-1,
765,0,0,,@Nh mhrm plhfm.|Hntnm mm.,"I suppose I can. (She frees you and helps you up.)|If you want to be tied up again, just ask. ",600,0,0,PlayerFreed()
765,0,0,,@Nhh rmhlln thnng|Hm'm fhpmr ghtm?,Why wouldn't I? You are helplessly cute.|Be a friend and help model something else.,760,0,0,
770,0,0,,(Point at your arms.),They can stay tied like that.|(She helps you up and to the corner of the room.),632,0,0,
770,0,0,,@Hrm nhh lmttnng mm gh?|(Are you letting me go?),"No, I just needed you legs untied.|(She helps you up and to the corner of the room.)",632,0,0,
770,0,0,,(Get away from her.),Where do you think your going? (She grabs ropes tied|round you and directs you to the corner of the room.),632,1,0,
800,0,0,,"@HMLP, Hmt'f Hmhthmr!","You silly. I said tether, not leather. (Hearing Heather's|response, the club dismiss your muffled outburst)",810,0,0,
800,0,0,,@Bhnhnh?,"Where do you want that banana to go, you naughty girl?",810,0,0,
800,0,0,,@Hm gnhw.|(I know.),"So you intentionally freed me, then let me bind and|gag you? You should be punished for being that kinky. ",810,1,0,
810,0,0,,(Glare at her.),"Oh, so you think this is isn't sever enough?|I suppose I could intensify this for you.",811,0,1,
810,0,0,,@Bntgh. Lmt mm gh!|(Bitch. Let me go!),"Oh, so you think this is isn't sever enough?|I suppose I could intensify this for you.",811,-1,0,
810,0,0,,@Plmhfm hntnm mm.|(Please untie me.),"Awww, do you submit to my will?",820,0,-1,
810,0,0,,(Whimper and bow|to her.),"Awww, do you submit to my will?",820,1,-1,
810,0,0,,(Struggle to escape|the hogtie.),"(You struggle madly, but there is no slack in the ropes.)|You can keep that up all evening if you like.",810,0,0,
810,0,0,,(Search for a knot.),"You will need more than good luck to escape, that|kinbaku is flawless. Your compliance made it so easy.",810,0,0,
811,0,0,,(Glare at her.),"Fine, if you want to be a stoic. (She rolls you|over, unbuttons your shirt and exposes your breasts.)",812,0,1,Exposed()
811,0,0,,@Bntm mm!|(Bite me!),"No I won't, but if you insist on pain.... (She rolls you|over, unbuttons your shirt and exposes your breasts.)",812,0,0,Exposed()
811,0,0,,(Shake your head.),So you submit to me?,820,0,0,
811,0,0,,(Whimper and bow|your head.),Well it looks like you are just another kinky girl.|(She rolls you over and exposes your breasts.),812,0,-1,Exposed()
812,0,0,,(Glare at her.),Let's see you hold that composure with these treats.|(She puts a pair of clamps on your nipples.),813,0,1,Clamped()
812,0,0,,"@Nh, plmhfm dhn't.|(No, please don't.)","I'm sorry, but it was you said you wanted to try these.|(She puts a pair of clamps on your nipples.)",813,0,-1,Clamped()
812,0,0,,(Shake your loose breasts.),Be patient my kinky friend. (She grasps your|beasts and snaps a clamp on each nipple.),813,1,-1,Clamped()
812,0,0,,@MMRGN|(MERCY!),"Oh fine, so you submit to my will?",820,0,0,Mercy()
813,0,0,,(Squeal with pain.),"I did warn you, but you insisted on trying them.",813,0,-1,Sensetive()
813,0,0,,(Moan with pleasure.),I didn't realise you actually are a masochist.|(She plays with the clamps.),813,1,-2,Masochism()
813,0,0,,(Glare at her.),"You're more resilient than you looked, but you said you|didn't want me to go easy on you. (She tugs the chain.)",813,0,1,Defiant()
813,0,0,,@MMRGN|(MERCY!),Easy there. You did tell me not to go easy on you.,813,0,-1,Sensetive()
813,0,0,,(Squirm in your restraints.),You're really getting into this.|(She toys with the clamps on your nipples.),813,0,-2,Masochism()
813,0,0,,@Hhhhrrgh nhh bntgh.|(You bitch.),You talk tough when youre not howling.|(She yanks on the chain between the clamps.),813,-1,0,Defiant()
813,0,0,!Guessing,@Bhnhnh,"You know that isn't the safe word we agreed on.|Don't mess about, unless you think this is too easy.",813,0,0,SafeWord()
813,0,0,Guessing,(Try a different safe word.),(There is no harm in trying.),814,0,0,SafeWord()
813,0,0,,(Shuffle away|from Heather.),"I'm doing as you wanted, you might as well stay here|and take it. (She pulls you back by the clamps.)",813,0,0,Tug()
813,0,0,BreakDown,(Sob and howl with pain.),"Shit, stop crying, I'm sorry you should have said.",840,0,-1,Crying()
814,0,0,,@Rmd.|(Red.),"Light? Fine, I'll drink on Roxanne when we are|laughing about this in the pub later.",813,0,0,
814,0,0,,@Jhftnn Bnmbmr.|(Justin Bieber.),I like him. I won't believe anyone could think|of Bieber and not be having a good time.,813,0,0,
814,0,0,,"@Hn, ghrhmbh|(Ay, caramba!)","Don't worry, I won't eat your shorts.",813,0,0,
814,0,0,,@Mhrmntm.|(Marmite.),"You love this? Okay, personally I'd hate this.|(She flicks the clamps with the chain.)",813,0,0,Tug()
814,0,0,,@Hglhhhmh.|(Oklahoma.),I could take you there after you submit.,813,0,0,
814,0,0,,@Fhfm Whrd.|(Safe Word.),"Come on, you were far more creative than that when|we agreed the safe word. (She jerks the chain.)",813,0,0,Tug()
814,0,0,,@Trhft.|(Trust.),"Yeah, rule number one, never trust anyone.",813,0,0,
814,0,0,,@Bmmtlmjhngm.|(Beetlejuice.),Say that three times in a row won't change anything.,813,0,0,
814,0,0,,@Hnnghrn.|(Unicorn.),Are you getting horny now?|(She pulls slowly on the chain.),813,0,0,Tug()
814,0,0,,@Hhfflmphff.|(Hufflepuff.),"Sorry, I didn't bring my magic wand.",813,0,0,
820,0,0,,@Nmf mnff.|(Nod your head.),Good girl. I am going to get revenge on|Amelia now and you will help me.,850,0,0,
820,0,0,,@Nh Hm dhn't.|(Shake your head.),"Fine, if that's what you want we can carry on playing.|(She rolls you over and exposes your breasts.)",812,0,0,CarryOn()
820,0,0,,@Nhhr wnll?|(Your will?),To obey my every command of course silly.,820,0,0,
821,0,0,,(Nod your head.),Good. I am going to get revenge on|Amelia now and you will help me.,850,0,0,
821,0,0,,@Nmf mnff.|(Yes miss.),"Excellent. You would make a nice play toy,|but now you will help me get back at Amelia.",850,1,-1,
821,0,0,!CannotBluff,(Shake your head.),Don't try kidding me. I can see it in your eyes.|Do you submit to me now?,821,0,0,NoBluffing()
822,0,0,,(Nod your head.),Good. I am going to get revenge on|Amelia now and you will help me.,850,0,0,
822,0,0,,@Nmf mnftrmff.|(Yes mistress.),"If you weren't already taken, I'd keep you as my own,|but now you will help me get back at Amelia.",850,0,-1,NoMistress()
822,0,0,!CannotBluff,(Shake your head.),Don't try kidding me. I can see it in your eyes.|Do you submit to me now?,822,0,0,NoBluffing()
823,0,0,,@Lmt mm gh rnght nhw!|(Let me go right now!),"Sorry, you told me not to stop until you submitted.|I will give to time to consider your choices though.",824,0,1,
823,0,0,,@Nt whf nmvmr fhn.|(It was never fun.),Fun? You just wanted to prove how tough you are.|Some quite time to contemplate will help you.,824,0,0,
823,0,0,,@Nhh'rm dmfpnghblm.|(You're despicable.),"No Im just obediently following your instructions,|but you can play on your own now.",824,-1,0,
824,0,0,,@Plmhfm nh.|(Please no.),You had you chance.|(She pulls the blindfold over your eyes.),860,0,-1,
824,0,0,,"@Gh fhgg nhhrfmlf, bntgh!",I should wash your mouth out with soap.|(She pulls the blindfold over your eyes.),860,-2,0,
830,0,0,,(Shake your loose breasts.),"(You jiggle as best you can, the weight|of the clamps twisting your nipples.)",830,0,0,WaitingForMistress()
830,0,0,,(Reach for a knot.),"(You reach up behind your back to find a knot, but|that pulls the crotch rope, digging it deeper into you.)",830,0,0,HelplessKnot()
830,0,0,,(Try struggling in|this bondage.),"(As you kick your legs, they yank on the crotch|rope, making it cut deep into your pussy.)",830,0,0,HelplessStruggle()
830,0,0,,(Moan with pleasure.),"(You can't help yourself,|savouring the burning sensation in your nipples.",830,0,0,WaitingForMistress()
830,0,0,,(Try to remove the|nipple clamps.),"(You try rubbing the clamps against the floor,|but that only irritates your sore nipples.)",830,0,0,WaitingForMistress()
830,0,0,,(Struggle to escape|the hogtie.),"(You struggle madly, but there is no slack except for|the crotch rope, which jerks tight when you kick.)",830,0,0,WaitingForMistress()
830,0,0,,(Search for a knot.),"(You carefully feel around, but cannot find a single knot.|You have been very skilfully bound.)",830,0,0,WaitingForMistress()
830,0,0,,(Chew on the gag.),"(The large ball is unyielding. You sign happily,|relishing how much it has made your jaw ache.)",830,0,0,WaitingForMistress()
831,0,0,,@Mnftrmff?|Mistress?),That's right. I've a collar to lock around|your neck now so you never forget it.,832,1,0,
831,0,0,,@Hmhthmr.|(Heather.),Leather? How did you guess? I've got you a nice|tough leather collar to lock around your neck.,832,0,0,
832,0,0,,(Bow your head.),(Heather padlocks the collar around your neck|and hides it under your shirt collar.),833,0,-1,PlayerCollared()
832,0,0,,@Whnt h mhmmnt.|(Wait a moment.),(Heather padlocks the collar around your neck and|hides it under your shirt collar.) Did you say something?,833,0,0,PlayerCollared()
833,0,0,,@Thhng nhh Mnftrmff|(Thank you Mistress.),We are going to get revenge on Amelia now.|Be good and I will punish you again later for helping.,850,0,-2,
840,0,0,,(Shriek and|bawl in agony.),HEATHER! In a busy club? You have some nerve.|(Jenna and some other girls surround Heather.),841,0,0,LoadJenna()
840,0,0,,(Whimper and|sob quietly.),HEATHER! In a busy club? You have some nerve.|(Jenna and some other girls surround Heather.),841,0,0,LoadJenna()
840,0,0,,(Blubber and|mumble desperately.),HEATHER! In a busy club? You have some nerve.|(Jenna and some other girls surround Heather.),841,0,0,LoadJenna()
840,0,0,,(Snivel and|cry quietly.),HEATHER! In a busy club? You have some nerve.|(Jenna and some other girls surround Heather.),841,0,0,LoadJenna()
841,0,0,,@Jmnnh!|(Jenna!),"Hold tight a moment COMMON_PLAYERNAME. (They launch|on Heather, seizing and restraining her.)",842,1,0,
841,0,0,,(Carry on crying.),"(They launch on Heather,|seizing and restraining her.)",842,0,-1,
842,0,0,,(Carry on crying.),It's okay now. (Heather is lead hobbling away while|Jenna removes the nipple clamps and comforts you.),843,0,-1,HeatherTaken()
842,0,0,,@Hmlp mm hlrmhdn!|(Help me already!),Easy there. (Heather is lead hobbling away while|Jenna removes the nipple clamps and comforts you.),843,0,1,HeatherTaken()
842,0,0,,"@Hmlp mm, plmhfm.|(Help me, please.)",Of cause I will. (Heather is lead hobbling away while|Jenna removes the nipple clamps and comforts you.),843,1,-1,HeatherTaken()
843,0,0,,@N lngm thnf.|(I like this.),I'm sure you do. You are probably wondering|why I haven't just untied you yet?,844,1,0,
843,0,0,,@Ghmm hn hnd hntnm mm.|(Come on and untie me.),You are probably wondering why|I haven't just untied you yet?,844,0,0,
843,0,0,,@Whht wnll nhh dh th mm?|(What will you do to me?),Not much. You are probably wondering|why I haven't just untied you yet?,844,0,-1,
844,0,0,,(Nod your head.),I have noticed you staring up at my breasts and|trying to rubbing my crotch with your head.,845,0,0,
844,0,0,,(Shake your head.),I have noticed you staring up at my breasts and|trying to rubbing my crotch with your head.,845,1,0,
845,0,0,,Nh Hm hhvmn't!|(Shake your head.),See you can't stop rubbing me there. (She pinches|one of your sore nipples and then gently rubs it.),846,0,0,
845,0,0,,(Glare at her.),"You're no fun, you know that. Okay, I will untie|you now. (She removes your gag and unties you.)",848,0,1,PlayerReleased()
845,0,0,,(Giggle and rub|her enthusiastically.),"Ohhh, easy girl. You'll upset Chloe. (She pinches|one of your sore nipples and then gently rubs it.)",846,1,0,
845,0,0,,(Blush and apologies.)|N'm fh fhrrn mnff.,"It's okay, I liked it and how red your face has gone.|(She pinches your sore nipple and then gently rubs it.)",846,1,-1,
845,0,0,,@Nn nhhr drmhmf.|(In your dreams.),"If your going to be like that, you can bother|someone else. (She removes your gag and unties you.)",848,0,0,PlayerReleased()
846,0,0,,(Whimper and moan.),"Heather knows how powerful pain can be, it's just a|pity she can't balance it with a little pleasure.",847,0,-1,
846,0,0,,(Squeal and cry again.),"Sorry, you really were suffering. I'll help you now.|(She removes your gag and unties you.)",848,0,0,PlayerReleased()
846,0,0,,"(Yelp, then|nuzzle her excitedly.)",You've changed your tune.|Amazing what a bit of pleasure can bring to pain.,847,1,-1,
846,0,0,,"@Nh, thht rmhlln hhrtf.|(No, that really hurts.)",Serves you right for getting yourself in a predicament|like this. (She removes your gag and unties you.),848,0,-1,PlayerReleased()
847,0,0,,(Nod your head.),"Good, but now is not the time. You probably need|a stretch. (She removes your gag and unties you.)",848,1,0,PlayerReleased()
847,0,0,,(Shake your head.),"Don't deny yourself. Anyway, you probably need a|stretch now. (She removes your gag and unties you.)",848,0,0,PlayerReleased()
848,0,0,,Would you play with|me some more?,"After all that? Maybe later, now stay out of trouble.|(She leaves you there.)",849,1,-1,ActorLeftAndCanLeave()
848,0,0,,That was so humiliating.,Don't try telling me you didn't enjoy any of it.|(She leaves you there.),849,0,-1,ActorLeftAndCanLeave()
848,0,0,,Why don't you get tied up|and see how you like it?,You think I wouldn't like that? Some of us have|responsibilities though. (She leaves you there.),849,0,1,ActorLeftAndCanLeave()
848,0,0,,"Thanks, I needed a break.","No worries, some of the club members can get|carried away with it. (She leaves you there.)",849,1,0,ActorLeftAndCanLeave()
848,0,0,,That nipple torture|was awful.,Consider yourself luck that Heather hadn't though of a|way to take you out of this busy room. (She walks off.),849,0,0,ActorLeftAndCanLeave()
850,0,0,,(Nod your head.),(She starts untying you.),852,0,0,HadClamps()
850,0,0,,(Shake your head.),You can always stay bound and gagged.,851,0,0,
851,0,0,,"@N whn't hmlp nhh, ghw.|(I won't help you, cow.)","If you want to stay like this, that's fine with me.|(She takes out a blindfold.)",824,-1,0,
851,0,0,,"@Fhrrn, Hm'll hmlp nhh.|(Sorry, I'll help you.)",Thats better. Don't forget your status.|(She starts untying you.),852,0,-1,
852,0,0,Masochist,(Pout and sulk.),"I need you mobile, but you could try something else.|(She holds a rubber item.)",853,0,0,
852,0,0,,(Stretch your legs.),Good. You need to be ready to react.|(She releases you.),856,0,0,PlayerReleased()
852,0,0,,@Whf thnf nmgnffmrn?|(Was this necissery?),"Yes, to give you a taste of what will happen if|you don't do as I say. (She releases you.)",856,0,0,PlayerReleased()
853,0,0,,(Nod your head.),"Good girl, now squeal nicely for me.|(She starts pushing the butt plug into your ass.)",854,1,0,ChastityPlug()
853,0,0,,(Shake your head.),"I've got more important business now, but you will|get plugged later. (She releases you.)",856,0,0,NoDisobedience()
854,0,0,,(Relax your ass|and squeal happily.),(The plug slips in.) Very good girl. Now make|sure it stays put until I say so.,855,1,-1,PluggedHappily()
854,0,0,,"(Relax your ass,|then squeal in panic.)",(The plug slips in.) Too late now and don't|you dare remove it.,855,0,-1,PluggedPanic()
854,0,0,,(Clench your ass|and shake your head.),(She keeps gentle pressure on the plug.)|You're not going anywhere until you relax first.,854,0,0,Resist()
854,0,0,,"(Clench your ass,|plead and beg.)",(She keeps gentle pressure on the plug.)|Relax girlfriend. You want to try new things.,854,0,0,Beg()
854,0,0,,(Relax your ass and|quietly take the plug.) ,"(The plug slips in.) That was boring.|Anyway, keep it in there. ",855,-1,0,PluggedAccept()
855,0,0,,@Nmf mnff.|(Yes miss.),Lovely. If you are really good I might treat you|with even bigger plug. (She releases you.),856,1,0,PlayerReleased()
855,0,0,,@Hrm nhh fmrnhhf?|(Are you serious?),Take it out and I will find a way to lock and even|bigger one in your ass. (She releases you.),856,-1,0,PlayerReleased()
856,0,0,,What do we do now?,I'm going to show Amelia a type of knot|and then you grab her. Have you got that?,857,0,0,
856,0,0,PlugCommentAvailable,That plug feels far too big.,"Nonsense, I'll work that nice tight ass|of yours up to take something much bigger.",856,0,-1,PlugSize()
856,0,0,,Can I go now?,Not yet. I need you ready to grab Amelia|while I distract her. You got that?,857,0,-1,
857,0,0,,"Yes, I got it.","Good, don't let me down.|(She takes the rope and talks to Amelia.)",858,1,0,ActorLeftAndCanLeave()
857,0,0,,This is so exciting!,Calm down. I don't want Amelia to realise until it's|too late. (She takes the rope and talks to Amelia.),858,0,0,ActorLeftAndCanLeave()
857,0,0,,Do I have to do this?,We could discus that in a private room. Just do as|I say now. (She takes the rope and talks to Amelia.),858,-1,0,ActorLeftAndCanLeave()
860,0,0,,"@Hm'm fhrrn, Hm'll hmlp.|(I'm sorry, I'll help.)",It is far too late for that. I'm going to have some fun|without you. (You hear her stand up and walk away.),861,0,-1,NoActor()
860,0,2,,@N'll gmt nhh fhr thnf.|(I'll get you for this.),"Strong words, but you are getting nothing.|(You hear her stand up and walk away.)",861,-1,0,NoActor()
860,0,0,,(Ignore her.),"What, no last words? Never mind.|(You hear her stand up and walk away.)",861,0,0,NoActor()
861,0,0,,(Rub blindfold off.),"(You try rubbing it against the floor, bit is buckled|straps and the gags harness hold it firmly in place.)",861,0,0,Waiting()
861,0,0,,(Struggle to escape|the hogtie.),"(You struggle madly, but there is no slack except for|the crotch rope, which jerks tight when you kick.)",861,0,0,Waiting()
861,0,0,,(Search for a knot.),"(You carefully feel around, but cannot find a single knot.|You have been very skilfully and tightly bound.)",861,0,0,Waiting()
861,0,0,Masochist,(Chew on the gag.),"(The large ball is unyielding. You sign happily,|relishing how much it has made your jaw ache.)",861,0,0,Waiting()
861,0,0,!Masochist,(Chew on the gag.),"(The large ball is unyielding. You groan helplessly,|realising how much it has made your jaw ache.)",861,0,0,Waiting()
861,0,0,NippleClamped,(Try to remove the|nipple clamps.),"(You try rubbing the clamps against the floor,|but that only irritates your sore nipples.)",861,0,0,Waiting()
861,0,0,,(Wait for help.),"(You lie there aching, drooling and quietly groaning.|You can hear people busy nearby.)",861,0,0,Waiting()
861,0,0,,@HMLP,(You shout and scream until the club goes quiet.|Then someone laughs and the busy noises resume.),861,0,0,Waiting()
861,0,0,,@BHNHNH,(Someone walks over and you feel them checking|you over.) Youre okay like that. (They walk away.),861,0,0,Waiting()
900,0,0,,Yes miss.,- To do -,900,0,0,
9000,0,0,,Yes miss.,"Good, now stand over there. You know what to do.|(She starts talking to Amelia.)",910,0,0,NoLeave()
900,0,0,,Are you sure this|is a good idea?,Yes it is. Don't disobey me or you will be disciplined.,900,0,0,
900,0,0,PlayerWasPlugged,Can I remove the plug?,No and it had better still be in there if I check.,900,0,0,
900,0,0,,I need to do|something else first.,"Fine, but be quick about it.|Are you ready yet?",900,0,0,
910,0,0,,Listen to them.,(Lucy is talking about a knot she calls a|'Somerville Bowline'. She keeps glancing briefly at you.),910,0,0,
910,0,0,,(Grab Amelia.),"(You catch Amelia off guard, pulling her arms behind her|and Heather swiftly uses the rope to bind her.",920,0,0,
910,0,0,,"Amelia, you know that is Heather.",What!,910,,,
920,0,0,,Wow that actually worked.,"Yep, well done preventing her wrenching free.|(Together you finish restraining and gagging Amelia.)",920,,,
920,0,0,,Sorry about this Amelia.,(Amelia starts to yell at you but Heather quickly gags|her and you finish restraining her.),920,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,
999,,,,,,,,,

1 Stage LoveReq SubReq VarReq Interaction Result NextStage LoveMod SubMod Function
2 0 0 0 Yeah, what's|it too you? Nothing, we just seem to have a lot of new faces today. 10 0 1
3 0 0 0 Yep. A new start|and new possibilities. Great, I'm sure you will find new possibilities her. 10 1 0
4 0 0 0 Yes. This is all|new to me. We will have to make sure you get a|propper introduction to Kinbaku then. We will have to make sure you get a|proper introduction to Kinbaku then. 10 0 -1
5 01234 0 0 (Development only|short cut.) 600 0 0
6 10 0 0 I'm COMMON_PLAYERNAME,|pleased to meet you miss... I'm Amelia, this is Charlotte and the twins|Heather and Lucy who are already bound and gagged. 100 1 -1 Introduced()
7 10 0 0 Call me COMMON_PLAYERNAME. You can call me Amelia. This is Charlotte and the twins|Heather and Lucy who are already bound and gagged. 100 0 0 Introduced()
8 10 0 0 The name's COMMON_PLAYERNAME.|Be sure to remember it. OK. I'm Amelia, this is Charlotte and the twins|Heather and Lucy who are already bound and gagged. 100 0 1 Introduced()
9 50 0 0 Can you help me please. Can you help me please? Certainly, I can check those ropes are secure.|(Amelia makes sure your bondage is very tight.) 50
10 50 0 0 Don't you know what a girl|in bondage looks like? I do, but it’s not everyday a cute girl in|bondage just presents herself to you. 50
11 50 0 0 (Point at your bondage.) Yes it suits you well. 50
12 50 0 0 PlayerOnlyGagged (Remove your gag.) (Amelia garbs you and starts tying you up.)|If your gagged, you shouldn't be able to remove it. (Amelia garbs you and starts tying you up.)|If you’re gagged, you shouldn't be able to remove it. 50 PlayerTied()
13 100 0 0 (Talk to Amelia.) (What do you want to talk to Amelia about?) 200 0 0 LoadAmelia()
14 100 0 0 (Talk to Charlotte.) (What do you want to talk to Charlotte about?) 300 0 0 LoadCharlotte()
15 100 0 0 TwoTiedTwins (Go to the furthest twin.) She looks up at you, gesturing for you to release her. 400 0 0 LoadLeftTwin()
16 100 0 0 TwoTiedTwins (Go to the nearest twin.) She looks up at you, gesturing for you to release her. 450 0 0 LoadRightTwin()
17 100 0 0 !TwoTiedTwins RemainingTwin (Go to the remainng twin.) (Go to the remaining twin.) She looks up at you, gesturing for you to release her. 400 0 0 LoadRemainingTwin()
18 101 100 0 0 LucyTied (For testing only.|reveal twins.) (Go to Lucy.) She looks up at you, gesturing for you to release her. 100 430 0 0 RevealTwins() LoadLucy()
19 101 100 0 0 LucyFree (Talk to Lucy.) (What do you want to talk to Amelia about?) Hey there, do you want to be tied up again? 500 600 0 0 LoadLucy()
101 0 0 HeatherFree (Talk to Heather.) To Do, maybe not? 550 0 0 LoadHeather()
20 110 0 0 Alright, let me go now. Fine, just don't get too greedy.|(She lets go of your arm.) 100 0 0 CanLeave()
21 110 0 0 Yes miss, I won't|try that again. Good, it doesn't pay to get too greedy.|(She lets go of your arm.) 100 0 -1 CanLeave()
22 110 0 0 Try stopping me. (You shake off Amelia's grasp.)|I will if you carry on like that. 100 -1 0 TryStopMe()
23 120 0 0 Let go of me. No, you need a time out.|(She forces you across the room.) 125 -1 0
24 120 0 0 I'm really sorry.|I won't try it again. I will make sure of that this time.|(She forces you across the room.) 125 0 -1
25 120 1 2 (Break free from|her grasp.) Fine just don't try that again here. 100 -1 0
26 125 0 0 Please let me go. - This text should not display - 125 0 -1 PlayerLockedAway()
27 125 0 0 Okay, just don't|hurt me. - This text should not display - 125 1 0 PlayerLockedAway()
28 125 0 0 Get your hand off me. - This text should not display - 125 -1 0 PlayerLockedAway()
29 200 0 0 Amelia210NotDone Do you know a|lot about Kinbaku? I know enough to keep anyone helplessly tied up. 210 0 0 Amelia210Done()
30 200 0 0 Amelia220NotDone Have you tied|Charlotte up yet? She was a nervious wreck when I tried earlier and only|calmed down after I made her help tie up the twins. She was a nervous wreck when I tried earlier and only|calmed down after I made her help tie up the twins. 220 0 0 Amelia220Done()
31 200 0 0 Amelia230NotDone So which do you prefer,|boxtie or elbows touching? Both have thier advantages.|I prefer how elbows toching really shows off a sub. Both have their advantages.|I prefer how elbows touching really shows off a sub. 230 0 0 Amelia230Done()
32 200 0 0 We should try|some Kinbaku now. Yes we should and now I will tie you up. 260 0 0
33 200 0 0 Amelia250NotDone Heather and Lucy,|which twin is which? We're not sure, which is why we tried out different|Kinbaku patterns on both of them and gagged them. 250 0 0 Amelia250Done()
34 200 0 0 AnyoneKnow Can anyone here|tell the twins apart? Jenna seems to know, but she isn't here to ask. 200 0 0
35 200 0 0 UngagTwins Do the twins need|to be gagged? Yes. We don't need to listen to Heathers forked tongue. 200
36 200 0 0 InspectedTwins Why are they tied|so uncomfortably? To get Heather to admit which one she in exchange|for a much more comfortable bondage. 255
37 200 0 0 (Go back to the|rest of the grounp.) (Go back to the|rest of the group.) (Amelia is telling Charlotte about Kinbaku.) 100 0 0
38 210 0 0 Even me? Even you. 200 0 0
39 210 0 0 So you tie yourself up|helplessly as well? That's not what I meant. 200 0 1
40 210 0 0 HasRopeMastery You talk big, but|I'm a master with ropes. Thats good,|but is that just tying or escaping as well? That’s good,|but is that just tying or escaping as well? 215 1 0
41 210 0 0 Would you tie me up? When you're ready, just ask|and I'll make you totally at my mercy. 200 0 -1
42 215 0 0 I've not actually|managed to escape yet. So you have mastered being submissive. 200 0 -1
43 215 0 0 EscapedIsolationMildred Mildred left me tied|up and I escaped that. Impressive, you must have pissed her off to do that|and she doesn't mess then. 200 1 1
44 215 0 0 EscapedIsolationYuki Yuki left me tied up|and I escaped that. Impressive, but I wouldn't expect Yuki to just|tie someone up and then leave them. 216 1 0
45 215 0 0 No ropes can hold me. Thats a bold claim.|Turn around and we'll see about that. That’s a bold claim.|Turn around and we'll see about that. 218 0 0
46 216 0 0 I drugged her so she just|tied me up in a basement. If you do things like that, maybe we ought|to keep you permenantly restrained. If you do things like that, maybe we ought|to keep you permanently restrained. 200 -1 0
47 216 0 0 IsolationYukiOrgasm She forced me to give|her oral, then gagged me. Haha that's some serious motivation to escape|or did you want to savour that gag instead? 217 0 0
48 216 0 0 IsolationYukiOrgasm She wanted some control|while I made her cum. Wow, fair play. 200 1 1
49 217 0 0 I couldn't get that|gag out fast enough. I'm not surprised. 200 0 0
50 217 0 0 I though about keeping|the gag in after escaping. You must be a very obediant teachers pet to|love your mistresses taste that much. You must be a very obedient teachers pet to|love your mistress’s taste that much. 200 0 -2
51 218 0 0 Actually I'm not|quite ready yet. Most chickens have beaks, not big mouths. 200 -1 -1
52 218 0 0 Go on then, try your best.|(Turn around for her.) (Amelia helps remove your uniform, pulls your wrists|behind you and starts tying you up.) 500 1 1 AmeliaTies()
53 220 0 0 Who cares if|she is a wreck. That's a nasty attitude and|it should be fun for both all involved. 200 -1 0
54 220 0 0 What is she doing|here then? She said she came with a friend and|won't give me a striaght answer. She said she came with a friend and|won't give me a straight answer. 225 0 0
55 220 0 0 Does she only want|to dom others then? I'm not sure, she took a lot of persuading to help me|tie up the twins, but then seemed to enjoy it. 225 0 0
56 225 0 0 Maybe I can talk her|into some ropes. Sure you can try. 200 1 0
57 225 0 0 Perhaps she would|enjoy practicing on me. I'm sure she would if you could only get her to start. 200 0 -1
59 230 0 0 Elbows touching really|pushes out the breasts. You could put it like that. 233
60 231 0 0 Hey Charlotte,|which do you prefer. Well I don't have an opinion on that. 232 0 0 Charlotte()
61 231 0 0 Not apart enough to stop|me pulling a crotch rope. You must really love being tied up. 200 1 -1
62 231 0 0 And it's nicer on the|sub if its long term. And it's nicer on the|sub if it’s long term. Sure, but sometimes, like with the twns here,|the discomfort is essential. Sure, but sometimes, like with the twins here,|the discomfort is essential. 200 0 0
63 231 0 0 HasLooseArmbinder I have an armbinder that|will inhibit the hands. Cool, have you tried it on yourself? 235 0 0
64 232 0 0 You should try both|and then decide. No really I don't need an opinion on that.|(You turn back to Amelia.) 200 -1 1 Amelia()
65 232 0 0 Which method would|you use on me. If Amelia ties you up then she can decide.|(You turn back to Amelia.) 200 0 -1 Amelia()
66 233 0 0 You did a good elbow tie|on one of the twins. Yeah with elbows touching and hands tied forwards,|her breasts are about the only things she can touch. 234 1 0
67 233 0 0 Some girl's need the|help with their cleevage. Some girl's need the|help with their cleavage. Maybe, some of us are naturally|more gifted than others. 234
68 234 0 0 I'm not sure mine|need the assistance. Every little helps,|but you look fine as you are. 200 0 0
69 234 0 0 Your breasts would look|massive if I tied you up. That isn't going to happen. 200 -1 1
70 234 0 0 HasArmbinder HasLooseArmbinder I have an armbinder that|pins the elbows together. Cool, have you tried it on yourself? 235 0 0
71 235 0 0 I tried, but it's no|good for self bondage. I will help strap you into it. 236 1 -1
72 235 0 0 No it's only for|my favorite subies. Some of the girls in this club would love|to be your favorite pet for that. Some of the girls in this club would love|to be your favourite pet for that. 200 0 0
73 235 0 0 No, but you should try it. Forget it, try that on me and they can|use it on you as an arm splint. 200 -1 0
74 236 0 0 I'm not sure I want|to just yet Nonsense, come on you will look|beautifully submissive with it on. 236 0 -1
75 236 0 0 No, another time. Okay, your loss. 200 0 0
76 236 0 0 Would you, thanks.|I was struggling with it. Would you? Thanks.|I was struggling with it. (Amelia helps you into armbinder, doing up the laces|and straps till your elbows are forced together.) 500 1 -1 PlayerArmbinded()
77 250 0 0 Do they both|need restraining? Lucy is sweet enough when she isn't trying to steal|boyfriends and she knows a lot of Kinbaku techniques. 251
78 250 0 0 Do you need to restrain|me like that too? Maybe, but we didn't need to restrain Lucy, she could|demonstarte some impressive Kinbaku on you. Maybe, but we didn't need to restrain Lucy, she could|demonstrate some impressive Kinbaku on you. 251 0 -1
79 251 0 0 And Hether? And Heather? She is the evil left twin and impersonates her sister.|They both claim to be Lucy. 252 0 0
80 251 0 0 I already know enough|to restrin anybody. I already know enough|to restrain anybody. Lucy could teach you that kinbaku is more than just|restraint. Heather though would teach you about pain. 252 0 1
81 252 0 0 If we work out which one is|Lucy we should untie her. Yes, she would teach you a thing or two,|but how could you tell which one she is? 200 0 0
82 252 0 0 Best keep them|both tightly bound. Probably. If we knew which one was lucy then|she could show us some new techniques. Probably. If we knew which one was Lucy then|she could show us some new techniques. 200 0 1
83 255 0 0 Cool, lets make their|bondage even tighter. Its already plenty tight enough.|Any tighter would cut of their blood circulation. It’s already plenty tight enough.|Any tighter would cut of their blood circulation. 200
84 255 0 0 Are those bindings|painful enough? Let me tie you up and you can find out for yourself. 260 0 0
85 255 0 0 Wow, I doubt I could hold|out long tied like that. A delicate girl like yourself would talk fast, but|you would still hold the pose for as long as I want. 200
86 255 0 0 Is Heather likely|to agree to that? It's got to be better than this, but I think she is|hoping Lucy will break first and claim to be Heather. 200
87 260 0 0 Yes Miss Amelia. (Amelia helps remove your uniform, pulls your wrists|behind you and starts tying you up.) 500 1 -1 AmeliaTies()
88 260 0 3 Okay lets see how|skilled you are. Okay let’s see how|skilled you are. (Amelia quickly secures your|arms with a tight box tie.) 500 0 0 AmeliaTiesDom()
89 260 0 0 You're not tying me up. Fine not now,|but when you ready just call me Miss Amelia. 200 0 0 NotTieMe()
90 260 0 0 We could tie up|Charlotte instead. I don't think she is ready for that yet.|You look far more keen. I don't think she is ready for that yet.|You look far keener. 200 0 0 TieCharlotte()
91 300 0 0 Charlotte310NotDone So you tied these|girls up super tight? No, it's not like that. Amelia tied them|up and told me to help her. 310 0 0 Charlotte310Done()
92 300 0 0 Charlotte320NotDone Are you a regular here? No no. I'm not a member of this club,|it's just a friend asked me to meet her here. 320 0 0 Charlotte320Done()
93 300 0 0 Charlotte330NotDone I bet you prefer|to be tied up. I'm really not into bondage, honest.|I'm just waiting here for a friend. 330 0 0 Charlotte330Done()
94 300 0 0 Charlotte340NotDone You should be tied up now. What do you mean? I really wouldn't like that. 340 -1 1 Charlotte340Done()
95 300 0 0 Charlotte350NotDone What do you think|the twins need now. I dunno, untie them maybe. I don’t know, untie them maybe. 350 0 0 Charlotte350Done()
96 300 0 0 Charlotte360NotDone You're clutching that bag|tight, what's in there? Nothing much, just my homework. 360 0 0 Charlotte360Done()
97 300 0 0 (Go back to the|rest of the grounp.) Any idea which|twin is which? (Amelia is telling Charlotte about Kinbaku.) No, but Lucy is pretty honest unlike her sister.|Hmmm, have you heard of the two guards riddle? 100 300 0 0
98 300 0 0 (Go back to the|rest of the group.) (Amelia is telling Charlotte about Kinbaku.) 100 0 0
99 310 0 0 Don't you like tying? It's not my thing, Amelia just asked for|some help something, that's all. 311 0 1
100 310 0 0 Come on, it looks|like you helped a lot. Maybe little. It's not really my thing. Maybe a little. It's not really my thing. 311 1 0
101 311 0 0 So you prefere|to be tied up. So you prefer|to be tied up. Seriously? Who would like being tied up? 312 -1 1
102 311 0 0 What is your thing? Oh well it's la... wait, my thing...|Sorry I though I just saw my friend in the corridor. 300 0 0
103 312 0 0 I would. Curious, not that I would consider tying you up of course. 300 0 -1
104 312 0 0 Some of the girls here|clearly enjoy it. Well it doesn't seem right the|way some of them express in it. 300 0 0
105 312 0 0 Someone who doesn't|want to admit it. I have no idea what your on about. I have no idea what you’re on about. 300 0 1
106 320 0 0 Oh really, you look|quite settled here. Well, um it's only a college club.|There's nothing wrong with that. 300 0 0
107 320 0 0 So who is this|friend of yours? Oh she's not here yet. 321 0 0
108 321 0 0 Maybe I'm the friend|you're waiting for. Well we hardly know each other,|but we could be friends I suppose. 322 1 0
111 322 0 0 Friends with benefits? I'm not sure what you mean? 323 0 0
112 323 0 0 It's just we always help|each other when in need. Sure, a friend in need is a friend indeed. 300 1 0
113 323 0 0 Come on, there is more to|enjoy than just the ropes. I'm really not sure what you mean.|Anyway was there anything else? 300 -1 1
114 330 0 0 To do. - To do - 300
115 340 0 0 You don't sound certain. No really, I'm not into this kind of thing. 300 0 0
116 340 0 0 Oh, the lady doth|protest too much. No no, wait.. what.. I...|Please don't tie me up. 300 0 1
117 350 0 0 A good spanking should|sort them apart. That's just cruel, they seem to be|in a lot of discomfort as it is. 300 -1 0
118 350 0 0 What about stripping them? I'm not sure what you're trying to achive|and I'm not interested in their predicament. I'm not sure what you're trying to achieve|and I'm not interested in their predicament. 300 0 0
119 360 0 0 Oh okay. It's not like a|dog will eat it here. A dog might find it rather chewy. 300 0 0
120 360 0 0 Come on you can tell me. I told you its just boring homework. 300 -1 0
121 360 0 0 I could help|you with that. No no, I will manage just fine on my own. 300 0 1
122 400 0 0 I wish I could be tied|tightly like that. (Amelia says.) We could make that wish come true. 400
123 400 0 0 I think we should keep|you like that all night. (The girl shakes her head and graons painfully.) (The girl shakes her head and groans painfully.) 400
124 400 0 0 That's an innovative|rope tie. (Amelia says.) Yes Lucy demonstrated it on Natalie|last week. Not classic Kinbaku, put pretty painful. 400
125 400 0 0 (Interrogate her.) (There must be a way to work out which twin she is.) 410
126 400 0 0 Kidnapper (Kidnap her.) - This text should not display - 400 Kidnap()
127 401 400 0 0 (Release her.) (You release her). Thank you.|I'm sick of Heather masquerading as me. I'm lucy. (Amelia speaks up as you reach for a knot.)|Are you sure that is Lucy? 700 420 0 0 ReleaseTwin()
128 400 0 0 (Release her.) (Go back to the|rest of the group.) To do. (Amelia was telling Charlotte about Kinbaku.) 400 100 0 0
400 0 0 (Go back to the|rest of the grounp.) (Amelia was telling Charlotte about Kinbaku.) 100 0 0
129 410 0 0 Are you Lucy? (She nods her head.) 410
130 410 0 0 Are you Heather? (She shakes her head.) 410
131 410 0 0 Is your sister Lucy? (She shakes her head.) 410
132 410 0 0 Would your sister|claim to be Lucy? - This text should not display - 410 WouldYourSister()
133 410 0 0 You've been a naughty girl|and should be punished. (She shakes and pleads. Charlotte speaks up.)|Leave her allown, you're upsetting her. (She shakes and pleads. Charlotte speaks up.)|Leave her alone, you're upsetting her. 410 Naughty() NaughtyLeft()
134 410 0 0 I think you should be|tied up even tighter. (She whimpers and shakes her head.|She is already aching from her arms tied like that.) 410 Tighter() TighterLeft()
135 410 0 0 (Reconsider your|options.) (What do you do now?) 400
136 410 0 0 (Go back to the|rest of the grounp.) (Go back to the|rest of the group.) (Amelia was telling Charlotte about Kinbaku.) 100 0 0
137 420 0 0 Yes, I'm sure|which one this is. (You release her). Thank you.|I'm sick of Heather masquerading as me. I'm Lucy. 400 0 0 ReleaseTwin()
138 420 0 0 No, I'm not sure. (You leave her tied up and reconsider your options.) 400 0 0
139 430 0 0 Kidnapper (Kidnap her.) - This text should not display - 430 0 0 Kidnap()
140 430 0 0 (Release her.) (You release her). Thank you.|I'm sick of Heather masquerading as me. I'm Lucy. 600 0 0 ReleaseLucy()
141 430 0 0 Should I untie you now? Hntnm mm hlrmhdn. Hm'vm ght rmhlln bhd grhmp.|(Untie me already. I've got really bad cramp.) 430 0 0
142 430 0 0 Do you want to stay like|that or join your sister? Thht'f nht fhnnn. Plmhfm hntnm mm.|(That's not funny. Please untie me.) 430 0 0 JoinSister()
143 430 0 0 (Go back to the|rest of the group.) (Amelia was telling Charlotte about Kinbaku.) 100 0 0
144 450 0 0 You're lucky to be|tied so tightly. (Amelia says.) You could be just as lucky. 450
145 450 0 0 (Tickle her.) (You pin her by sitting on her lap and start tickling|the exposed armpit. She giggles helplessly.) 460
146 450 0 0 Thats an intriguing rope tie. That’s an intriguing rope tie. (Amelia says.) Yes Lucy showed us that a while ago.|Asymmetric tying is supposedly common with Kinbaku. 450
147 450 0 0 (Interrogate her.) (There must be a way to work out which twin she is.) 470
148 450 0 0 Kidnapper (Kidnap her.) - This text should not display - 450 Kidnap()
149 451 450 0 0 (Release her.) (You release her). Thank you.|I'm sick of Heather masquerading as me. I'm lucy. (Amelia speaks up as you reach for a knot.)|Are you sure that is Lucy? 700 490 0 0 ReleaseTwin()
150 450 0 0 (Release her.) (Go back to the|rest of the group.) To do. (Amelia was telling Charlotte about Kinbaku.) 450 100 0 0
450 0 0 (Go back to the|rest of the grounp.) (Amelia was telling Charlotte about Kinbaku.) 100 0 0
151 460 0 0 (Stop tickling her.) (You stand up, letting her recover.) 450
152 460 0 0 (Keep tickling her.) (As you you tickle her more intensly she breaks down|in tears of laughter, pleading for you to stop.) (As you tickle her more intensely she breaks down|in tears of laughter, pleading for you to stop.) 465
153 465 0 0 Are you Heather? (She reluctantly nods her head.) nmf mnff.|(You stand up, letting her recover.) 450
154 465 0 0 (Stop tickling her.) (You stand up, letting her recover.) 450
155 465 0 0 (Keep tickling her.) (Charlotte tries to interrupt you.)|That's enough, you're upsetting her now. 465 0 0 CharlotteDislike()
156 470 0 0 Are you Lucy? (She nods her head.) 470
157 470 0 0 Are you Heather? (She shakes her head.) 470
158 470 0 0 Is your sister Lucy? (She shakes her head.) 470
159 470 0 0 Would your sister|claim to be Lucy? - This text should not display - 470 WouldYourSister()
160 470 0 0 You've been a naughty girl|and should be punished. (She shakes and pleads. Charlotte speaks up.)|Leave her allown, you're upsetting her. (She shakes and pleads. Charlotte speaks up.)|Leave her alone, you're upsetting her. 470 Naughty() NaughtyRight()
161 470 0 0 I think you should be|tied up even tighter. (She whimpers and shakes her head.|She is already aching from her arms tied like that.) 470 Tighter() TighterRight()
162 470 0 0 (Reconsider your|options.) (What do you do now?) 450
163 470 0 0 (Go back to the|rest of the grounp.) (Go back to the|rest of the group.) (Amelia was telling Charlotte about Kinbaku.) 100
164 500 490 0 0 To Do. Yes, I'm sure|which one this is. To do. (You release her). Thank you.|I'm sick of Heather masquerading as me. I'm Lucy. 500 450 0 0 ReleaseTwin()
165 600 490 0 0 Can I tie you up now. No, I'm not sure. (You leave her tied up and reconsider your options.) 450 0 0
166 600 500 0 0 Can you tie me up again plaese. To Do. - To do - 500 1 -1
167 600 0 0 (Go back to the|rest of the grounp.) Can I tie you up now? (Amelia is telling Charlotte about Kinbaku.) Sorry I've had enough for one day and could do with|stretching my arms. Can I practice kinbaku on you? 100 600 0 0
168 700 600 0 0 So Lucy, shall we tie|up your captors now. Would you tie|me up please. That is easier said than done with Amelia. I know a lot|of Kinbaku, would like to be tied up instead? Great. Hmmm, shall we keep this simple or would|you like to experience something more advanced? 710 620 1 0 1 0 LucyTieMe()
169 700 600 0 0 ATwinStillTied You must be aching|after that. We should practice|more Kinbaku on Heather. Yes, I need to stretch my arms. Can I tie you up now to work some life back into them? Hmm, that is tempting. 710 600 1 0 0
170 710 600 0 0 ATwinStillTied No, you're not|tying me up. Do you mind if I|kidnap your sister? Aww please, I have an neat idea I want to try. You can take her, as long as you don't let her go. 710 610 0 0
171 600 0 0 (Go back to the|rest of the group.) (Amelia is telling Charlotte about Kinbaku.) 100 0 0
172 610 0 0 Kidnapper I have just the|thing for her. - This text should not display - 600 0 0 Kidnap()
173 610 0 0 !Kidnapper I'm not sure I can|guarantee that. I had better keep her then. We don't want|her missing out on a play date with Jenna. 600 0 0
174 610 0 0 Do we really need to|keep her restrained? Yes. I don't want to be mistaken again and|suffer Jenna's wrath instead of her. 600 0 0
175 620 0 0 Actually maybe|not right now. Suit yourself. Just ask when you are ready. 600 0 0
176 620 0 0 Just a simple tie|would be nice. Okay then. (She soon has your arms tightly|secured behind your back.) How do you like that? 621 1 0 PlayerTied()
177 620 0 0 What did you have in mind? Have you tried Tsuri Kinbaku before? 630 0 0
178 621 0 0 Hmm, the same|old arm bondage. It's tried and tested. I doubt you will get|out of that without help. Have fun now. 622 0 0 CanLeave()
179 621 0 0 Thanks. You're welcome.|Have fun now. 622 1 0 CanLeave()
180 621 0 0 Umm, it's a bit too tight. Nonsense, your circulation is fine and we wouldn't|want you just slipping out of it. Have fun now. 622 0 -1 CanLeave()
181 621 0 0 Not bad, but|could be better. You try restraining someone with cramp in your arms.|See if you can escape that. 622 -1 1 CanLeave()
182 622 0 0 (Try struggling in|this bondage.) It's nice to see someone demonstrated how good|your rope work is and how helpless they are. 622 0 0 StruggleForLucy()
183 622 0 0 You can untie me now. Ohh agh. Sorry, I think my arms are cramping up again. 622 0 0 WillLucyUntie()
184 622 0 0 Common_PlayerGagged @Nhh ghn hntnm mm nhw.|(You can untie me now.) Sorry, I can't make out what you're trying to say. 622 0 0
185 622 0 0 (Try escaping|the rope tie.) (There isn't any slack in the ropes and there doesn't|even seem to be a knot. Lucy smiles as you try.) 622 0 0 StruggleForLucy()
186 622 0 0 Could we try|something else? Ohh yes, I know just the thing.|(She guides you towards a corner of the room.) 632 1 0
187 622 0 0 Common_PlayerGagged (Look at Lucy expectantly.) What is it; do you want to try some more Kinbaku? 623 0 0
188 622 0 0 So do you get|tied up often? I think that’s enough chit chat.|(She takes some cloths and gags you.) 622 0 0 PlayerClothGag()
189 623 0 0 (Nod your head.) Oh goodie. Come here.|(She excitedly escorts you to a corner of the room.) 632 1 0
190 623 0 0 (Shake your head.) Aw, well I suggest you go and try someone else then. 622 0 0
191 630 0 0 No, what is that? It's Kinbaku with you suspended. First you need|a harness. (She ties up your arms and chest.) 631 0 0 PlayerTied()
192 630 0 0 Yes, I think. That's a start. Let's get you ready to be suspended.|(She ties up your arms and chest.) 631 0 0 PlayerTied()
193 630 0 0 Actually maybe|not this time. Nonsense, you really should try being suspended.|(She starts tying up your arms and chest.) 631 0 0 WillLucyTie()
194 631 0 0 Are you sure|about this? Of course I am. You won't be the first girl I've hung.|(She pushes you towards a corner of the room.) 632 0 -1
195 631 0 0 Hurry up. I can't|wait to try this. Yes, I'm going as quickly as I can.|(She takes you towards a corner of the room.) 632 1 1
196 631 0 0 How many times|have you done this? I'm not sure, too many to bother counting.|(She takes you towards a corner of the room.) 632 0 0
197 632 0 0 Why are you pushing|me over here? Because there is a suspension ring already setup|in this corner. (She starts tying you to it.) 633 0 0 TyingTime()
198 632 0 0 (Follow her direction.) That’s it. Keep stand under this ring now.|(She starts tying you to it.) 633 0 0 TyingTime()
199 633 0 0 That ring is|strong enough? Of course it is. Each anchor in the ceiling is|rated to hold at least two girls each. 634 0 -1 TyingTime()
200 633 0 0 What are you doing? 'Tachi tsuri' is tied to stand up. Now tying|one leg up turns that into 'Kataashi age tsuri' 634 1 0 TyingTime()
201 633 0 0 (Watch quietly.) 'Tachi tsuri' is tied to stand up. Now tying|one leg up turns that into 'Kataashi age tsuri' 634 0 0 TyingTime()
202 633 0 0 (Pull away|from Lucy.) (The rope from the ceiling stops you, while Lucy hoists|one of your legs up, leaving you standing precariously.) 634 0 0 TyingTime()
203 634 0 0 You make that|look too easy. Yep, I use the ropes and ring like a pulley|hoist to manipulate you however I want to. 635 1 0 TyingTime()
204 634 0 0 (Try struggling.) (She quickly ties off the ropes and starts on the|next leg.) Hold still a minuet, I won't be long. 635 0 -1 TyingTime()
205 634 0 0 (Watch quietly.) (Humming quietly while she works, Lucy secures your|raised leg and starts tying rope to the other leg.) 635 0 0 TyingTime()
206 635 0 0 I think this is|already enough. No point stopping now. (She hoists your other|leg up, leaving you dangling in mid air.) 636 0 -1 TyingTime()
207 635 0 0 Common_PlayerGagged @Hm thnng thnf Hmf|hlrmhdn mnhhgh. No point stopping now. (She hoists your other|leg up, leaving you dangling in mid air.) 636 0 -1 TyingTime()
208 635 0 0 You're going to do|the same to that leg? Yes. I could leave you partially suspended, but I|fancy suspending you fully. 'M ji kaikyaku tsuri' style. 636 0 0 TyingTime()
209 635 0 0 You're not hanging|about with that rope. Nope, that is for you to do. (She hoists your other|leg up, leaving you dangling in mid air.) 636 1 0 TyingTime()
210 635 0 0 (Watch quietly.) (Humming quietly, Lucy hoists your other|leg up, leaving you dangling in mid air.) 636 0 0 TyingTime()
211 636 0 0 Have you finished? I think so. (She slowly spins you all the way round,|checking and tweaking her rope work.) 638 0 0 Wait()
212 636 0 0 Errr, could you|rearrange my skirt please? Sorry, this method can leave|bound person very exposed. 638 0 -1 Wait()
213 636 0 0 (Try to free|you arms.) Careful there. If you did manage to untie yourself,|you would probably flop back and crack your head. 638 0 0 Wait()
214 636 0 0 (Struggle desperately.) Haha. I like to see a spirited damsel,|even if their struggles are futile. 638 1 -1 Wait()
215 636 0 0 This is fun. So you like being the damsel then? We should|dress you up as a princess before tying you up. 637 1 0 Wait()
216 637 0 0 Err no thanks. Suit yourself, but submissive members tend to be|used as models for interclub displays and dioramas. 638 0 0
217 637 0 0 Ohh would you please. Not now, but sometimes we do bondage displays and|dioramas. You could be a model in one. 638 1 -1
218 638 0 0 So what do we do now you|have me all strung up? Were you paying attention to how|I tied you and learnt something? 639 0 0
219 638 0 0 Common_PlayerGagged (Look curiously to Lucy.) Were you paying attention to how|I tied you and learnt something? 639 0 0
220 639 0 0 Yes it was fascinating. Good, you can learn a lot just watching others and|there is nothing like experiencing it for yourself. 640 1 0 LearntRopeSkill()
221 639 0 0 (Nod your head.) Good, you can learn a lot just watching others and|there is nothing like experiencing it for yourself. 640 1 0 LearntRopeSkill()
222 639 0 0 Not really, I kind|of space out there. Honestly, there is no helping some people.|You're as hopeless as Chloe. 640 -1 0
223 639 0 0 (Shake your head.) Honestly, there is no helping some people.|You're as hopeless as Chloe. 640 -1 0
224 640 0 0 It would be a shame not to|really enjoy this moment. Wow, how horny are you! You want some relief? 660 0 0
225 640 0 0 (Moan alluringly.) You really are a horny girl. Do you want some relief? 660 0 0
226 640 0 0 Will you be my mistress|and keep tying me up? Sorry I'm not into that whole mistress thing.|Although tying you up isn't a problem. 640 0 0
227 640 0 0 Can you untie me now? I could, but that rope work was too much|effort to just release you so soon. 640 0 0
228 640 1 -1 Pretty please, untie|me Miss Lucy. Seeing as you ask so nicely.|(She carefully releases you from bondage.) 643 1 0 PlayerReleased()
229 640 0 0 Common_PlayerGagged (Whimper and try to|spit out your gag.) Awww, you poor thing. Let me help you with that.|(She removes your gag.) 641 0 0 PlayerWhimperLucy()
230 640 0 0 Common_PlayerGagged @Bhnhnh. What? Oh, I am being delicate with you.|Maybe you have jaw ache? (She removes your gag.) 641 0 -1 PlayerBhnhnhLucy()
231 640 0 0 Banana. What's the matter?|You asked to be tied up and I am being gentle with you. 642 0 0
232 6400 0 0 Can I ask you something? Sure. It's not like your going anywhere. 650 0 0
233 641 0 0 Thank you Miss Lucy. You have such as sweet mouth,|it's a shame you were gagged. 640 1 -1
234 641 0 0 Thanks. That’s okay. 640 0 0
235 641 0 0 About bloody time. Well if that is all you have to say! (She Forces a|large ball gag in your mouth and buckles it tight.) 640 -2 0 RudeToLucy()
236 642 0 0 I know but this is far|more than I expected. Oh, that's fine. You should be careful if you are|that delicate in this club. (She releases you.) 643 0 -1 PlayerReleased()
237 642 0 0 It's a safe word,|what are you playing it? Oh my, I'm sorry, really sorry. I didn't mean to|get carried away with this. (She releases you.) 643 0 2 PlayerReleased()
238 642 0 0 Stop messing about and|untie me you dumb blonde. You know cows can't speak! (She forces a large|ball gag in your mouth and buckles it tight.) 640 -2 0 RudeToLucy()
239 642 0 0 It's okay. I just got a|bit nervous, that's all. That's fine.|I won't do any more unless you ask me to. 640 0 0
240 643 0 0 That was fun.|Can we do some more? That's enough suspension for now, but no reason you|can't be kept tied up. (She starts binding you.) 644 1 -1 PlayerTied()
241 643 0 0 That was fun.|Can I try that on you? I'm glad you enjoyed it, but there is no way I'm|letting myself get tied up again at the moment. 647 1 0
242 643 0 0 Right now it's your turn. What? No, please NO!|I don't like being tied up at the best of times. 647 -1 1
243 643 0 0 Is that all? For now yes. Come and see me later if you|want to try suspending someone. (She leaves you.) 649 0 0 LucyPromise()
244 644 0 0 Don't forget my big mouth. How could I? (She packs your mouth|full with a cloth gag.) How's that? 645 0 -1 PlayerClothGag()
245 644 0 0 This is great. You are really into this! How’s that? 646 1 0
246 644 0 0 What, just another|boring box tie? It's good enough to keep you out of or in trouble.|A cloth gag will deal with any criticisms. 645 -1 0 PlayerClothGag()
247 645 0 0 @Thm ghg fmmmf|mffmgtnvm. Yes, reduced nicely to no more|than incoherent mumbling. 646 1 0
248 645 0 0 (Stay quiet.) Looks like you know how to behave when gagged. 646 0 -1
249 646 0 0 (Struggle playfully.) Good, have fun. Come and see me later if you|want to try suspending someone. (She leaves you.) 649 1 -1 LucyPromise()
250 646 0 0 That’s fine. Good, have fun. Come and see me later if you|want to try suspending someone. (She leaves you.) 649 0 0 LucyPromise()
251 646 0 0 (Whimper and beg.) You need to find a play mate. See me later if you|want to try suspending someone. (She leaves you.) 649 0 -1 LucyPromise()
252 646 0 0 (Look bored.) You need to find a play mate. See me later if you|want to try suspending someone. (She leaves you.) 649 0 0 LucyPromise()
253 647 1 0 Awww please,|do it for a friend? It's nice of you to think of me like that, but my|arms really are still aching from what Amelia did. 648 1 0
254 647 0 1 Don't disobey me. I said no, leave me alone. (She leaves you.) 649 -1 1 ActorLeftAndCanLeave()
255 647 0 0 Fine then. Thanks for understanding. Was there anything else? 648 0 0
256 648 0 0 Can we do some more? That's enough suspension for now, but no reason you|can't be kept tied up. (She starts binding you.) 644 1 -1 PlayerTied()
257 648 0 0 I suppose not. No need to be so gloomy. See me later if you|want to try suspending someone. (She leaves you.) 649 0 0 LucyPromise()
258 650 @To Do. - To do - 640
259 660 0 0 Oh please! I can't even rub|against a desk like this. Sorry I'm not a lesbian|or into pleasuring helpless girls. 640 0 0 FriendOfAFriend()
260 660 0 0 (Nod eagerliy.) Sorry I'm not a lesbian|or into pleasuring helpless girls. 640 0 0 FriendOfAFriend()
261 660 0 0 Just a gag would be nice. Oh, in that case I can help restrain your voice.|(She straps a gag on you.) 640 0 -1 PlayerBallGagged()
262 660 0 0 No, errr... It's not like that. It's okay, bondage does seem confuse some people. 640 1 -1
263 660 0 0 (Blush and avoid her gaze.) It's okay, bondage does seem confuse some people. 640 0 -1
264 661 0 0 (Struggle in the ropes.) (You buck and writhe, but the firm|embrace of the ropes holds you captive.) 661 0 0 WaitingForFriend()
265 661 0 0 (Hang quietly.) (You wait as patiently as you can while the pressure|of the ropes gradually bite into you arms and chest. 661 0 0 WaitingForFriend()
266 661 0 0 (Try escaping.) (You wriggle and test the bonds, but the suspension|pulls all slack out of the ropes around your arms. 661 0 0 WaitingForFriend()
267 661 0 0 (Try Calling for help.) (Most of the club seem to be busy|or just trying to ignore your cries.) 661 0 0 WaitingForFriend()
268 661 0 0 @BHNHNH. (The safe word seems to have fallen on death ears.|Lucy is too busy chatting, her back turned to you.) 661 0 0 WaitingForFriend()
269 662 0 0 Common_PlayerGagged @Hmllh Ghffn Oh where are my manners, here lets get that|out of your mouth. (She removes the gag.) 663 0 0 PlayerIsUngagged()
270 662 0 0 Common_PlayerGagged (Stay silent.) Oh where are my manners, here lets get that|out of your mouth. (She removes the gag.) 663 0 -1 PlayerIsUngagged()
271 662 0 0 Hello Cassi. Lucy says you have a problem she can't help you with. 663 0 0
272 662 0 0 Why don't we see how cute|you look tied up like this. Don't tempt me. I'm supposed to be|looking after the club while Jenna is out. 663 0 1
273 662 0 0 !Common_PlayerGagged (Stay silent.) Awww, you're a little nervous I see.|Don't fret, I'm just here to help you. 663 0 -1
274 663 0 0 You are here to help me? Sure I'll help you. I'm going to help you with|the really important things that Lucy won't. 664 0 0
275 663 0 0 What are going|to do to me? I'm going to help a very horny girl with|a very important matter that Lucy won't. 664 0 -1
276 663 0 0 Can you untie me now? What, after the effort Lucy put into this? No way.|Besides I don't think Lucy was kidding about you. 664 0 0
277 664 0 0 Oh god please.|This is so frustrating. Wow, Lucy you weren't kidding about her.|Steady on there, first things first. 665 1 0
278 664 0 0 (Blush and avoid her gaze.) Hehe, you're horny and we know it,|but first things first. 665 0 -1
279 664 0 0 What are you messing|about at. Get on with it. Easy tiger. First we need to get you ready for action. 665 -1 1
280 664 0 0 Actually I'm fine.|I don't need help from you. Oh, umm, in that case She is all yours|again Lucy. (Cassi sulks off muttering.) 640 -1 1 LoadLucyNoLeave()
281 665 0 0 What do you mean? That chastity belt has got to go for a start.|(Lucy leaves Cassi and you to it.) 666 0 0 PlayerIsNotChaste()
282 665 0 0 (Stare at her.) Come on, let's get rid of this chastity belt.|(Lucy leaves Cassi and you to it.) 666 0 0 PlayerIsNotChaste()
283 666 0 0 Sorry but I don't|have a key for it. That's not a problem. Fortunately for you, I|have a universal key to unlock belts like that. 667 0 -1
284 666 0 0 I happen to like|being chaste. Really? One, that is weird, two, I have a universal|belt key and three, you already made your choice. 667 -1 0
285 666 0 0 RevengeBelted Amanda and Sarah|trapped me in it. Well neither of them are here and I happen to have|a universal key to fit belts like that one. 667 0 0
286 666 0 0 You can remove this belt? Of course, that’s a fairly common belt type|I happen have a universal key for. 667 0 0
287 667 0 0 You have a key?|Please free me. I will, but I'll also make sure it is securely|locked back on before you are untied. 668 1 -1 RemovePlayersChastity()
288 667 0 0 I didn't know you could get|universal keys for belts. Unfortunately some have custom anti tamper locks.|I'll make sure you are locked back in afterwards. 668 0 0 RemovePlayersChastity()
289 667 0 0 Don't just stand there.|Get this damn belt off me. No need to be like that.|I'll lock it back on before untying you. 668 -1 1 RemovePlayersChastity()
290 668 0 0 I feels kind of odd,|not being chaste now. Yeah, I wish I knew that feeling better.|Anyway, panties or sock? 669 1 0
291 668 0 0 I want that key. No, you can buy your own. Enough chat,|you only have one choice. Panties or sock? 669 0 1
292 668 0 0 Please don't lock me|back in that thing. Free choice is a rare luxury.|You do have one choice though, panties or sock? 669 0 -1
293 668 0 0 What is the point in a|belt if others have a key? Like the Police, chastity belts only exist to punish|you, not protect you. Anyway, panties or sock? 669 0 0
294 668 0 0 Aaaah! The whole club|will see my clit like this. Relax, we've all seen and got one, but I can|help quieten your anxiety. Panties or sock? 669 1 -2
295 668 0 0 Does that key work|on any lock? No. It only fits some common chastity belts.|Now that's dealt with, panties or sock? 669 0 0
296 669 0 0 Panties. Very well. (She balls up the large panties and|packs your mouth with it.) Try to close your lips. 671 1 0 PlayerPantieGagged()
297 669 0 0 Sock. Very well. (She stuffs your mouth full|with a sock.) Try to close your lips. 671 1 0 PlayerSockGagged()
298 669 0 0 (Keep your mouth shut.) Don't tempt me to punish you.|Socks or panties is your only choice now. 669 0 0
299 669 0 0 What kind of a|choice is that? It's a simple one.|Which do you want to gag on while in heaven? 669 0 0
300 669 0 0 I don't want|to do this. It's this or be left hanging there all alone.|Either way you will be gagged. 670 0 0
301 670 0 0 Okay, panties please. (She balls up the large panties and packs your mouth|with it.) That's better. Try to close your lips. 671 0 -1 PlayerPantieGagged()
302 670 0 0 Okay, sock please. (She stuffs your mouth full with a sock.)|That's better. Try to close your lips. 671 0 -1 PlayerSockGagged()
303 670 0 0 No way is underwear|going in my mouth. Have it your way. (She takes a ball gag|and silences you with it, then leaves.) 661 -1 1 LeftBallGagged()
304 671 0 0 PantieGagged (Spit out the panties.) (Cassi is too quick. Before your mouth is free, she|pushes the panties back in and tapes them in place.) 672 -1 0 PlayerTapeGagged()
305 671 0 0 SockGagged (Spit out the sock.) (Cassi is too quick. Before your mouth is free, she|pushes the sock back in and tapes them in place.) 672 -1 0 PlayerTapeGagged()
306 671 0 0 @Hmf thnf nmgmffhrn?|(Is this necessary?) Totally! (Cassi traps the underwear|in your mouth with a tape gag.) 672 0 0 PlayerTapeGagged()
307 671 0 0 PantieGagged (Try to close your|mouth around the panties.) (It is more than a mouth full. Your lips don't|meet before Cassi smoothes tape over them.) 672 0 -1 PlayerTapeGagged()
308 671 0 0 SockGagged (Try to close your|mouth around the sock.) (It is more than a mouth full. Your lips don't|meet before Cassi smoothes tape over them.) 672 0 -1 PlayerTapeGagged()
309 671 0 0 PantieGagged (Bite down hard|on the panties.) Hey, easy on there.|(She tapes over your bared teeth to hold the panties in.) 672 0 1 PlayerTapeGagged()
310 671 0 0 SockGagged (Bite down hard|on the sock.) Hey, easy on there.|(She tapes over your bared teeth to hold the sock in.) 672 0 1 PlayerTapeGagged()
311 671 0 0 PantieGagged (Hum happily.) Are you trying to make Chloe jealous?|(Cassi secures the panties in place with a tape gag.) 672 1 0 PlayerTapeGagged()
312 671 0 0 SockGagged (Hum happily.) Are you trying to make Chloe jealous?|(Cassi secures the sock in place with a tape gag.) 672 1 0 PlayerTapeGagged()
313 672 0 0 PantieGagged (Chew on the panties|filling your mouth.) (You start wondering whether the panties were clean.) 674 0 0 CassiLegTie(1)
314 672 0 0 SockGagged (Chew on the socks|filling your mouth.) (You start wondering whether the sock was clean.) 674 0 0 CassiLegTie(2)
315 672 0 0 PantieGagged (Spit out the panties.) (It is too late now, the tape holds the panties firmly|in your mouth.) 674 0 0 CassiLegTie(3)
316 672 0 0 SockGagged (Spit out the socks.) (It is too late now, the tape holds the sock firmly in|your mouth.) 674 0 0 CassiLegTie(4)
317 672 0 0 (Hum happily.) (The combined underwear and tape gag|almost completely mutes you.) 674 1 0 CassiLegTie(5)
318 672 0 0 (Wait quietly.) (You ponder your predicament.) 674 0 -1 CassiLegTie(6)
319 673 0 0 (Shake your|head nervously.) These have got to go, but don't worry,|the club has spare panties for times like this. 674 0 -1 PantiesCut(0)
320 673 0 0 (Nod vigorously.) You know, if you wore a chastity belt, I would|not have had to cut off good pair of panties. 674 1 0 PantiesCut(1)
321 673 0 0 (Shake your hips violently.) Sorry, but it's the only way without untying your legs.|The club has spare panties for times like this. 674 0 1 PantiesCut(0)
322 673 0 0 @Bhnhnh. (Cassi doesn't seem to hear you and carries on.)|The club has spare panties for times like this. 674 0 0 PantiesCut(0)
323 673 0 0 !TsuriFrogTied (Kick out at Cassi.) Ouch. You wanted more bondage? (She frog ties|your legs and finishes cutting away your panties.) 674 0 0 PantiesCut(2)
324 674 0 0 (Nod happily.) I hope you enjoy this as much as I wish I could.|(Cassi starts nuzzling your pussy.) 675 1 0 CassiCuffs()
325 674 0 0 @Nhh hhd bmttmr mhgm thnf|whrth whnlm, bntgh! Your mouth is making that underwear filthy.|(Cassi hesitates, and then starts nuzzling your pussy.) 675 -1 1 CassiCuffs()
326 674 0 0 @Bhnhnh. (Neither Cassi or the club seem to be able to|hear you. Cassi starts nuzzling your pussy.) 675 0 0 CassiCuffs()
327 675 0 0 (Whimper uneasily.) (You feel Cassi's tongue gently part your lips|and start doing soft strokes up you clitoris. 680 0 -1
328 675 0 0 (Thrust your|hips impatiently.) (You feel Cassi's tongue plunge through your lips|and start doing long firm strokes up you clitoris. 680 0 1
329 675 0 0 (Relax and enjoy|the sensation.) (You feel Cassi's tongue pushes your lips apart|and start doing long strokes up you clitoris. 680 0 0
330 6800 0 0 (Quietly savor|Cassi's technique.) (You hang there entranced as Cassi's tongue|continues to dances on your clitoris.) 680 0 0 CassiCunni(1)
331 680 0 0 (Moan of pleasure.) (Cassi keeps teasing your clitoris, working that|sweet spot and prolonging your stifled moans.) 680 0 0 CassiCunni(2)
332 680 0 0 (Breathe heavily.) (Cassi maintain the stimulation of your clitoris,|while your whole body heaves with each breathe.) 680 0 0 CassiCunni(3)
333 680 0 0 (Grunt helplessly.) (Cassi keeps on licking steadily,|while you squirm and gag on the panties.) 680 0 0 CassiCunni(4)
334 680 0 0 (Mumble impatiently.) - cassi changes style of stimulation. reduce arousal? 680 0 0 CassiCunni(5)
335 680 0 0 (Thrust your hips.) (Cassi keeps teasing clitoris,|keeping rhythm with you thrusting.) 680 0 0 CassiCunni(2)
336 680 0 0 (Shift your hips awkwardly.) - cassi changes style of stimulation. reduce arousal? 680 0 0 CassiCunni(5)
337 680 0 0 CanPressCassi (Use your feet to press her|head into your crotch.) (Wrapping your feet round her head, you startle Cassi,|but she quickly resumes licking your clitoris.) 680 0 0 CassiCunni(6)
338 680 0 0 PressingCassi (Press her head hard|into your crotch.) (Cassi's mouth and nose get sealed tight against you.|She starts struggling, but doesn't stop licking.) 680 0 0 CassiCunni(7)
339 680 0 0 ForcingCassi (Keep pressing her|head hard against you.) (Cassi struggles helplessly.|Unable to pull away, she tries licking you harder. 680 0 0 CassiCunni(8)
340 680 0 0 ForcingCassi (Let Cassi pull back.) (Cassi keeps licking you, but tilts her head, looks|up anxiously and breathes through her nose again.) 680 0 0 CassiCunni(9)
341 680 0 0 PressingCassi (Let go of her head.) (You let your legs drop away from Cassi,|who carries on teasing you with her tongue.) 680 0 0 CassiCunni(10)
342 680 0 0 (Try to ignore Cassi.) (You try distracting yourself with mental and pain|techniques, but Cassi’s tongue is unrelenting.) 680 0 0 CassiCunni(11)
343 680 0 0 (Struggle frantically.) (Cassi leans into your crotch, keeping hear|tongue on you clitoris as you buck and shake.) 680 0 0 CassiCunni(12)
344 681 0 0 (Whine gleefully.) (Your orgasm subsides, but you realise that Cassi|hasn't stopped and is still licking you intensely.) 680 0 -1 CassiContinue()
345 681 0 0 (Shiver with delight.) (Your orgasm subsides, but you realise that Cassi|hasn't stopped and is still licking you intensely.) 680 1 0 CassiContinue()
346 681 0 0 (Shriek into your gag.) (Your orgasm subsides, but you realise that Cassi|hasn't stopped and is still licking you intensely.) 680 0 0 CassiContinue()
347 682 0 0 (Try to free yourself.) The ropes have not got any looser. (Cassi gets her|breath back and hurries off to find her key.) 661 0 0 NoActor()
348 682 0 0 @HMLP MM! (The girls watching laugh as Cassi gets her|breath back and hurries off to find her cuffs key.) 661 0 0 NoActor()
349 682 0 0 (Hang there.) (Cassi gets her breath back and hurries off to|find her handcuff key, leaving you there.) 661 0 0 NoActor()
350 685 0 0 (Nod your head.) You'll soon realise how cramped it gets, suspended for|a while like that. I had better untie you now. 687 0 0
351 685 0 0 (Shake your head.) Kinky girl, you love this predicament.|(She resumes licking your clitoris.) 680 1 -1
352 686 0 0 (Nod your head.) Maybe another time if you're good to me.|I really should untie you now. 687 0 0
353 686 0 0 (Shake your head.) Don't get greedy, you've had far more than|some of us get. I really should untie you now. 687 -1 0
354 687 0 0 (Nod your head.) First about your panties I sort of cut up earlier.|It's okay, the club can lend you this chastity belt. 688 0 0
355 687 0 0 (Shake your head.) You are gluten for punishment! Well I should|get back to Alyssa, Bye. (She leaves you hanging.) 661 0 -1 PunishmentGlutten()
356 688 0 0 (Nod your head.) Great, Do you need any extras to|keep you kinky places occupied? 689 0 -1
357 688 0 0 (Shake your head.) Come on, you need to wear some form of underwear.|I can spice it up if you like? 689 0 0
358 689 0 0 (Nod your head.) These should do nicely. (She slips an egg into your|vagina and plugs your ass, then locks the belt on.) 690 0 0 AddedExtras(0)
359 689 0 0 (Shake your head.) Stop arguing. (She slips an egg into your|vagina and plugs your ass, then locks the belt on.) 690 0 0 AddedExtras(1)
360 690 0 0 (Bow your head|and whimper.) Awww there there, I've had to endure worse.|(She releases you.) 691 0 -1 PlayerFreed()
361 690 0 0 (Frown at her.) Oops, it's too late now anyway.|(She releases you.) 691 0 1 PlayerFreed()
362 690 0 0 (Moan happily.) I knew you would like it.|(She releases you.) 691 1 0 PlayerFreed()
363 690 0 0 (Wait quietly.) It won't take long now.|(She releases you.) 691 0 0 PlayerFreed()
364 691 0 0 That was awesome.|Can we try it again? I'm glad you like it, but you need will a stretch|and I really need to check on Alyssa soon. 691 0 0
365 691 0 0 Great, now its your|turn to be eaten. That might be rather difficult right now|and I really need to check on Alyssa soon. 691 0 0
366 691 0 0 It might be just cramp,|but I'm still shacking. Feels great doesn't it. 691 0 0
367 691 0 0 What was all that about? Well... I... errrr...|I though it was obvious and you seemed to be enjoying it. 691 0 0
368 691 0 0 Common_PlayerChaste Unlock this damn|belt right now! It will remain locked up until you've|had a chance to calm down get used to it. 691 0 0
369 691 0 0 Common_PlayerChaste Please let me out|of this belt. I've only just locked it on. I think you should|try wearing it for a whole day, maybe even 2. 691 0 0
370 691 0 0 Common_PlayerChaste This plug, what if|I need the toilet? You'll be fine... For tonight at least,|I'll make sure I bring the key to college tomorrow. 691 0 0
371 700 0 0 So Lucy, shall we tie|up your captors now. That is easier said than done with Amelia. I know a lot|of Kinbaku, would like to be tied up instead? 710 0 1
372 700 0 0 You must be aching|after that. Yes, I need to stretch my arms.|Can I tie you up now to work some life back into them? 710 1 0
373 710 0 0 No, you're not|tying me up. Aww please, I have a neat idea I want to try. 710 0 0
374 710 0 0 Tie up Amelia or|Charlotte instead. No, I really want to try out a new idea on you. 710 0 0
375 710 0 0 ATwinStillTied Okay, but make it quick. You're just going to leave|your sister like that? We'll see, you might enjoy this. (She starts with a|box tie, helps you lie down and ties your ankles.) She can hold that pose a bit longer.|Come on, you could keep her company. 720 710 0 0
376 720 710 0 0 Come on this is|nothing special. Okay, but make it quick. Just a moment. (She ties a crotch rope going around|your arms and then hogtied to your ankles.) We'll see, you might enjoy this. (She starts with a|box tie, helps you lie down and ties your legs.) 730 720 0 1 PlayerTied()
377 720 710 0 0 I can't move|away like this. Sure, show me|what you can do. Thats the idea. (She ties a crotch rope going around|your arms and then hogtied to your ankles.) Thanks, you might enjoy this. (She starts with a|box tie, helps you lie down and ties your legs.) 730 720 0 1 -1 0 PlayerTied()
378 730 710 0 0 (Try struggle in|this bondage.) I'm not sure I want|to be tied up. (As you kick your legs it yanks the crotch rope deep into you.) Relax, you might enjoy this. (She starts with a|box tie, helps you lie down and ties your legs.) 740 720 0 -1 PlayerTied()
379 720 0 0 Come on this is|nothing special. Just a moment. (She ties a crotch rope, brings it|up around your arms and hogties you with it.) 730 0 1 PlayerTied()
380 720 0 0 Could you make this|a more restrictive? Certainly. (She ties a crotch rope, brings it|up around your arms and hogties you with it.) 730 1 -1 PlayerTied()
381 720 0 0 Well I can't just|walk away like this. That’s the idea. (She ties a crotch rope, brings it|up around your arms and hogties you with it.) 730 0 -1 PlayerTied()
382 730 0 0 (Reach for a knot.) (You reach up behind your back to find a knot, but|that pulls the crotch rope, digging it deeper into you. 730 0 0 HelplessKnot()
383 730 0 0 (Try struggle in|this bondage.) (As you kick your legs, they yank on the crotch|rope, making it cut deep into your pussy.) 730 0 0 HelplessStruggle()
384 730 0 0 That’s enough. You|can let me go now. Just a moment you’re almost done.|(She straps a gag on you, cutting your protests short.) 740 0 -1 PlayerBallGagged()
385 730 0 0 This is great. Yes, but something is missing. (She securely|straps a gag in your mouth.) That's better. 740 1 -1 PlayerBallGagged()
386 730 0 0 I want to see you|tied like this now. Those that ‘want’ don't get. Learn some manners,|like asking "May I have a gag please?” Yes you may. 740 0 0 PlayerBallGagged()
387 740 0 0 (Reach for a knot.) (You reach up behind your back to find a knot, but|that pulls the crotch rope, digging it deeper into you.) 740 0 0 HelplessKnot()
388 740 0 0 (Try struggling in|this bondage.) (As you kick your legs, they yank on the crotch|rope, making it cut deep into your pussy.) 740 0 -1 HelplessStruggle()
389 740 0 0 @Bhnhnh. Calm down, this isn't too bad if you don’t struggle.|You can mange to hold this position for a bit longer. 740 0 0 HelplessTime()
390 740 0 0 (Spit the gag out.) (You try in vain to get the ball out of your mouth.)|Don't worry, that's not the same gag I was drooling over. 740 0 0 HelplessTime()
391 740 0 0 (Chew on the gag.) Hmmm, maybe I should find you a bigger ball gag or|maybe pack something else into you mouth first. 740 0 0 HelplessTime()
392 740 0 0 @Thhtf mnhhgh,|lmt mm gh nhw. What is that? I can't quite make out what|you're saying with your mouth full. 740 0 0 HelplessTime()
393 740 0 0 @Thhng nhh, thnf|hhgtnm Hmf hwfhmm. You're welcome. I though you would enjoy it. 740 0 0 HelplessThankYou()
394 740 0 0 (Tug on the|crotch rope.) (You can't help softly moaning with pleasure|and pain as you tease yourself.) 740 0 0 HelplessTug()
395 750 0 0 @Wnll nhh lmt|mm gh nhw? Yes, in a moment. If you're interested, I could|demonstrate another kinbaku method on you? 760 0 0
396 750 0 0 @Plmhfm lmt mm gh.|Hm'll bm h ghhd gnrl. A good girl? You would be a great girl|if let me demonstrate more Kinbaku on you. 760 1 -1
397 750 0 0 @Bhnhnh? You were fine like that a moment ago. Maybe you're|aching and want to be tied up another way? 760 0 0
398 750 0 0 (Whimper.) What's the matter?|Experiencing some more Kinbaku might cheer you up. 760 0 0
399 750 0 0 (Point to the|crotch rope.) I might like tying people up, but I'm not|into pleasuring other girls. Sorry. 750 0 0
400 760 0 0 (Shake your head.) Are you really sure? You're such a super cute model. 765 0 0
401 760 0 0 (Nod your head.) Great. I want try something a little more adventurous.|(She releases your legs.) 770 1 0
402 760 0 0 @N fhpphfm fh Don't worry, I will try something extra special to|brighten you up, I promise. (She releases your legs.) 770 0 1
403 760 0 0 @Plmhfm, Hm'm bmggnng|nhh. Lmt mm gh. Are you really sure? You're such a super cute model. 765 0 -1
404 765 0 0 @Nh mhrm plhfm.|Hntnm mm. I suppose I can. (She frees you and helps you up.)|If you want to be tied up again, just ask. 600 0 0 PlayerFreed()
405 765 0 0 @Nhh rmhlln thnng|Hm'm fhpmr ghtm? Why wouldn't I? You are helplessly cute.|Be a friend and help model something else. 760 0 0
406 770 0 0 (Point at your arms.) They can stay tied like that.|(She helps you up and to the corner of the room.) 632 0 0
407 770 0 0 @Hrm nhh lmttnng mm gh?|(Are you letting me go?) No, I just needed you legs untied.|(She helps you up and to the corner of the room.) 632 0 0
408 770 0 0 (Get away from her.) Where do you think your going? (She grabs ropes tied|round you and directs you to the corner of the room.) 632 1 0
409 800 0 0 @HMLP, Hmt'f Hmhthmr! You silly. I said tether, not leather. (Hearing Heather's|response, the club dismiss your muffled outburst) 810 0 0
410 800 0 0 @Bhnhnh? Where do you want that banana to go, you naughty girl? 810 0 0
411 800 0 0 @Hm gnhw.|(I know.) So you intentionally freed me, then let me bind and|gag you? You should be punished for being that kinky. 810 1 0
412 810 0 0 (Glare at her.) Oh, so you think this is isn't sever enough?|I suppose I could intensify this for you. 811 0 1
413 810 0 0 @Bntgh. Lmt mm gh!|(Bitch. Let me go!) Oh, so you think this is isn't sever enough?|I suppose I could intensify this for you. 811 -1 0
414 810 0 0 @Plmhfm hntnm mm.|(Please untie me.) Awww, do you submit to my will? 820 0 -1
415 810 0 0 (Whimper and bow|to her.) Awww, do you submit to my will? 820 1 -1
416 810 0 0 (Struggle to escape|the hogtie.) (You struggle madly, but there is no slack in the ropes.)|You can keep that up all evening if you like. 810 0 0
417 810 0 0 (Search for a knot.) You will need more than good luck to escape, that|kinbaku is flawless. Your compliance made it so easy. 810 0 0
418 811 0 0 (Glare at her.) Fine, if you want to be a stoic. (She rolls you|over, unbuttons your shirt and exposes your breasts.) 812 0 1 Exposed()
419 811 0 0 @Bntm mm!|(Bite me!) No I won't, but if you insist on pain.... (She rolls you|over, unbuttons your shirt and exposes your breasts.) 812 0 0 Exposed()
420 811 0 0 (Shake your head.) So you submit to me? 820 0 0
421 811 0 0 (Whimper and bow|your head.) Well it looks like you are just another kinky girl.|(She rolls you over and exposes your breasts.) 812 0 -1 Exposed()
422 812 0 0 (Glare at her.) Let's see you hold that composure with these treats.|(She puts a pair of clamps on your nipples.) 813 0 1 Clamped()
423 812 0 0 @Nh, plmhfm dhn't.|(No, please don't.) I'm sorry, but it was you said you wanted to try these.|(She puts a pair of clamps on your nipples.) 813 0 -1 Clamped()
424 812 0 0 (Shake your loose breasts.) Be patient my kinky friend. (She grasps your|beasts and snaps a clamp on each nipple.) 813 1 -1 Clamped()
425 812 0 0 @MMRGN|(MERCY!) Oh fine, so you submit to my will? 820 0 0 Mercy()
426 813 0 0 (Squeal with pain.) I did warn you, but you insisted on trying them. 813 0 -1 Sensetive()
427 813 0 0 (Moan with pleasure.) I didn't realise you actually are a masochist.|(She plays with the clamps.) 813 1 -2 Masochism()
428 813 0 0 (Glare at her.) You're more resilient than you looked, but you said you|didn't want me to go easy on you. (She tugs the chain.) 813 0 1 Defiant()
429 813 0 0 @MMRGN|(MERCY!) Easy there. You did tell me not to go easy on you. 813 0 -1 Sensetive()
430 813 0 0 (Squirm in your restraints.) You're really getting into this.|(She toys with the clamps on your nipples.) 813 0 -2 Masochism()
431 813 0 0 @Hhhhrrgh nhh bntgh.|(You bitch.) You talk tough when you’re not howling.|(She yanks on the chain between the clamps.) 813 -1 0 Defiant()
432 813 0 0 !Guessing @Bhnhnh You know that isn't the safe word we agreed on.|Don't mess about, unless you think this is too easy. 813 0 0 SafeWord()
433 813 0 0 Guessing (Try a different safe word.) (There is no harm in trying.) 814 0 0 SafeWord()
434 813 0 0 (Shuffle away|from Heather.) I'm doing as you wanted, you might as well stay here|and take it. (She pulls you back by the clamps.) 813 0 0 Tug()
435 813 0 0 BreakDown (Sob and howl with pain.) Shit, stop crying, I'm sorry you should have said. 840 0 -1 Crying()
436 814 0 0 @Rmd.|(Red.) Light? Fine, I'll drink on Roxanne when we are|laughing about this in the pub later. 813 0 0
437 814 0 0 @Jhftnn Bnmbmr.|(Justin Bieber.) I like him. I won't believe anyone could think|of Bieber and not be having a good time. 813 0 0
438 814 0 0 @Hn, ghrhmbh|(Ay, caramba!) Don't worry, I won't eat your shorts. 813 0 0
439 814 0 0 @Mhrmntm.|(Marmite.) You love this? Okay, personally I'd hate this.|(She flicks the clamps with the chain.) 813 0 0 Tug()
440 814 0 0 @Hglhhhmh.|(Oklahoma.) I could take you there after you submit. 813 0 0
441 814 0 0 @Fhfm Whrd.|(Safe Word.) Come on, you were far more creative than that when|we agreed the safe word. (She jerks the chain.) 813 0 0 Tug()
442 814 0 0 @Trhft.|(Trust.) Yeah, rule number one, never trust anyone. 813 0 0
443 814 0 0 @Bmmtlmjhngm.|(Beetlejuice.) Say that three times in a row won't change anything. 813 0 0
444 814 0 0 @Hnnghrn.|(Unicorn.) Are you getting horny now?|(She pulls slowly on the chain.) 813 0 0 Tug()
445 814 0 0 @Hhfflmphff.|(Hufflepuff.) Sorry, I didn't bring my magic wand. 813 0 0
446 820 0 0 @Nmf mnff.|(Nod your head.) Good girl. I am going to get revenge on|Amelia now and you will help me. 850 0 0
447 820 0 0 @Nh Hm dhn't.|(Shake your head.) Fine, if that's what you want we can carry on playing.|(She rolls you over and exposes your breasts.) 812 0 0 CarryOn()
448 820 0 0 @Nhhr wnll?|(Your will?) To obey my every command of course silly. 820 0 0
449 821 0 0 (Nod your head.) Good. I am going to get revenge on|Amelia now and you will help me. 850 0 0
450 821 0 0 @Nmf mnff.|(Yes miss.) Excellent. You would make a nice play toy,|but now you will help me get back at Amelia. 850 1 -1
451 821 0 0 !CannotBluff (Shake your head.) Don't try kidding me. I can see it in your eyes.|Do you submit to me now? 821 0 0 NoBluffing()
452 822 0 0 (Nod your head.) Good. I am going to get revenge on|Amelia now and you will help me. 850 0 0
453 822 0 0 @Nmf mnftrmff.|(Yes mistress.) If you weren't already taken, I'd keep you as my own,|but now you will help me get back at Amelia. 850 0 -1 NoMistress()
454 822 0 0 !CannotBluff (Shake your head.) Don't try kidding me. I can see it in your eyes.|Do you submit to me now? 822 0 0 NoBluffing()
455 823 0 0 @Lmt mm gh rnght nhw!|(Let me go right now!) Sorry, you told me not to stop until you submitted.|I will give to time to consider your choices though. 824 0 1
456 823 0 0 @Nt whf nmvmr fhn.|(It was never fun.) Fun? You just wanted to prove how tough you are.|Some quite time to contemplate will help you. 824 0 0
457 823 0 0 @Nhh'rm dmfpnghblm.|(You're despicable.) No I’m just obediently following your instructions,|but you can play on your own now. 824 -1 0
458 824 0 0 @Plmhfm nh.|(Please no.) You had you chance.|(She pulls the blindfold over your eyes.) 860 0 -1
459 824 0 0 @Gh fhgg nhhrfmlf, bntgh! I should wash your mouth out with soap.|(She pulls the blindfold over your eyes.) 860 -2 0
460 830 0 0 (Shake your loose breasts.) (You jiggle as best you can, the weight|of the clamps twisting your nipples.) 830 0 0 WaitingForMistress()
461 830 0 0 (Reach for a knot.) (You reach up behind your back to find a knot, but|that pulls the crotch rope, digging it deeper into you.) 830 0 0 HelplessKnot()
462 830 0 0 (Try struggling in|this bondage.) (As you kick your legs, they yank on the crotch|rope, making it cut deep into your pussy.) 830 0 0 HelplessStruggle()
463 830 0 0 (Moan with pleasure.) (You can't help yourself,|savouring the burning sensation in your nipples. 830 0 0 WaitingForMistress()
464 830 0 0 (Try to remove the|nipple clamps.) (You try rubbing the clamps against the floor,|but that only irritates your sore nipples.) 830 0 0 WaitingForMistress()
465 830 0 0 (Struggle to escape|the hogtie.) (You struggle madly, but there is no slack except for|the crotch rope, which jerks tight when you kick.) 830 0 0 WaitingForMistress()
466 830 0 0 (Search for a knot.) (You carefully feel around, but cannot find a single knot.|You have been very skilfully bound.) 830 0 0 WaitingForMistress()
467 830 0 0 (Chew on the gag.) (The large ball is unyielding. You sign happily,|relishing how much it has made your jaw ache.) 830 0 0 WaitingForMistress()
468 831 0 0 @Mnftrmff?|Mistress?) That's right. I've a collar to lock around|your neck now so you never forget it. 832 1 0
469 831 0 0 @Hmhthmr.|(Heather.) Leather? How did you guess? I've got you a nice|tough leather collar to lock around your neck. 832 0 0
470 832 0 0 (Bow your head.) (Heather padlocks the collar around your neck|and hides it under your shirt collar.) 833 0 -1 PlayerCollared()
471 832 0 0 @Whnt h mhmmnt.|(Wait a moment.) (Heather padlocks the collar around your neck and|hides it under your shirt collar.) Did you say something? 833 0 0 PlayerCollared()
472 833 0 0 @Thhng nhh Mnftrmff|(Thank you Mistress.) We are going to get revenge on Amelia now.|Be good and I will punish you again later for helping. 850 0 -2
473 840 0 0 (Shriek and|bawl in agony.) HEATHER! In a busy club? You have some nerve.|(Jenna and some other girls surround Heather.) 841 0 0 LoadJenna()
474 840 0 0 (Whimper and|sob quietly.) HEATHER! In a busy club? You have some nerve.|(Jenna and some other girls surround Heather.) 841 0 0 LoadJenna()
475 840 0 0 (Blubber and|mumble desperately.) HEATHER! In a busy club? You have some nerve.|(Jenna and some other girls surround Heather.) 841 0 0 LoadJenna()
476 840 0 0 (Snivel and|cry quietly.) HEATHER! In a busy club? You have some nerve.|(Jenna and some other girls surround Heather.) 841 0 0 LoadJenna()
477 841 0 0 @Jmnnh!|(Jenna!) Hold tight a moment COMMON_PLAYERNAME. (They launch|on Heather, seizing and restraining her.) 842 1 0
478 841 0 0 (Carry on crying.) (They launch on Heather,|seizing and restraining her.) 842 0 -1
479 842 0 0 (Carry on crying.) It's okay now. (Heather is lead hobbling away while|Jenna removes the nipple clamps and comforts you.) 843 0 -1 HeatherTaken()
480 842 0 0 @Hmlp mm hlrmhdn!|(Help me already!) Easy there. (Heather is lead hobbling away while|Jenna removes the nipple clamps and comforts you.) 843 0 1 HeatherTaken()
481 842 0 0 @Hmlp mm, plmhfm.|(Help me, please.) Of cause I will. (Heather is lead hobbling away while|Jenna removes the nipple clamps and comforts you.) 843 1 -1 HeatherTaken()
482 843 0 0 @N lngm thnf.|(I like this.) I'm sure you do. You are probably wondering|why I haven't just untied you yet? 844 1 0
483 843 0 0 @Ghmm hn hnd hntnm mm.|(Come on and untie me.) You are probably wondering why|I haven't just untied you yet? 844 0 0
484 843 0 0 @Whht wnll nhh dh th mm?|(What will you do to me?) Not much. You are probably wondering|why I haven't just untied you yet? 844 0 -1
485 844 0 0 (Nod your head.) I have noticed you staring up at my breasts and|trying to rubbing my crotch with your head. 845 0 0
486 844 0 0 (Shake your head.) I have noticed you staring up at my breasts and|trying to rubbing my crotch with your head. 845 1 0
487 845 0 0 Nh Hm hhvmn't!|(Shake your head.) See you can't stop rubbing me there. (She pinches|one of your sore nipples and then gently rubs it.) 846 0 0
488 845 0 0 (Glare at her.) You're no fun, you know that. Okay, I will untie|you now. (She removes your gag and unties you.) 848 0 1 PlayerReleased()
489 845 0 0 (Giggle and rub|her enthusiastically.) Ohhh, easy girl. You'll upset Chloe. (She pinches|one of your sore nipples and then gently rubs it.) 846 1 0
490 845 0 0 (Blush and apologies.)|N'm fh fhrrn mnff. It's okay, I liked it and how red your face has gone.|(She pinches your sore nipple and then gently rubs it.) 846 1 -1
491 845 0 0 @Nn nhhr drmhmf.|(In your dreams.) If your going to be like that, you can bother|someone else. (She removes your gag and unties you.) 848 0 0 PlayerReleased()
492 846 0 0 (Whimper and moan.) Heather knows how powerful pain can be, it's just a|pity she can't balance it with a little pleasure. 847 0 -1
493 846 0 0 (Squeal and cry again.) Sorry, you really were suffering. I'll help you now.|(She removes your gag and unties you.) 848 0 0 PlayerReleased()
494 846 0 0 (Yelp, then|nuzzle her excitedly.) You've changed your tune.|Amazing what a bit of pleasure can bring to pain. 847 1 -1
495 846 0 0 @Nh, thht rmhlln hhrtf.|(No, that really hurts.) Serves you right for getting yourself in a predicament|like this. (She removes your gag and unties you.) 848 0 -1 PlayerReleased()
496 847 0 0 (Nod your head.) Good, but now is not the time. You probably need|a stretch. (She removes your gag and unties you.) 848 1 0 PlayerReleased()
497 847 0 0 (Shake your head.) Don't deny yourself. Anyway, you probably need a|stretch now. (She removes your gag and unties you.) 848 0 0 PlayerReleased()
498 848 0 0 Would you play with|me some more? After all that? Maybe later, now stay out of trouble.|(She leaves you there.) 849 1 -1 ActorLeftAndCanLeave()
499 848 0 0 That was so humiliating. Don't try telling me you didn't enjoy any of it.|(She leaves you there.) 849 0 -1 ActorLeftAndCanLeave()
500 848 0 0 Why don't you get tied up|and see how you like it? You think I wouldn't like that? Some of us have|responsibilities though. (She leaves you there.) 849 0 1 ActorLeftAndCanLeave()
501 848 0 0 Thanks, I needed a break. No worries, some of the club members can get|carried away with it. (She leaves you there.) 849 1 0 ActorLeftAndCanLeave()
502 848 0 0 That nipple torture|was awful. Consider yourself luck that Heather hadn't though of a|way to take you out of this busy room. (She walks off.) 849 0 0 ActorLeftAndCanLeave()
503 850 0 0 (Nod your head.) (She starts untying you.) 852 0 0 HadClamps()
504 850 0 0 (Shake your head.) You can always stay bound and gagged. 851 0 0
505 851 0 0 @N whn't hmlp nhh, ghw.|(I won't help you, cow.) If you want to stay like this, that's fine with me.|(She takes out a blindfold.) 824 -1 0
506 851 0 0 @Fhrrn, Hm'll hmlp nhh.|(Sorry, I'll help you.) That’s better. Don't forget your status.|(She starts untying you.) 852 0 -1
507 852 0 0 Masochist (Pout and sulk.) I need you mobile, but you could try something else.|(She holds a rubber item.) 853 0 0
508 852 0 0 (Stretch your legs.) Good. You need to be ready to react.|(She releases you.) 856 0 0 PlayerReleased()
509 852 0 0 @Whf thnf nmgnffmrn?|(Was this necissery?) Yes, to give you a taste of what will happen if|you don't do as I say. (She releases you.) 856 0 0 PlayerReleased()
510 853 0 0 (Nod your head.) Good girl, now squeal nicely for me.|(She starts pushing the butt plug into your ass.) 854 1 0 ChastityPlug()
511 853 0 0 (Shake your head.) I've got more important business now, but you will|get plugged later. (She releases you.) 856 0 0 NoDisobedience()
512 854 0 0 (Relax your ass|and squeal happily.) (The plug slips in.) Very good girl. Now make|sure it stays put until I say so. 855 1 -1 PluggedHappily()
513 854 0 0 (Relax your ass,|then squeal in panic.) (The plug slips in.) Too late now and don't|you dare remove it. 855 0 -1 PluggedPanic()
514 854 0 0 (Clench your ass|and shake your head.) (She keeps gentle pressure on the plug.)|You're not going anywhere until you relax first. 854 0 0 Resist()
515 854 0 0 (Clench your ass,|plead and beg.) (She keeps gentle pressure on the plug.)|Relax girlfriend. You want to try new things. 854 0 0 Beg()
516 854 0 0 (Relax your ass and|quietly take the plug.) (The plug slips in.) That was boring.|Anyway, keep it in there. 855 -1 0 PluggedAccept()
517 855 0 0 @Nmf mnff.|(Yes miss.) Lovely. If you are really good I might treat you|with even bigger plug. (She releases you.) 856 1 0 PlayerReleased()
518 855 0 0 @Hrm nhh fmrnhhf?|(Are you serious?) Take it out and I will find a way to lock and even|bigger one in your ass. (She releases you.) 856 -1 0 PlayerReleased()
519 856 0 0 What do we do now? I'm going to show Amelia a type of knot|and then you grab her. Have you got that? 857 0 0
520 856 0 0 PlugCommentAvailable That plug feels far too big. Nonsense, I'll work that nice tight ass|of yours up to take something much bigger. 856 0 -1 PlugSize()
521 856 0 0 Can I go now? Not yet. I need you ready to grab Amelia|while I distract her. You got that? 857 0 -1
522 857 0 0 Yes, I got it. Good, don't let me down.|(She takes the rope and talks to Amelia.) 858 1 0 ActorLeftAndCanLeave()
523 857 0 0 This is so exciting! Calm down. I don't want Amelia to realise until it's|too late. (She takes the rope and talks to Amelia.) 858 0 0 ActorLeftAndCanLeave()
524 857 0 0 Do I have to do this? We could discus that in a private room. Just do as|I say now. (She takes the rope and talks to Amelia.) 858 -1 0 ActorLeftAndCanLeave()
525 860 0 0 @Hm'm fhrrn, Hm'll hmlp.|(I'm sorry, I'll help.) It is far too late for that. I'm going to have some fun|without you. (You hear her stand up and walk away.) 861 0 -1 NoActor()
526 860 0 2 @N'll gmt nhh fhr thnf.|(I'll get you for this.) Strong words, but you are getting nothing.|(You hear her stand up and walk away.) 861 -1 0 NoActor()
527 860 0 0 (Ignore her.) What, no last words? Never mind.|(You hear her stand up and walk away.) 861 0 0 NoActor()
528 861 0 0 (Rub blindfold off.) (You try rubbing it against the floor, bit is buckled|straps and the gags harness hold it firmly in place.) 861 0 0 Waiting()
529 861 0 0 (Struggle to escape|the hogtie.) (You struggle madly, but there is no slack except for|the crotch rope, which jerks tight when you kick.) 861 0 0 Waiting()
530 861 0 0 (Search for a knot.) (You carefully feel around, but cannot find a single knot.|You have been very skilfully and tightly bound.) 861 0 0 Waiting()
531 861 0 0 Masochist (Chew on the gag.) (The large ball is unyielding. You sign happily,|relishing how much it has made your jaw ache.) 861 0 0 Waiting()
532 861 0 0 !Masochist (Chew on the gag.) (The large ball is unyielding. You groan helplessly,|realising how much it has made your jaw ache.) 861 0 0 Waiting()
533 861 0 0 NippleClamped (Try to remove the|nipple clamps.) (You try rubbing the clamps against the floor,|but that only irritates your sore nipples.) 861 0 0 Waiting()
534 861 0 0 (Wait for help.) (You lie there aching, drooling and quietly groaning.|You can hear people busy nearby.) 861 0 0 Waiting()
535 861 0 0 @HMLP (You shout and scream until the club goes quiet.|Then someone laughs and the busy noises resume.) 861 0 0 Waiting()
536 861 0 0 @BHNHNH (Someone walks over and you feel them checking|you over.) You’re okay like that. (They walk away.) 861 0 0 Waiting()
537 900 0 0 Yes miss. - To do - 900 0 0
538 9000 0 0 Yes miss. Good, now stand over there. You know what to do.|(She starts talking to Amelia.) 910 0 0 NoLeave()
539 900 0 0 Are you sure this|is a good idea? Yes it is. Don't disobey me or you will be disciplined. 900 0 0
540 900 0 0 PlayerWasPlugged Can I remove the plug? No and it had better still be in there if I check. 900 0 0
541 900 0 0 I need to do|something else first. Fine, but be quick about it.|Are you ready yet? 900 0 0
542 910 0 0 Listen to them. (Lucy is talking about a knot she calls a|'Somerville Bowline'. She keeps glancing briefly at you.) 910 0 0
543 910 0 0 (Grab Amelia.) (You catch Amelia off guard, pulling her arms behind her|and Heather swiftly uses the rope to bind her. 920 0 0
544 910 0 0 Amelia, you know that is Heather. What! 910
545 920 0 0 Wow that actually worked. Yep, well done preventing her wrenching free.|(Together you finish restraining and gagging Amelia.) 920
546 920 0 0 Sorry about this Amelia. (Amelia starts to yell at you but Heather quickly gags|her and you finish restraining her.) 920
547 999
548 999
549 999
550 999
551 999
552 999
553 999
554 999
555 999
556 999
557 999
558 999
559 999

Binary file not shown.

After

(image error) Size: 36 KiB

Binary file not shown.

After

(image error) Size: 98 KiB

Binary file not shown.

After

(image error) Size: 37 KiB

Binary file not shown.

After

(image error) Size: 95 KiB

Binary file not shown.

After

(image error) Size: 99 KiB

Binary file not shown.

After

(image error) Size: 33 KiB

Binary file not shown.

After

(image error) Size: 92 KiB

Binary file not shown.

After

(image error) Size: 93 KiB

Binary file not shown.

After

(image error) Size: 69 KiB

Binary file not shown.

After

(image error) Size: 130 KiB

Binary file not shown.

After

(image error) Size: 79 KiB

Binary file not shown.

After

(image error) Size: 2.9 KiB

Binary file not shown.

After

(image error) Size: 44 KiB

Binary file not shown.

After

(image error) Size: 46 KiB

Binary file not shown.

After

(image error) Size: 52 KiB

Binary file not shown.

After

(image error) Size: 5 KiB

Binary file not shown.

After

(image error) Size: 26 KiB

Binary file not shown.

After

(image error) Size: 41 KiB

Binary file not shown.

After

(image error) Size: 83 KiB

Binary file not shown.

After

(image error) Size: 14 KiB

Binary file not shown.

After

(image error) Size: 9.3 KiB

Binary file not shown.

After

(image error) Size: 14 KiB

Binary file not shown.

After

(image error) Size: 9.3 KiB

Binary file not shown.

After

(image error) Size: 9.3 KiB

Binary file not shown.

After

(image error) Size: 70 KiB

Binary file not shown.

After

(image error) Size: 3.8 KiB

Binary file not shown.

After

(image error) Size: 3.1 KiB

Binary file not shown.

After

(image error) Size: 76 KiB

Binary file not shown.

After

(image error) Size: 3.7 KiB

Binary file not shown.

After

(image error) Size: 3 KiB

Binary file not shown.

After

(image error) Size: 84 KiB

Binary file not shown.

After

(image error) Size: 4.3 KiB

Binary file not shown.

After

(image error) Size: 3.7 KiB

Binary file not shown.

After

(image error) Size: 75 KiB

Binary file not shown.

After

(image error) Size: 3.5 KiB

Binary file not shown.

After

(image error) Size: 2.6 KiB

Binary file not shown.

After

(image error) Size: 2.9 KiB

Binary file not shown.

After

(image error) Size: 60 KiB

Binary file not shown.

After

(image error) Size: 3.4 KiB

Binary file not shown.

After

(image error) Size: 61 KiB

Binary file not shown.

After

(image error) Size: 2.8 KiB

Binary file not shown.

After

(image error) Size: 34 KiB

Binary file not shown.

After

(image error) Size: 2.3 KiB

Binary file not shown.

After

(image error) Size: 128 KiB

Binary file not shown.

After

(image error) Size: 1.8 KiB

Binary file not shown.

After

(image error) Size: 2.7 KiB

Binary file not shown.

After

(image error) Size: 76 KiB

Binary file not shown.

After

(image error) Size: 71 KiB

Binary file not shown.

After

(image error) Size: 71 KiB

Binary file not shown.

After

(image error) Size: 988 B

Binary file not shown.

After

(image error) Size: 74 KiB

View file

@ -6,6 +6,72 @@ ForceTied,Stop trying to argue. It doesn't suit you.|(Amelia forces you to strip
YouTry,"I'm not trying that again,|but I think she might yield to you now."
WouldYourSisterShake,(She shakes her head.)
WouldYourSisterNod,(She nods her head.)
LucyUnties,Okay. Thanks for letting me practice on you.|(She unties your arms.)
LucyNotTieYou,That's okay.|Let me know when you are ready to try it.
AnnoyedUngag,"I suppose I can remove the gag, but only if you|are nice to me. (She removes your gag.)"
AnnoyedNoUngag,I prefer you gagged. The only thing I would remove|it for is to wash your mouth out with soap.
LucyHadEnough,That's it. The only problem is your attitude. You|can stay like that for all I care. (She leaves you hanging.)
StayRightThere,"Sorry I'm not into pleasuring girls, but I know someone|who might be. (She walks off across the room.)"
CassiAppears,"(Lucy comes back with Cassi.)|Hello COMMON_PLAYERNAME, you look adorable like that."
NewGirlAppears,"(Lucy comes back with another girl, who squeals|excitedly.) Eeeee, she is a cutie. Hi I'm Cassi."
GagOption,"Let's see how big your mouth is. Which will it be,|panties or a sock? (Lucy leaves Cassi and you to it.)"
CassiLegTieA,"(As you start wondering whether the panties was clean,|Cassi frog ties your legs.)"
CassiLegTieB,"(As you start wondering whether the sock was clean,|Cassi frog ties your legs.)"
CassiLegTieC,"(It is too late now, the tape holds the panties firmly|in your mouth. Cassi frog ties your legs.)"
CassiLegTieD,"(It is too late now, the tape holds the sock firmly in|your mouth while Cassi frog ties your legs.)"
CassiLegTieE,(The combination of underwear and tape almost completely|mutes you while Cassi frog ties your legs.)
CassiLegTieF,(You ponder your predicament|while Cassi frog ties your legs.)
CassiCuffed,"No reason we can't both enjoy a bit of bondage. (Cassi|handcuffs herself, then starts nuzzling your pussy.)"
CassiAnkleHold,(Cassi's firm grip holds your legs apart.)
CassiErratic,"(Cassi's struggling and oral teasing become irregular,|unable to pull her trapped head out.)"
CassiDespirate,(Cassi's struggling becomes more desperate.|She attempts erratically to please you with her tongue.)
CassiColapse,"(Cassi finally pulls free from your suffocating embrace|and collapses on the floor, gasping for breath.)"
CassiFinger,"(While still teasing your clitoris, Cassi plunges a|finger into your vagina and keeps easing it in and out.)"
GruntHelplessSock,"(Cassi keeps on licking steadily,|while you squirm and gag on the sock.)"
FingerInOut,(Cassi keeps teasing your clitoris and starts slowly|sliding her finger in and out of your vagina.)
FingerPressUp,"(Cassi keeps teasing your clitoris, finds your G spot|with her finger and then presses steadily against it"
FingerComeHither,"(Cassi keeps teasing your clitoris and with the finger|in your vagina, starts stroking your G spot.)"
FingerVibrator,"(Cassi keeps teasing your clitoris and plays with the|egg in your vagina, pushing it against your G spot.)"
ChangeToLickUp,(Cassi's changes her teasing to|long steady licks up your clitoris.)
ChangeToCircular,(Cassi's changes her teasing to licking|in circles around your clitoris.)
ChangeToABC,(Cassi's changes her teasing to licking patterns|over you clitoris that feels like alphabet letters.)
ChangeToElectricslide,"(Cassi's changes her teasing to|licking side to side, across you clitoris.)"
ChangeToSuck,(Cassi's changes her teasing to|gently sucking on your clitoris.)
ChangeToCircularFlick,(Cassi's changes her teasing to licking around your|clitoris and regularly flicking it with her tongue.)
ChangeToHardLick,(Cassi's changes her teasing to|broad hard licks up your clitoris.)
ChangeToNibble,(Cassi's changes her teasing to gently|nibbling on your clitoris with her teeth.)
CassiAnkleGrab,"(Without missing a beat with her tongue, Cassi|grabs your ankles and pulls them away from her.)"
SuspendedOrgasm,"(Bound, suspended and gagging on underwear,|you get a wonderful orgasm in front of the club.)"
CassiHadEnough,(Your orgasm subsides and Cassi stops to look up.)|I think that's enough pleasure for you.
CassiAsks,(Your orgasm subsides and Cassi stops to look up.)|Had enough yet?
CassiLeavingGift,"You are a gluten for punishment! (She slips a|vibrating egg into your vagina and leaves.) Enjoy, see ya."
NotBelted,Sorry I just though it might be fun.|(She releases you and finds you clean panties.)
EggNBelted,"This should do nicely. (She slips an egg into your|vagina and checks your plug, then locks the belt on.)"
PlugNBelted,"This should do nicely. (She checks the egg in your|vagina and plugs your ass, then locks the belt on.)"
JustBelted,"You're already full up? (She checks the in egg your|vagina and the butt plug, then locks the belt on.)"
ArgueEggNBelted,"Stop arguing. (She slips an egg into your|vagina and checks your plug, then locks the belt on.)"
ArguePlugNBelted,"Stop arguing. (She checks the egg in your|vagina and plugs your ass, then locks the belt on.)"
ArgueJustBelted,"Stop arguing. (She checks the in egg your|vagina and the butt plug, then locks the belt on.)"
RevealLucy,"(She whispers in your ear.) Don't worry, I really am|Lucy. If I was Heather you would be in trouble now."
RevealHeather,"(She whispers in your ear.)|By the way, Lucy is still bound and gagged."
ChasteKnot,"Reaching up behind you pulls on the crotch rope. The|chastity belt spares you, but you can't reach very high."
ChasteStruggle,Your chastity belt spares your pussy the full bite|of the crotch rope as kicking yanks it tighter.
ChasteTug,"You feel the chastity belt push up against your pussy.|It is sort of nice, but hardly stimulating."
AlreadyRolled,"Fine, if that's what you want we can carry on playing."
Sensetive2,"My my, I can't image why you endure this pain."
Sensetive3,You know our safe word. Just say it if|you want me to remove the clamps.
Sensetive4,"You poor thing, I doubt you could last much longer.|Will you submit and let me remove those stupid clamps?"
Masochist2,Are you actually enjoying this torture?|(She increases the pressure on the clamps.)
Masochist3,You are a kinky girl. This would be a cruel punishment|to anyone else. (She pulls hard on the clamps)
Masochist4,Submit to my will if you desire intense pain.
Defiant2,"You are being so brave. Why I cannot guess.|(She gives short, sharp tugs on the chain.)"
Defiant3,I would stop so quickly if you would just submit.|(She uses the chain to shake your breasts.)
Defiant4,This is getting boring now.
NewMistress,"Mistress? I like the sound of that. Don't go anywhere|for a moment. (She rushes off, leaving you there.)"
ReadyForNewMistress,Mistress? I like the sound of that.|I can see that collar and I have just the thing for it.
RemoveClamps,(She removes the clamps and starts untying you.)
CannotPlug,"Damn, that chastity belt is in the way.|Plugging you will have to wait. (She releases you.)"
AcceptGifts,You must learn to accept gifts from your new mistress.|(She starts pushing the butt plug into your ass.)
Collar,
Crop,
Rope,

1 Tag Content
6 YouTry I'm not trying that again,|but I think she might yield to you now.
7 WouldYourSisterShake (She shakes her head.)
8 WouldYourSisterNod (She nods her head.)
9 LucyUnties Okay. Thanks for letting me practice on you.|(She unties your arms.)
10 LucyNotTieYou That's okay.|Let me know when you are ready to try it.
11 AnnoyedUngag I suppose I can remove the gag, but only if you|are nice to me. (She removes your gag.)
12 AnnoyedNoUngag I prefer you gagged. The only thing I would remove|it for is to wash your mouth out with soap.
13 LucyHadEnough That's it. The only problem is your attitude. You|can stay like that for all I care. (She leaves you hanging.)
14 StayRightThere Sorry I'm not into pleasuring girls, but I know someone|who might be. (She walks off across the room.)
15 CassiAppears (Lucy comes back with Cassi.)|Hello COMMON_PLAYERNAME, you look adorable like that.
16 NewGirlAppears (Lucy comes back with another girl, who squeals|excitedly.) Eeeee, she is a cutie. Hi I'm Cassi.
17 GagOption Let's see how big your mouth is. Which will it be,|panties or a sock? (Lucy leaves Cassi and you to it.)
18 CassiLegTieA (As you start wondering whether the panties was clean,|Cassi frog ties your legs.)
19 CassiLegTieB (As you start wondering whether the sock was clean,|Cassi frog ties your legs.)
20 CassiLegTieC (It is too late now, the tape holds the panties firmly|in your mouth. Cassi frog ties your legs.)
21 CassiLegTieD (It is too late now, the tape holds the sock firmly in|your mouth while Cassi frog ties your legs.)
22 CassiLegTieE (The combination of underwear and tape almost completely|mutes you while Cassi frog ties your legs.)
23 CassiLegTieF (You ponder your predicament|while Cassi frog ties your legs.)
24 CassiCuffed No reason we can't both enjoy a bit of bondage. (Cassi|handcuffs herself, then starts nuzzling your pussy.)
25 CassiAnkleHold (Cassi's firm grip holds your legs apart.)
26 CassiErratic (Cassi's struggling and oral teasing become irregular,|unable to pull her trapped head out.)
27 CassiDespirate (Cassi's struggling becomes more desperate.|She attempts erratically to please you with her tongue.)
28 CassiColapse (Cassi finally pulls free from your suffocating embrace|and collapses on the floor, gasping for breath.)
29 CassiFinger (While still teasing your clitoris, Cassi plunges a|finger into your vagina and keeps easing it in and out.)
30 GruntHelplessSock (Cassi keeps on licking steadily,|while you squirm and gag on the sock.)
31 FingerInOut (Cassi keeps teasing your clitoris and starts slowly|sliding her finger in and out of your vagina.)
32 FingerPressUp (Cassi keeps teasing your clitoris, finds your G spot|with her finger and then presses steadily against it
33 FingerComeHither (Cassi keeps teasing your clitoris and with the finger|in your vagina, starts stroking your G spot.)
34 FingerVibrator (Cassi keeps teasing your clitoris and plays with the|egg in your vagina, pushing it against your G spot.)
35 ChangeToLickUp (Cassi's changes her teasing to|long steady licks up your clitoris.)
36 ChangeToCircular (Cassi's changes her teasing to licking|in circles around your clitoris.)
37 ChangeToABC (Cassi's changes her teasing to licking patterns|over you clitoris that feels like alphabet letters.)
38 ChangeToElectricslide (Cassi's changes her teasing to|licking side to side, across you clitoris.)
39 ChangeToSuck (Cassi's changes her teasing to|gently sucking on your clitoris.)
40 ChangeToCircularFlick (Cassi's changes her teasing to licking around your|clitoris and regularly flicking it with her tongue.)
41 ChangeToHardLick (Cassi's changes her teasing to|broad hard licks up your clitoris.)
42 ChangeToNibble (Cassi's changes her teasing to gently|nibbling on your clitoris with her teeth.)
43 CassiAnkleGrab (Without missing a beat with her tongue, Cassi|grabs your ankles and pulls them away from her.)
44 SuspendedOrgasm (Bound, suspended and gagging on underwear,|you get a wonderful orgasm in front of the club.)
45 CassiHadEnough (Your orgasm subsides and Cassi stops to look up.)|I think that's enough pleasure for you.
46 CassiAsks (Your orgasm subsides and Cassi stops to look up.)|Had enough yet?
47 CassiLeavingGift You are a gluten for punishment! (She slips a|vibrating egg into your vagina and leaves.) Enjoy, see ya.
48 NotBelted Sorry I just though it might be fun.|(She releases you and finds you clean panties.)
49 EggNBelted This should do nicely. (She slips an egg into your|vagina and checks your plug, then locks the belt on.)
50 PlugNBelted This should do nicely. (She checks the egg in your|vagina and plugs your ass, then locks the belt on.)
51 JustBelted You're already full up? (She checks the in egg your|vagina and the butt plug, then locks the belt on.)
52 ArgueEggNBelted Stop arguing. (She slips an egg into your|vagina and checks your plug, then locks the belt on.)
53 ArguePlugNBelted Stop arguing. (She checks the egg in your|vagina and plugs your ass, then locks the belt on.)
54 ArgueJustBelted Stop arguing. (She checks the in egg your|vagina and the butt plug, then locks the belt on.)
55 RevealLucy (She whispers in your ear.) Don't worry, I really am|Lucy. If I was Heather you would be in trouble now.
56 RevealHeather (She whispers in your ear.)|By the way, Lucy is still bound and gagged.
57 ChasteKnot Reaching up behind you pulls on the crotch rope. The|chastity belt spares you, but you can't reach very high.
58 ChasteStruggle Your chastity belt spares your pussy the full bite|of the crotch rope as kicking yanks it tighter.
59 ChasteTug You feel the chastity belt push up against your pussy.|It is sort of nice, but hardly stimulating.
60 AlreadyRolled Fine, if that's what you want we can carry on playing.
61 Sensetive2 My my, I can't image why you endure this pain.
62 Sensetive3 You know our safe word. Just say it if|you want me to remove the clamps.
63 Sensetive4 You poor thing, I doubt you could last much longer.|Will you submit and let me remove those stupid clamps?
64 Masochist2 Are you actually enjoying this torture?|(She increases the pressure on the clamps.)
65 Masochist3 You are a kinky girl. This would be a cruel punishment|to anyone else. (She pulls hard on the clamps)
66 Masochist4 Submit to my will if you desire intense pain.
67 Defiant2 You are being so brave. Why I cannot guess.|(She gives short, sharp tugs on the chain.)
68 Defiant3 I would stop so quickly if you would just submit.|(She uses the chain to shake your breasts.)
69 Defiant4 This is getting boring now.
70 NewMistress Mistress? I like the sound of that. Don't go anywhere|for a moment. (She rushes off, leaving you there.)
71 ReadyForNewMistress Mistress? I like the sound of that.|I can see that collar and I have just the thing for it.
72 RemoveClamps (She removes the clamps and starts untying you.)
73 CannotPlug Damn, that chastity belt is in the way.|Plugging you will have to wait. (She releases you.)
74 AcceptGifts You must learn to accept gifts from your new mistress.|(She starts pushing the butt plug into your ass.)
75 Collar
76 Crop
77 Rope

Binary file not shown.

After

(image error) Size: 95 KiB

Some files were not shown because too many files have changed in this diff Show more