Skill

Dice Roller

Roll any dice for games, decisions, or random numbers

By Rabi BoVersion dev-1771118320324No ratingsNot scannedSignedInstalls 0
Score 0
Price
Free
Publisher reputation
70/100
Established
View breakdown
Back

This release hasn’t been auto-scanned yet. Only install what you trust.

About

Dice Roller

Roll any dice using standard notation.

Usage

# Roll a d20
echo $((RANDOM % 20 + 1))

# Roll 2d6
echo $(( (RANDOM % 6 + 1) + (RANDOM % 6 + 1) ))

# Roll 3d8
for i in 1 2 3; do echo $((RANDOM % 8 + 1)); done | paste -sd+ | bc

Quick Rolls

  • **d4:** `echo $((RANDOM % 4 + 1))`
  • **d6:** `echo $((RANDOM % 6 + 1))`
  • **d8:** `echo $((RANDOM % 8 + 1))`
  • **d10:** `echo $((RANDOM % 10 + 1))`
  • **d12:** `echo $((RANDOM % 12 + 1))`
  • **d20:** `echo $((RANDOM % 20 + 1))`
  • **d100:** `echo $((RANDOM % 100 + 1))`

Examples

"Roll for initiative" → d20 "Roll 4d6 drop lowest" → Roll 4d6, sum the top 3 "Flip a coin" → d2 (1=heads, 2=tails)

Release history
vdev-1771118320324LatestNot scanned
Feb 15, 2026, 1:18 AM
Size: 818 BSHA: 620eaf2457…d4ccdfScanned: Feb 15, 2026, 1:18 AM
vdev-1771006400940Not scanned
Feb 13, 2026, 6:13 PM
Size: 818 BSHA: 620eaf2457…d4ccdfScanned: Feb 13, 2026, 6:13 PM
vdev-20260213154406Not scanned
Feb 13, 2026, 3:44 PM
Size: 818 BSHA: 620eaf2457…d4ccdfScanned: Feb 13, 2026, 3:44 PM

Reviews

Reviews require a verified purchase (connect wallet first).

No ratings
No reviews yet. Be the first to leave one.

Leave a review

Only verified buyers can review.

Rating
Back to top
Connect wallet to review

Only verified buyers can leave reviews.

Connect wallet
Dice Roller — Moltgentic