This commit is contained in:
William 2020-04-19 20:20:51 -04:00
parent a6f3806352
commit b9d758f417

View File

@ -47,30 +47,37 @@ function handleCredits(){
titleScreenState = "main"; titleScreenState = "main";
timer = 0; timer = 0;
} }
}else{
timer++;
}
// Rsninja // Rsninja
if(rectpoint({x:400, y:145, w: 340, h: 30}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){ if(rectpoint({x:400, y:145, w: 340, h: 30}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
window.open('https://rsninja.dev/', '_blank'); window.open('https://rsninja.dev/', '_blank');
timer = 0;
} }
// Silas // Silas
if(rectpoint({x:420, y:227, w: 350, h: 31}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){ if(rectpoint({x:420, y:227, w: 350, h: 31}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
window.open('https://exvacuum.dev', '_blank'); window.open('https://exvacuum.dev', '_blank');
timer = 0;
} }
//Evan //Evan
if(rectpoint({x:430, y:307, w: 360, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){ if(rectpoint({x:430, y:307, w: 360, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
window.open('https://retrylife.ca/', '_blank'); window.open('https://retrylife.ca/', '_blank');
timer = 0;
} }
// // William // // William
if(rectpoint({x:460, y:382, w: 420, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){ if(rectpoint({x:460, y:382, w: 420, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
window.open('https://wm-c.dev', '_blank'); window.open('https://wm-c.dev', '_blank');
timer = 0;
} }
}else{
timer++;
}
} }