Posts: 9
Thanks received: 5
Thanks given: 0
Joined: Nov 2013
02 Nov 2013, 01:02
(This post was last modified: 19 Jan 2024, 23:01 by Like Ra.)
I've had a fetish of being trapped in a vac bed and milked endlessly until I was released after hours of being milked. Through numerous progressions I have made an x10 program that turns on the vac bed in random intervals for a 20 session roughly 2-3 hr vac bed / venus 2000 session. You can see my very first videos on how I made my own vac bed out of thick construction bags, then progressed to pool pillows, and last purchased a real latex vac bed with a one way valve to prevent the air from exiting.
http://stackoverflow.com/questions/18709...-available
Here's the video of my setup
pornhub.com/view_video.php?viewkey=ph5ce7006ae7e99
Just curious what types of setups others have created. I have been thinking of a latex sleepsack but that appears to be difficult once the zipper is pulled past a certain threshold.
Posts: 28,174
Thanks received: 14787
Thanks given: 7676
Joined: Jul 2006
(02 Nov 2013, 01:02 )strap0nme Wrote: http://stackoverflow.com/questions/18709...-available
Quote:Page Not Found
This question was removed from Stack Overflow for reasons of moderation. Please refer to the help center for possible explanations why a question might be removed.
Posts: 9
Thanks received: 5
Thanks given: 0
Joined: Nov 2013
Here's the response I had on the link for the code:
I've used an x10 framework CraigsCreations.com.
--------------
using System;
using System.Collections.Generic;
using System.Text;
using CraigsCreations.com.X10;
using System.IO;
using System.IO.IsolatedStorage;
namespace X10_Lights
{
class Program
{
static void Main(string[] args)
{
// Now randomize
// Sleep for 8 minutes
System.Threading.Thread.Sleep(TimeSpan.FromMinutes(10));
// Send alert that the x10 i
for (int i = 0; i < 20; i++)
{
System.Media.SystemSounds.Beep.Play();
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(2));
}
// Sleep for 2 minutes
System.Threading.Thread.Sleep(TimeSpan.FromMinutes(2));
// Initialize X10 Controller
IX10Controller x10 = new X10CM11aController(HouseCode.I, "COM1");
// Replace the unit codes in the following two lines with unit codes
// that you assign to your lamps
X10Lamp lamp = new X10Lamp(x10, 1);
// 10 then 20 sec run
PreRun(lamp);
// Now randomize
for (int i = 0; i < 10; i++)
{
// Turn on the lamp module for a random specific time
TurnOn(lamp);
// Turn off the lamp module for a random short time
TurnOff(lamp);
}
// Send alert that the x10 i
for (int i = 0; i < 20; i++)
{
System.Media.SystemSounds.Hand.Play();
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(2));
}
// Sleep for 2 minutes
System.Threading.Thread.Sleep(TimeSpan.FromMinutes(3));
for (int i = 0; i < 10; i++)
{
// Turn on the lamp module for a random specific time
TurnOn(lamp);
// Turn off the lamp module for a random short time
TurnOff(lamp);
}
// Send alert that the x10 i
for (int i = 0; i < 20; i++)
{
System.Media.SystemSounds.Asterisk.Play();
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(2));
}
}
private static void TurnOn(X10Lamp lampControl)
{
try
{
lampControl.On();
int iChoice = 1; //RandomNumber(1, 5);
switch (iChoice)
{
case 1:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(MediumTimer()));
break;
case 2:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(LongTimer()));
break;
case 3:
StrobeTimer(lampControl);
break;
default:
StrobeTimer(lampControl);
//System.Threading.Thread.Sleep(TimeSpan.FromSeconds(LongTimer()));
break;
}
}
catch (Exception e)
{
lampControl.Off();
}
}
private static void PreRun(X10Lamp lampControl)
{
try
{
lampControl.On();
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(20));
lampControl.Off();
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(30));
}
catch (Exception e)
{
lampControl.Off();
}
}
private static void TurnOff(X10Lamp lampControl)
{
try
{
lampControl.Off();
int iChoice = RandomNumber(1, 4);
switch (iChoice)
{
case 1:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(ShortTimer()));
break;
case 2:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(RealShortTimer()));
break;
default:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(RealShortTimer()));
break;
}
}
catch (Exception e)
{
lampControl.Off();
}
}
private static int RandomNumber(int min, int max)
{
Random random = new Random();
return random.Next(min, max);
}
private static int LongTimer()
{
return RandomNumber(90, 360);
}
private static int MediumTimer()
{
return RandomNumber(60, 120);
}
private static int ShortTimer()
{
return RandomNumber(15, 60);
}
private static int RealShortTimer()
{
return RandomNumber(5, 20);
}
private static void StrobeTimer(X10Lamp lampControl)
{
for (int i = 0; i < 5; i++)
{
try
{
lampControl.On();
int iChoice = RandomNumber(1, 4);
switch (iChoice)
{
case 1:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(RandomNumber(5, 10)));
break;
case 2:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(RandomNumber(10, 15)));
break;
default:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(RandomNumber(5, 10)));
break;
}
lampControl.Off();
iChoice = RandomNumber(1, 4);
switch (iChoice)
{
case 1:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(RandomNumber(5, 10)));
break;
case 2:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(RandomNumber(10, 15)));
break;
default:
System.Threading.Thread.Sleep(TimeSpan.FromSeconds(RandomNumber(5, 10)));
break;
}
}
catch (Exception e)
{
// Ignore Exception
}
}
}
}
}
Posts: 4,103
Thanks received: 3737
Thanks given: 323
Joined: Feb 2020
Bravo! That looks amazing fun!
Posts: 9
Thanks received: 5
Thanks given: 0
Joined: Nov 2013
It's fun. I would eventually like to find a female partner that would enjoy being bound in a latex vac bed. Then I would use a hitachi vibrating wand and set it up to a timer.
Posts: 28,174
Thanks received: 14787
Thanks given: 7676
Joined: Jul 2006
Amazing... Simply amazing...
Posts: 28,174
Thanks received: 14787
Thanks given: 7676
Joined: Jul 2006
(02 Nov 2013, 01:02 )strap0nme Wrote: and last purchased a real latex vac bed with a one way valve to prevent the air from exiting.
How did you manage to get out?
Posts: 4,640
Thanks received: 6589
Thanks given: 3700
Joined: Dec 2006
Oh my, Oh My, OH MY!
Simply, fucking, awesome
I'm aroused, envious and fascinated all at the same time.
Love the idea of random teasing and the fantasy of being helpless all at the same time - that ticks so many of my 'must do' boxes 😁
Need to know more: like how you escape, how many times the machine made you cum (or what it was like to suffer the machine after you'd emptied yourself), and, and, and.....
More please
MJ
Posts: 9
Thanks received: 5
Thanks given: 0
Joined: Nov 2013
As you can see the program is random. So you never know how long the sessions will last. That's what really adds to excitement. Every time I have tried this I have cummed at least 3 times. And usually the last one is a dry cumm. I have to say it's amazing, scary, erotic, painful, and exciting all in one. The first time you cumm you are really trying to hold back but with the venus 2000 is milking you at such an aggressive rate it is almost impossible to hold back. After the first cumm you are still being milked endlessly and you start to feel some pain but after 5 minutes the pleasure starts kicking in. Now the second time you cum is where you completely lose yourself. You forget that you are bound helplessly in a vac bed and you are in a whole other world imagining someone is fucking your brains out. This is when your whole body is having convulsions and you have no control over it. Your second cumm is even more intense then the first one and this is where I have at times passed out in the vac bed being milked endlessly only waking up to find myself in a vac bed either being milked more or the session is over. I can not get out of the vac bed until the session is over and usually this can be between 2 to 3 hours long. Like I said I would like to find a female partner that is willing to use the vac bed with me and vise-versa returning the favor. Currently I have only used it solo and it is very dangerous doing this which is why I have not been doing these sessions that often. I'd prefer to find a female partner who is willing to participate but I have had no luck in find one. Until then I have tried to play safer using the venus 2000.
Posts: 9
Thanks received: 5
Thanks given: 0
Joined: Nov 2013
(02 Nov 2013, 17:53 )Like Ra Wrote: (02 Nov 2013, 01:02 )strap0nme Wrote: and last purchased a real latex vac bed with a one way valve to prevent the air from exiting.
How did you manage to get out?
I can only get out when the program has stopped it's session. The program is set to randomly choose the time interval so I have no idea how long I will be trapped in the vac bed milked endlessly. Once the session is over and I hear the ring tones of my computer 20 times then I know that the session has ended. Until then I am bound helplessly and milked endlessly until I have nothing left.