Go Back   getDare Truth or Dare > Truth OR Dare > Dares > Dice Dares

Reply
 
Thread Tools Display Modes
Old 02-15-2018, 08:46 AM   #1
tomasz.rodent
getDare Devil
 
tomasz.rodent's Avatar
 
Join Date: Mar 2017
Location: Europe
Posts: 1,135
Bomb Ballbusting dice dare

Hello

2d6 means - roll 2d6 (2 times dice that has 6 sides or 2 dices at once). Multiply results and mark is as x.
After dare write a report here.

1. Punches
2d6
if x <= 5 (28%) - reroll
if 6 <= x <= 19 [you cannot get result 19, I know] (50%) - 2*x hard punches
of 20 <= x (22%) - tied nuts tightly [and leave them tied till end of game] and 3*x hard punches

2. Hits with belt.
2d6
if x <= 6 (39%) - reroll
if 7 <= x <= 24 (50%) - 2*x hard hits
if 25 <= x (11%) and nuts untied- tied nuts tightly [and leave them tied till end of game] and 3*x hard hits
if 25 <= x (11%) and nuts tied - make 4*x hits

3. Squeeze
2d6
Put your nuts on something stiff (like table), something stiff on them (like a book) and weight circa 1 kg on it (for example bottle of water).
if x <= 6 (39%) - reroll
if 7 <= x <= 24 (50%) - stay like that for 3*x seconds
if 25 <= x (11%) and nuts untied- tied nuts tightly [and leave them tied till end of game] and stay like that for 5*x seconds
if 25 <= x (11%) and nuts tied - stay like that for 4*x seconds.

4. Sum up
If you manage to get the point without tying your nuts (67%) - punch them 5 times and add 5 times with belt.

If you have your nuts tied - repeat step 2, but assume x = 36.
__________________
30 y.o. male dom/top from Europe (GMT+1 (Winter)/+2 (Summer))

Likes: control (cumming, edging, jerking-off, JOI, denial/chastity), torture (ballbusting, CBT, nipples) [for beginners or experience ones], sometimes exercises and more.

I do NOT do blackmail. I sometimes exposure willing models pics/vids. If you want your pic/vid exposed by me require obvious and clear consent.
tomasz.rodent is offline   Reply With Quote
The following 9 users say Thank You to tomasz.rodent for this post:
Old 07-30-2018, 01:13 PM   #2
tomasz.rodent
getDare Devil
 
tomasz.rodent's Avatar
 
Join Date: Mar 2017
Location: Europe
Posts: 1,135
Default Generator

If you don't have how to rand numbers - just copy code below, paste it to .html file, open with web browser and click "Try it".

If you don't want to create file on your computer - you can paste code here https://jsfiddle.net/ in HTML section, then press "Run" button and then "Try it".
HTML Code:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Tomasz Rodent -  ballbusting dice game</title>

<script>

function symulateOneRoll()
{
	return Math.floor((Math.random() * 10) % 6) + 1;
}

function symulateOneRollTest()
{
	return 6;
}

function printRolls(roll_1, roll_2)
{
	document.getElementById("dareText").innerHTML += "rolls: " + roll_1 + " * " + roll_2 + " = " + roll_1 * roll_2 + "<br>\n";
}

function firstTask()
{
	document.getElementById("dareText").innerHTML += "<h1> Task 1. Punches: <br>\n";
	
	roll_1 = 0;
	roll_2 = 0;
	nutsTied = false;

	while( roll_1 * roll_2 <= 5)
	{
		roll_1 = symulateOneRoll();
		roll_2 = symulateOneRoll();
		printRolls(roll_1, roll_2);

		x = roll_1 * roll_2;
		document.getElementById("dareText").innerHTML += "&nbsp;&nbsp;&nbsp;&nbsp;";

		if ( x <=5 )
		{
			document.getElementById("dareText").innerHTML += "Reroll <br>\n";
			continue;
		}

		if ( 6 <= x && x <= 19 )
		{
			document.getElementById("dareText").innerHTML += 2*x + " hard punches <br>\n";
			continue;
		}

		if ( 20 <= x  )
		{
			nutsTied = true;
			document.getElementById("dareText").innerHTML += "tie nuts tightly [and leave them tied till end of game] ";
			document.getElementById("dareText").innerHTML += "and " + 4*x + " hard punches <br>\n";
			continue;
		}
	}
	
	return nutsTied;
}

