Like Ra in latex catsuit, latex mask and high heels
Like Ra's Naughty Playground

dildo
Cheap 6 Sizes Realistic Big Jelly Dildo Women Erotic Anal Sex Toys Gay Soft Clitoris Vaginal Masturbators Penis Suction Cup Dick
$4.36-4%

headphone sleeping mask
3D Sleep Eye Mask White Noise Cancelling Music Alleviate Fatigue And Breathable Eye Protect 5.2 Bluetooth-Compatible
$97.65-37%

dildo
Giant Horse Dildo Realistic Penis Cock Female Masturbator Animal Dildos Fast Orgasm Anal Toys for Men Sex Toy for Women Lesbian
$13.00-6%

porn
Erotic Sling Dress Sexy Lingerie Lady Black Deep V Nightdress Women Suspenders Homewear Mensh Pajamas Temptation Porn Sleepwear
$4.11-7%

XCKNY swimsuit
XCKNY satin glossy one piece tights Silk smooth black swimsuit sexy low-cut camisole T-shaped high fork tight Training yoga suit
$45.57-43%

crossdresser silicone mask
(NEW-26) Handmade Full Head Silicone Mask Masquerade Crossdresser Doll Japan Cartoon Kigurumi Cosplay Masks Anime Girl
$920.23

oil shiny bodycon
New Oil Shiny Glossy Bodycon T-Shirts Transparent Long Sleeve Slim Tight Yoga Gym Stretch Tees Top T Shirt Clothing For Women
$144.98-30%



To view Aliexpress you might need to switch your mobile browser to the Desktop version.

If you would like to use search functions, view hidden archives or play games, please consider registering.


vacbed with x10 program with venus 2000
#1
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.
Reply
#2
(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.
Reply
#3
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
}
}
}
}
}
Reply
#4
Bravo! That looks amazing fun!
Reply
#5
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.
Reply
#6
Amazing... Simply amazing...
Reply
#7
(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?
Reply
#8
Oh my, Oh My, OH MY!

Simply, fucking, awesome Clapping

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
Reply
#9
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.
Reply
#10
(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.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Vacuum bed self-bondage with Venus pump Vacbedbound 33 20,397 18 Jan 2021, 02:25
Last Post: Like Ra
selfbondage with venus 2000 tightbound 22 43,790 01 Jan 2019, 12:09
Last Post: madjack



Contributors: catsuitbbondage (1) , Culmor (1) , franz löve (1) , Like Ra (9) , madjack (1) , NoNeedToBreathe (2) , strap0nme (9) , tightbound (1) , Vacbedbound (2)