function rolldice() {
var x = Math.floor(Math.random() * ((6 - 1) + 1) + 1);
var y = Math.floor(Math.random() * ((6 - 1) + 1) + 1);
var dicetotal = x + y;
var double = 0;
$('.dice1').attr('id', "dice" + x);
$('.dice2').attr('id', "dice" + y);
if (x == y) { //<----checking if there is a double
var double = double++; //<---increment double count
//Now reroll the dice, but if you hit 3 doubles in a row, you get message go to jail.
}
};
我想知道我是否需要一些循環...請幫助我。這是壟斷遊戲的一部分。我需要在代碼中添加什麼,以便在出現重複時使其循環。javascript中的骰子滾動
不要叫你的變量'double'。你以後會感謝我。 –
如果您在此處添加循環,則無法接受兩個滾輪之間的用戶輸入。這真的是你想要的大富翁遊戲? – user1781290
第二個'var double'是一個重新定義。只需'雙++'就足夠了。 – thebjorn