function secondTask(nutsTied)
{
	document.getElementById("dareText").innerHTML += "<h1> Task 2. Hits with belt: <br>\n";
	
	roll_1 = 0;
	roll_2 = 0;

	while( roll_1 * roll_2 <= 6)
	{
		roll_1 = symulateOneRoll();
		roll_2 = symulateOneRoll();
		printRolls(roll_1, roll_2);

		x = roll_1 * roll_2;
		document.getElementById("dareText").innerHTML += "&nbsp;&nbsp;&nbsp;&nbsp;";

		if ( x <=6 )
		{
			document.getElementById("dareText").innerHTML += "Reroll <br>\n";
			continue;
		}

		if ( 7 <= x && x <= 24 )
		{
			document.getElementById("dareText").innerHTML += 2*x + " hard hits <br>\n";
			continue;
		}

		if ( 25 <= x && !nutsTied )
		{
			nutsTied = true;
			document.getElementById("dareText").innerHTML += "tie nuts tightly [and leave them tied till end of game] ";
			document.getElementById("dareText").innerHTML += "and " + 3*x + " hard hits <br>\n";
			continue;
		}
		
		if ( 25 <= x && nutsTied )
		{
			document.getElementById("dareText").innerHTML += 4*x + " hits <br>\n";
			continue;
		}
	}
	
	return nutsTied;
}

function thirdTask(nutsTied)
{
	document.getElementById("dareText").innerHTML += "<h1> Task 3. Squeeze: <br>\n";
	document.getElementById("dareText").innerHTML += "Put your nuts on something stiff (like table), something stiff on them (like a book) and weight circa 1 kg on it (for example bottle of water). <br>\n";

	roll_1 = 0;
	roll_2 = 0;

	while( roll_1 * roll_2 <= 6)
	{
		roll_1 = symulateOneRoll();
		roll_2 = symulateOneRoll();
		printRolls(roll_1, roll_2);

		x = roll_1 * roll_2;
		document.getElementById("dareText").innerHTML += "&nbsp;&nbsp;&nbsp;&nbsp;";

		if ( x <=6 )
		{
			document.getElementById("dareText").innerHTML += "Reroll <br>\n";
			continue;
		}

		if ( 7 <= x && x <= 24 )
		{
			document.getElementById("dareText").innerHTML += "stay like that for " + 3*x + " seconds <br>\n";
			continue;
		}

		if ( 25 <= x && !nutsTied )
		{
			nutsTied = true;
			document.getElementById("dareText").innerHTML += "tie nuts tightly [and leave them tied till end of game] ";
			document.getElementById("dareText").innerHTML += "and " + "stay like that for " + 5*x + " seconds <br>\n";
			continue;
		}
		
		if ( 25 <= x && nutsTied )
		{
			document.getElementById("dareText").innerHTML += "stay like that for " + 4*x + " seconds <br>\n";
			continue;
		}
	}
	
	return nutsTied;
}

function fourthTask(nutsTied)
{
	document.getElementById("dareText").innerHTML += "<h1> Task 4. Sum up: <br>\n";

	document.getElementById("dareText").innerHTML += "&nbsp;&nbsp;&nbsp;&nbsp;";

	if( !nutsTied ) {
		document.getElementById("dareText").innerHTML += "As you managed to get here without your nuts being tied, punch them 5 times and hit 5 times with belt. <br>\n";
	}
	else {
		document.getElementById("dareText").innerHTML += "As you get here with tied nuts, hit them with belt 144 times. <br>\n";
	}
}

function myGame() {
    document.getElementById("dareText").innerHTML = "";

		// Task 1. Punches
		nutsTied = firstTask();

		// Task 2. Hits with belt
		nutsTied = secondTask(nutsTied);

		// Task 3. Squeeze
		nutsTied = thirdTask(nutsTied);

		// Task 4. Sum up
		nutsTied = fourthTask(nutsTied);
}
</script>

