About 3,520 results
Open links in new tab
  1. Roll A D20 Die

    // code to create a D20 dice roller // define the range of numbers to pick from var lowest = 1; // lowest possible side of the dice var highest = 20; // highest possible side of the dice var …

  2. Roll A Die

    Throw dice for games like Dungeons and Dragons (DnD) and Ship-Captain-Crew. Lets you add/remove dice (set numbers of dice to make a custom dice roller). Combine with other types …

  3. Roll 2 D20 Dice - Roll A Die

    Rolls 2 D20 dice Lets you roll multiple dice like 2 D20s, or 3 D20s. Add, remove or set numbers of dice to roll Combine with other types of dice (like D18 and D22) to throw and make a custom …

  4. Roll A D4 Die

    var dice_face = Math.floor(Math.random() * (highest-lowest+1) + lowest); this_roll.push(dice_face); //store this in the array } // print all the generated rolls for (j = 0; j < …

  5. Roll 20 Dice

    Roll times Show Last Roll Only settings Roll a die 2 times Roll 21 dice Roll a D7 die Flip a Coin Pick Random Numbers

  6. Roll A D100 Die

    var dice_face = Math.floor(Math.random() * (highest-lowest+1) + lowest); this_roll.push(dice_face); //store this in the array } // print all the generated rolls for (j = 0; j < …

  7. Roll A D10 Die

    var dice_face = Math.floor(Math.random() * (highest-lowest+1) + lowest); this_roll.push(dice_face); //store this in the array } // print all the generated rolls for (j = 0; j < …

  8. Roll 6 D20 Dice - Roll A Die

    Rolls 6 D20 dice Lets you roll multiple dice like 2 D20s, or 3 D20s. Add, remove or set numbers of dice to roll Combine with other types of dice (like D18 and D22) to throw and make a custom …

  9. Roll A D8 Die

    var dice_face = Math.floor(Math.random() * (highest-lowest+1) + lowest); this_roll.push(dice_face); //store this in the array } // print all the generated rolls for (j = 0; j < …

  10. Roll a D10 die and a D20 die

    D10 + D20 Dice Roller D10 + D20 Dice Roller Rolls a D10 die and a D20 die Lets you roll multiple dice like 2 D10s, or 3 D10s. Add, remove or set numbers of dice to roll Combine with other …