Welcome to the Newschoolers forums! You may read the forums as a guest, however you must be a registered member to post. Register to become a member today!
I think it would be cooler for rail tricks.
yeah idk about the cork/doublecork/flip version your thinkin of
it would definately be more fun with not so difficult stuff lol
or rail trick
put this to ford the company that makes the skate dice.
sood idea
Just saw this thread and had a little free time, so I scripted a little something.
Just save the following code as a .html document from notepad or something.
function JSRollDice() {
var ran_dice_1 = Math.random()*6;
var ran_dice_11 = Math.floor(ran_dice_1);
var ran_dice_2 = Math.random()*6;
var ran_dice_22 = Math.floor(ran_dice_2);
var ran_dice_3 = Math.random()*6;
var ran_dice_33 = Math.floor(ran_dice_3);
var ran_dice_4 = Math.random()*6;
var ran_dice_44 = Math.floor(ran_dice_4);
array_dice_1 = new Array('S','Left
Foot','Right
Foot','Switch
Left Foot','Switch
Right Foot','x');
array_dice_2 = new Array('K','90-on','270-on','Front
Switch-up','Blind
Switch-up','x');
array_dice_3 = new Array('I','Slide','Front
Switch-up','Blind
Switch-up','Slide','x');
array_dice_4 = new Array('!','Front
90-out','Front
270-out','Blind
90-out','Blind
270-out','x');
document.all.dice_1.value = array_dice_1[ran_dice_11];
document.all.dice_2.value = array_dice_2[ran_dice_22];
document.all.dice_3.value = array_dice_3[ran_dice_33];
document.all.dice_4.value = array_dice_4[ran_dice_44];
document.all.trick_name.value = array_dice_1[ran_dice_11].replace('
','') + ' ' + array_dice_2[ran_dice_22].replace('
','') + ' ' + array_dice_3[ran_dice_33].replace('
','') + ' ' + array_dice_4[ran_dice_44].replace('
','');
}
Ski Dice
That didn't work out too well, here we go again:
function JSRollDice() {
var ran_dice_1 = Math.random()*6;
var ran_dice_11 = Math.floor(ran_dice_1);
var ran_dice_2 = Math.random()*6;
var ran_dice_22 = Math.floor(ran_dice_2);
var ran_dice_3 = Math.random()*6;
var ran_dice_33 = Math.floor(ran_dice_3);
var ran_dice_4 = Math.random()*6;
var ran_dice_44 = Math.floor(ran_dice_4);
array_dice_1 = new Array('S','Left
Foot','Right
Foot','Switch
Left Foot','Switch
Right Foot','x');
array_dice_2 = new Array('K','90-on','270-on','Front
Switch-up','Blind
Switch-up','x');
array_dice_3 = new Array('I','Slide','Front
Switch-up','Blind
Switch-up','Slide','x');
array_dice_4 = new Array('!','Front
90-out','Front
270-out','Blind
90-out','Blind
270-out','x');
document.all.dice_1.value = array_dice_1[ran_dice_11];
document.all.dice_2.value = array_dice_2[ran_dice_22];
document.all.dice_3.value = array_dice_3[ran_dice_33];
document.all.dice_4.value = array_dice_4[ran_dice_44];
document.all.trick_name.value = array_dice_1[ran_dice_11].replace('
','') + ' ' + array_dice_2[ran_dice_22].replace('
','') + ' ' + array_dice_3[ran_dice_33].replace('
','') + ' ' + array_dice_4[ran_dice_44].replace('
','');
}
Ski Dice
that would be so fun! somone should invent that!
OH MY GOD YES! that is sig worthy shit
Yeah I realized that after I made it but didn't feel like going back and changing it.