</head>
<body>
<button type="button" onclick="myGame()">Try it</button>
<p id="dareText"></p>

</body>
</html>
__________________
30 y.o. male dom/top from Europe (GMT+1 (Winter)/+2 (Summer))

Likes: control (cumming, edging, jerking-off, JOI, denial/chastity), torture (ballbusting, CBT, nipples) [for beginners or experience ones], sometimes exercises and more.

I do NOT do blackmail. I sometimes exposure willing models pics/vids. If you want your pic/vid exposed by me require obvious and clear consent.
tomasz.rodent is offline   Reply With Quote
The following user says Thank You to tomasz.rodent for this post:
Old 07-30-2018, 03:02 PM   #3
nordim
Senior Member
 
nordim's Avatar
 
Join Date: Feb 2013
Posts: 139
Blog Entries: 1
Default

Mine:
Task 1. Punches:
rolls: 3 * 5 = 15
30 hard punches
Task 2. Hits with belt:
rolls: 3 * 6 = 18
36 hard hits
Task 3. Squeeze:
Put your nuts on something stiff (like table), something stiff on them (like a book) and weight circa 1 kg on it (for example bottle of water).
rolls: 4 * 3 = 12
stay like that for 36 seconds
Task 4. Sum up:
As you managed to get here without your nuts being tied, punch them 5 times and hit 5 times with belt.
__________________
gay
PM DARE
New thread: Help me to buy a new device
Bull, filthy pig and Disgusting bitch on Male Farm and on Male Zoo
Regular Toilet, Urinal and cleaning staff on Public Toilet
I'm spank dealer and spank man in getdare prison
cumcow and doggieslave on The Second Identity
[URL="http://www.getdare.com/bbs/showthread.php?t=287850"]
Marketing, Vet, art on Getdare college!
Likes: CBT, Bondage, TT, piss,...
Limit: FACE, Cam, Skype,blackmail, blood, public
Kik: yagoba34
nordim is offline   Reply With Quote
Old 07-30-2018, 09:56 PM   #4
tomasz.rodent
getDare Devil
 
tomasz.rodent's Avatar
 
Join Date: Mar 2017
Location: Europe
Posts: 1,135
Default

Thanks, so it looks like script works not only for me.
__________________
30 y.o. male dom/top from Europe (GMT+1 (Winter)/+2 (Summer))

Likes: control (cumming, edging, jerking-off, JOI, denial/chastity), torture (ballbusting, CBT, nipples) [for beginners or experience ones], sometimes exercises and more.

I do NOT do blackmail. I sometimes exposure willing models pics/vids. If you want your pic/vid exposed by me require obvious and clear consent.
tomasz.rodent is offline   Reply With Quote
The following user says Thank You to tomasz.rodent for this post:
Old 09-14-2018, 04:20 AM   #5
GayCackenOffenYom
Member
 
Join Date: Sep 2018
Posts: 58
Default

I ended up not getting my balls tied the first time. I got 14 punches, 16 belt hits, and 21 seconds squeezed. I realized you claim a two out of three chance they're untied (one out of three they are). So I decided to bet AGAINST the odds and do this at least 4 times, after the end 5 of punches and belt hits.

Second time, I barely missed tied nuts on the squeeze roll. I ended up with 12 punches, 16 belt hits, and 24 seconds squeezed.

Third time, again barely kept them untied. 18 punches, 24 belt hits, 24 seconds squeezed. I've already beaten the odds, but one more time to push my luck.

And... 12 on first roll, so 24 punches and nuts tied tightly... 36 more punches with them tied tightly. Then it was 18 belt hits, and another 24 seconds squeezed. I wasnt sure in the sum up how to interpret the x=36 so interpreted it as that being the dice roll, and having to do the 2x hard hits and THEN the 4x in the nuts tied section. So a total of 216 belt hits.

