Old 02-12-2011, 09:11 AM   #16
bikerad
Junior Member
 
Join Date: Oct 2010
Location: https://www.accountkiller.com/removal-requested
Posts: 8
Send a message via ICQ to bikerad Send a message via AIM to bikerad Send a message via Yahoo to bikerad
Default

http://www.dice2d.com/dice-roller.html this dice has lots of sides avalible
bikerad is offline   Reply With Quote
Old 03-19-2011, 02:25 PM   #17
SneakerSlave
Member
 
SneakerSlave's Avatar
 
Join Date: Mar 2011
Location: Netherlands
Posts: 60
Default

I am using http://dicelog.com/dice a lot.

You can roll any dice you want. Want a dice with 24 sides? Then use: 1d24. When I let a dice decide which boxer short I have to wear, I roll 1d63 haha. Also you can make all kinds of formulas with it. For instance, I have 35 pears of sneakers I wear regularly, so I often use 1d35, but when I must risk more or newer sneakers only I could use 1d15+20. This way the dice chooses only from my latest 15 pairs of sneakers.

What makes it really interesting is https://dicelog.com/maildice, because it can e-mail the results to persons. So a slave can roll a dice and at the moment he sees the outcome of the roll, the proof of that roll is in his masters e-mailbox. There is even a code with can use to see if there is really legitimate dice roll going on.

PS the mail dice does give a warning in some browsers, but I have been using it for years and it's safe.
__________________
Likes:
Cum, outdoor, public, bit pain, bondage, sneakers, clothing and sneaker assignments (risk-damage), integrating assignments in real life, anal, feet, spanking, masturbation control, piss, dice games & dares.

No turn on, but possible:

Scat, messy

Limits:
Blood, unsafe & physically dangerous, skin damage, femdom & female clothes, diapers, extreme pain, family & Friends

I have a Yahoo group which contains all my clohing, which a dom could use to determine what I need to wear/risk
SneakerSlave is offline   Reply With Quote
Old 12-21-2013, 10:07 AM   #18
daremealso
Member
 
Join Date: Dec 2013
Location: Denmark
Posts: 40
Blog Entries: 2
Default

With this one you can make a Dice Room, that people can join and see what you roll it also have a log for rolls made.

http://rolz.org/group


Nickname: "your getdare username"
Room Name: GetDare (or what you like to call it)
__________________
GOOD BYE FOREVER NO MORE DARE
daremealso is offline   Reply With Quote
Old 12-21-2013, 10:17 AM   #19
StrawDog
getDare Succubus
 
StrawDog's Avatar
 
Join Date: May 2012
Posts: 1,759
Blog Entries: 17
Default

Quote:
Originally Posted by daremealso View Post
With this one you can make a Dice Room, that people can join and see what you roll it also have a log for rolls made.

http://rolz.org/group


Nickname: "your getdare username"
Room Name: GetDare (or what you like to call it)
Yes; I've used this for simple betting games, and find it very useful. Really a great little tool, and easy to use. The only real drawback I've found so far is rolling multiple dice at once; you can only roll 4D6 (or any dice) at a time, I think? But that in itself is has not been too much of a problem for me.

There are also good codes for people who want to make things a little more complex.
__________________
Likes/Dislikes/Limits are in my blog

'A man’s character is most evident by how he treats those who are not in a position either to retaliate or reciprocate.'

-Paul Eldridge
StrawDog is offline   Reply With Quote
Old 03-04-2017, 01:03 PM   #20
Magnetic
Account Banned
 
Magnetic's Avatar
 
Join Date: Jun 2016
Location: In your nightma... er... dreams!
Posts: 1,616
Blog Entries: 14
Magnet

That URL is very good for computers, but it is lacking for phones or tablets. Not because it is not entirely functional in those devices, but it does not uses the unique characteristic they have that normal computers and notebooks do not.

If you use an Android device, for example, you could download this app:

https://play.google.com/store/apps/d...infusoft.dados

Then, to through a (or many) dice you would simply start up the app and shake your phone!

What? Don't use an Android device? Well, in that case you could trash the piece of junk you've got and get an Android device!

Now, seriously, just search for the word "dice" in your application center (however it is called) and something tells me you will find one just for you.
__________________
Who are my dares addressed to?, read this first. If you do no not match, do it if you want but do not report.

Dare Rules, they apply to all the dares I give unless I specifically excuse you from them.

Did I tell you should be Going Commando? This is what I meant! Why all these rules?

Spank Generator (its thread is here)

SkyPe: [email protected] (Only SkyPe)
Email: [email protected]
Kik: magnetic.king
Magnetic is offline   Reply With Quote
Old 03-04-2017, 01:22 PM   #21
evildom
Member
 
Join Date: Dec 2012
Location: Australia
Posts: 41
Default Kik dice

Kik now has a bot going doing dice rolls. Just type "@roll 6". You can change the number of sides too.

It also has a bot that can be used for keeping scores "@gggoal". Haven't had a chance to use it in a game yet, but looks like fun.


Kik: evilassassin00
evildom is offline   Reply With Quote
Old 07-11-2017, 10:27 PM   #22
cinthia_52
Baby Member
 
cinthia_52's Avatar
 
Join Date: Mar 2017
Location: West Coast Canada, Pacific time zone
Posts: 1
Send a message via Yahoo to cinthia_52
Default An easy online dice room

www.rolz.org is the site whenever I play a set of rules. Tehre are lots of sets in the Forums in slutwives.com. If you are a dominant, please message me for more info.
cinthia_52 is offline   Reply With Quote
Old 12-08-2017, 02:41 PM   #23
darkmorgoth
Senior Member
 
darkmorgoth's Avatar
 
Join Date: Jun 2013
Location: Europe
Posts: 109
Blog Entries: 3
Default

There's a good way to securely roll a die between two persons without requiring any websites or emails if you have access to a linux shell:

1. Alice picks a decently sized random number, i.e. with:
Code:
$ dd if=/dev/urandom bs=8 count=1 status=none | xxd -ps
4b3bde518f53e97f
2. She generates a cryptographic hash of that number and sends it to Bob:
Code:
$ echo 4b3bde518f53e97f | sha256sum
89dbb80685382fd0e40deefa55274b6598bf07b198c27ec9435157c6231f228e  -
3. Bob generates a random number and sends it to Alice:
Code:
$ dd if=/dev/urandom bs=8 count=1 status=none | xxd -ps
66ea8ac179e39753
4. Alice reveals her number from step 1

5. Bob verifies its checksum is OK

6. They XOR the two random numbers and take a modulus of whatever-many sides they want. Assuming they want a d6:
Code:
$ echo $(( (0x4b3bde518f53e97f ^ 0x66ea8ac179e39753) % 6 + 1))
1
They rolled a 1. Yay.

Edit: There's also quite a few websites that can calculate XOR or SHA256 for you. You can also get a shell in your browser: https://bellard.org/jslinux/vm.html?...ldroot-x86.cfg (it's missing xxd, so change "xxd -ps" to "od -A n -t x8")
__________________
32/m/switch

Last edited by darkmorgoth; 12-08-2017 at 02:53 PM. Reason: Add a note about websites
darkmorgoth is offline   Reply With Quote
Reply

Advertisements
Kink Talk

Thread Tools
Display Modes

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 02:07 PM.

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