+ 1
Dice adding kind gane
Can anyone pls help me I am trying to find out how can I make one dice and just keep adding no. till I press a button
1 Odpowiedź
0
You can add a dice with:
var min = 1;
var max = 6; //you can change that value if you want a dice with more numbers.
var dice  = Math.floor(Math.random()*(max-min))+min;
but the rest of your question i cant understand unfortunately
Try something with onmousedown="myfunction()" //fires as long as you click
function myfunction(){
    //thats what you wanna "add"
}