My balls are really sore now. I just untied them. Even though my balls are sore, I enjoyed this. Thank you!
GayCackenOffenYom is offline   Reply With Quote
Old 09-16-2018, 02:53 PM   #6
tomasz.rodent
getDare Devil
 
tomasz.rodent's Avatar
 
Join Date: Mar 2017
Location: Europe
Posts: 1,135
Default

Thank you for your report.
__________________
30 y.o. male dom/top from Europe (GMT+1 (Winter)/+2 (Summer))

Likes: control (cumming, edging, jerking-off, JOI, denial/chastity), torture (ballbusting, CBT, nipples) [for beginners or experience ones], sometimes exercises and more.

I do NOT do blackmail. I sometimes exposure willing models pics/vids. If you want your pic/vid exposed by me require obvious and clear consent.
tomasz.rodent is offline   Reply With Quote
Old 09-18-2018, 12:46 AM   #7
GayCackenOffenYom
Member
 
Join Date: Sep 2018
Posts: 58
Default

I just did this again... and got 10 on the first roll, which meant x was 20 and I had to have my nuts tied for the rest of the game. Ended up with 8 on each of the next two sections, and repeating the second one because of my nuts being tied. It was great, once again!
GayCackenOffenYom is offline   Reply With Quote
Old 08-20-2020, 01:36 PM   #8
bmattill
Junior Member
 
Join Date: Aug 2017
Location: USA
Posts: 14
Default

I rolled a 20, so i got 60 hard punches, tied up.
THen I got a 12, so 24 hard hits with a belt
THen i had 25, so i got 100 seconds squeeze. I put the boys under the toilet seat, and leaned on the seat.
And finally of course, i was tied, so i needed to do #2 with x=36. So i had to do 4*36 (=144) hard hits with the belt. I'm still feeling it. And still tied....
__________________
gay m USA
likes: ballbusting, edging
dislikes: feminization
limits: face; scat; anything having to do with identity

kik: bmattill2
bmattill is offline   Reply With Quote
Old 10-29-2020, 11:11 AM   #9
dirtyballs
Member
 
dirtyballs's Avatar
 
Join Date: Feb 2020
Posts: 56
Blog Entries: 1
Default

Punches
x=1+6 = 7 *2 = 14

Hits with belt.
x=3+5 = 8 = 16 hard hits

Squeeze
x= 4+4 = 7 = 24 seconds

Sum up
punch them 5 times and add 5 times with belt.

Thank you very much!!! Easy!
__________________
GAY

Likes: CBT, Feet, bondage, BDSM, pee, spank, spit, armpits,...

Dislikes messy, semi-public, slight messy, long denial, bodywriting,

Limits: Blood, other persons, face, permanent, ilegal, social suicide, needles, feminization, public,

Bull, filthy pig and Disgusting bitch on Male Farm
Regular Toilet and Staff on Public Toilet RolePlay [M/F]

PM

http://bdsmtest.org/r/xqbbgzvZ
kik dirtyballs00

Last edited by dirtyballs; 10-29-2020 at 11:19 AM.
dirtyballs is offline   Reply With Quote
Old 03-27-2021, 12:18 PM   #10
l1l4c
Junior Member
 
Join Date: Mar 2021
Location: EU
Posts: 3
Default

This seemed so easy, but boy you proved me wrong.

Punches:
I rolled 6 and 3 - lucky number - so 36 punches.

Hits:
4 and 5 gave me 40 belt hits.

Squeeze:
5 and 6 brought me tied nuts and 150 seconds.

Sum up
So luckily the last task brought me tied balls and 144 belt hits. Not funny.
__________________
Likes: anal, ballbusting, cbt, nipple pain, wax, light to medium pain, light public, switch for switch, dice rolls, toothpaste
Dislikes: Heavy pain, long dares, having no chance for revenge.
Limits: permanent physical or social damage, involving muggles, dirty, blood, face pics. List is incomplete .

kik: 1mjustcl34ning
l1l4c is offline   Reply With Quote
The following user says Thank You to l1l4c for this post:
Old 03-28-2021, 05:01 AM   #11
tomasz.rodent
getDare Devil
 
tomasz.rodent's Avatar
 
Join Date: Mar 2017
Location: Europe
Posts: 1,135
Default

Thank you for brining the thread to living again
__________________
30 y.o. male dom/top from Europe (GMT+1 (Winter)/+2 (Summer))

Likes: control (cumming, edging, jerking-off, JOI, denial/chastity), torture (ballbusting, CBT, nipples) [for beginners or experience ones], sometimes exercises and more.

I do NOT do blackmail. I sometimes exposure willing models pics/vids. If you want your pic/vid exposed by me require obvious and clear consent.
tomasz.rodent is offline   Reply With Quote
Old 05-16-2021, 08:46 AM   #12
Paul
Junior Member
 
Paul's Avatar
 
Join Date: Sep 2009
Location: EMEA
Posts: 25
Blog Entries: 1
Default Great idea

The script is a great idea Tomasz
__________________
48/M/Straight. Interested in contact from any sex and age.

Likes: bondage, nipple torture, edging, orgasms, clothespins, pain, toothpaste, cbt, pic proof, spanking and body writing.

Limits: face and anal.


Kik: paulswitch1975

PM Dares List

Last edited by Paul; 05-16-2021 at 08:48 AM.
Paul is offline   Reply With Quote
The following user says Thank You to Paul for this post:
Old 05-16-2021, 09:14 AM   #13
tomasz.rodent
getDare Devil
 
tomasz.rodent's Avatar
 
Join Date: Mar 2017
Location: Europe
Posts: 1,135
Default

@Paul,
thank you! I wanted to make it easier to obtain numbers from the task
__________________
30 y.o. male dom/top from Europe (GMT+1 (Winter)/+2 (Summer))

Likes: control (cumming, edging, jerking-off, JOI, denial/chastity), torture (ballbusting, CBT, nipples) [for beginners or experience ones], sometimes exercises and more.

I do NOT do blackmail. I sometimes exposure willing models pics/vids. If you want your pic/vid exposed by me require obvious and clear consent.
tomasz.rodent is offline   Reply With Quote
Old 05-16-2021, 09:41 AM   #14
Kiton
Distinguished Member
 
Kiton's Avatar
 
Join Date: Jun 2020
Location: United States
Posts: 903
Default

So first roll was 36... so time 3 and tied .. nothing like starting out hard I guess? Those punches got me sore especially to my tied balls

Moving on to the belt the dice where a little nicer only a 16 (x2) this time, still felt them good

And the squeeze was a roll of 15 leaving my balls squished for 45 seconds

Sum up, my balls are nice and sore... wait there’s more... if my balls are tied... oh.. that first roll strikes again back to step 2 once more... for more ... ya now they are really sore

That was fun. Thanks
__________________
kik is kiton01

into ballbusting, light cbt, joi, ruined orgasms, edging, tease and (short)denial ...ask me I might try it

Limits public, toilet, Needles, face Exposure (will do other pics), blood

I don’t have any toys and live with family so I can’t really get any or do anything to out in the open

Bust me, edge me, or make me ruin my orgasms
https://www.getdare.com/bbs/showthre...34#post5415534
Kiton is offline   Reply With Quote
The following user says Thank You to Kiton for this post:
Old 05-16-2021, 09:49 AM   #15
tomasz.rodent
getDare Devil
 
tomasz.rodent's Avatar
 
Join Date: Mar 2017
Location: Europe
Posts: 1,135
Default

@Kiton
Thanks for the report!
__________________
30 y.o. male dom/top from Europe (GMT+1 (Winter)/+2 (Summer))

Likes: control (cumming, edging, jerking-off, JOI, denial/chastity), torture (ballbusting, CBT, nipples) [for beginners or experience ones], sometimes exercises and more.

I do NOT do blackmail. I sometimes exposure willing models pics/vids. If you want your pic/vid exposed by me require obvious and clear consent.
tomasz.rodent is offline   Reply With Quote
The following user says Thank You to tomasz.rodent for this post:
Reply

Advertisements
Kink Talk

Tags
ballbusting


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 06:16 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc. - Also check out Kink Talk!reptilelaborer