We don't need fun orb stuff in our 2009scape repo.
This commit is contained in:
Summer 2021-06-14 00:37:18 -04:00 committed by GitHub
parent 69a0153390
commit a10d53a956
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 611 deletions

View File

@ -1,161 +0,0 @@
var numofoptions = 16;
var testArr = new Array(numofoptions);
testArr[0] = document.getElementById("teletext_inner").innerHTML;
testArr[1] =
"<span class='hilight' id='teledetail0'>Odark0</span> a obtenu un score de <span class='hilight' id='teledetail1'>Score: 1 217</span> dans le jeu <span class='hilight' id='teledetail2'>Tomb Racer - Abysse de la perdition</span> et prend ainsi la seconde place."
;
testArr[2] = "Félicitations à <span class='hilight' id='teledetail0'>Ran Cuty</span>, qui a obtenu <span class='hilight' id='teledetail1'>Maître de FunOrb</span> dans le jeu <span class='hilight' id='teledetail2'>FunOrb</span>." ;
testArr[3] =
"<span class='hilight' id='teledetail0'>Pelea8</span> atteint <span class='hilight' id='teledetail1'>3182</span> points dans le jeu <span class='hilight' id='teledetail2'>Deko Bloko</span> et obtient ainsi la quatrième place."
;
testArr[4] =
"<span class='hilight' id='teledetail0'>Redchessman</span> atteint <span class='hilight' id='teledetail1'>3726</span> points dans le jeu <span class='hilight' id='teledetail2'>Échecs</span> et obtient ainsi la seconde place."
;
testArr[5] =
"<span class='hilight' id='teledetail0'>Tolly12bells</span> a obtenu un score de <span class='hilight' id='teledetail1'>Score: 73 154</span> dans le jeu <span class='hilight' id='teledetail2'>Geoblox</span> et prend ainsi la troisième place."
;
testArr[6] = "Félicitations à <span class='hilight' id='teledetail0'>Spike2000165</span>, qui a obtenu <span class='hilight' id='teledetail1'>Plus fort que son mentor</span> dans le jeu <span class='hilight' id='teledetail2'>Kickabout League</span>." ;
testArr[7] =
"<span class='hilight' id='teledetail0'>Ligerbearpig</span> a obtenu un score de <span class='hilight' id='teledetail1'>Score: 1 999</span> dans le jeu <span class='hilight' id='teledetail2'>Tomb Racer - Grande pyramide</span> et prend ainsi la troisième place."
;
testArr[8] = "Félicitations à <span class='hilight' id='teledetail0'>Abczxw</span>, qui a obtenu <span class='hilight' id='teledetail1'>Pacifiste</span> dans le jeu <span class='hilight' id='teledetail2'>Échecs</span>." ;
testArr[9] =
"<span class='hilight' id='teledetail0'>Devilno999</span> a obtenu un score de <span class='hilight' id='teledetail1'>Score: 1 176 960</span> dans le jeu <span class='hilight' id='teledetail2'>Dr Phlogiston sauve la Terre</span> et prend ainsi la cinquième place.";
testArr[10] =
"<span class='hilight' id='teledetail0'>Foggo 1</span> atteint <span class='hilight' id='teledetail1'>3500</span> points dans le jeu <span class='hilight' id='teledetail2'>Armées de Giélinor</span> et obtient ainsi la quatrième place."
;
testArr[11] = "<span class='hilight' id='teledetail0'>Dark Falkkon</span> atteint <span class='hilight' id='teledetail1'>3948</span> points dans le jeu <span class='hilight' id='teledetail2'>Steel Sentinels</span> et obtient ainsi la première place."
;
testArr[12] =
"<span class='hilight' id='teledetail0'>Crashmcvert</span> atteint <span class='hilight' id='teledetail1'>2804</span> points dans le jeu <span class='hilight' id='teledetail2'>L'armée des zombies multijoueur</span> et obtient ainsi la troisième place."
;
testArr[13] = "<span class='hilight' id='teledetail0'>Zoink30</span> atteint <span class='hilight' id='teledetail1'>1821</span> points dans le jeu <span class='hilight' id='teledetail2'>Pixel'Art</span> et obtient ainsi la première place."
;
testArr[14] =
"<span class='hilight' id='teledetail0'>R-3_4-L L0VE</span> atteint <span class='hilight' id='teledetail1'>3025</span> points dans le jeu <span class='hilight' id='teledetail2'>Brique à brac</span> et obtient ainsi la troisième place."
;
testArr[15] =
"<span class='hilight' id='teledetail0'>Sirgawain21</span> a obtenu un score de <span class='hilight' id='teledetail1'>Score: 1 125</span> dans le jeu <span class='hilight' id='teledetail2'>Tomb Racer - Ziggourat du zen</span> et prend ainsi la troisième place."
;
setTimeout("changetele(0)",waittime);
// Comment

View File

@ -1,42 +0,0 @@
var currentIdx = 1;
var fadetime=80;
var waittime=6000;
function changetele(currentStep){
var teletxt = document.getElementById("teletext_inner");
if(currentStep<5){
if(currentStep==0){
setcolor("#636363","#777777");
}
else if(currentStep==1){
setcolor("#333333","#444444");
}
else if(currentStep==2){
setcolor("#131313","#131313");
if(currentIdx==numofoptions)currentIdx=0;
teletxt.innerHTML = testArr[currentIdx++];
}
else if(currentStep==3){
setcolor("#333333","#444444");
}
else if(currentStep==4){
setcolor("#636363","#777777");
}
setTimeout("changetele("+(currentStep+1)+")",fadetime);
}
else{
setcolor("#999999","#DDDDDD");
setTimeout("changetele(0)",waittime);
}
}
function setcolor(maincol,detailcol){
var teletxt = document.getElementById("teletext_inner");
var detail0 = document.getElementById("teledetail0");
var detail1 = document.getElementById("teledetail1");
var detail2 = document.getElementById("teledetail2");
teletxt.style.color=maincol;
if(detail0!=null)detail0.style.color=detailcol;
if(detail1!=null)detail1.style.color=detailcol;
if(detail2!=null)detail2.style.color=detailcol;
}
// Comment

View File

@ -1,157 +0,0 @@
var numofoptions = 16;
var testArr = new Array(numofoptions);
testArr[0] = document.getElementById("teletext_inner").innerHTML;
testArr[1] =
"<span class='hilight' id='teledetail0'>Dxc2007</span> conseguiu obter <span class='hilight' id='teledetail1'>Score: 1.237</span> em <span class='hilight' id='teledetail2'>Hordas de Guilenor - Zamorak Retorna</span> e está em 4º lugar"
;
testArr[2] =
"<span class='hilight' id='teledetail0'>Samusiv</span> conseguiu obter <span class='hilight' id='teledetail1'>Pontuação: 27.442</span> em <span class='hilight' id='teledetail2'>Torquing!</span> e está em 5º lugar";
testArr[3] =
" <span class='hilight' id='teledetail0'>Zoink30</span> tem qualificação de <span class='hilight' id='teledetail1'>1516</span> em <span class='hilight' id='teledetail2'>Ofensiva Galáctica</span> e está em 5º lugar";
testArr[4] = "Parabéns <span class='hilight' id='teledetail0'>Chaotic Ring</span> por alcançar a Conquista <span class='hilight' id='teledetail1'>Tempestade de vitória</span> em <span class='hilight' id='teledetail2'>Arcanistas</span>" ;
testArr[5] =
" <span class='hilight' id='teledetail0'>aster Yirone</span> tem qualificação de <span class='hilight' id='teledetail1'>2309</span> em <span class='hilight' id='teledetail2'>Bachelor Fridge</span> e está em 5º lugar";
testArr[6] = "Parabéns <span class='hilight' id='teledetail0'>Gengar139</span> por alcançar a Conquista <span class='hilight' id='teledetail1'>Mestre Orb</span> em <span class='hilight' id='teledetail2'>FunOrb</span>" ;
testArr[7] =
" <span class='hilight' id='teledetail0'>Power9820000</span> tem qualificação de <span class='hilight' id='teledetail1'>2521</span> em <span class='hilight' id='teledetail2'>Virogrid</span> e está em 3º lugar"
;
testArr[8] = "Parabéns <span class='hilight' id='teledetail0'>Ran Cuty</span> por alcançar a Conquista <span class='hilight' id='teledetail1'>Mestre Orb</span> em <span class='hilight' id='teledetail2'>FunOrb</span>" ;
testArr[9] =
" <span class='hilight' id='teledetail0'>Kungfutex</span> tem qualificação de <span class='hilight' id='teledetail1'>1483</span> em <span class='hilight' id='teledetail2'>Pixelate</span> e está em 4º lugar"
;
testArr[10] = "Parabéns <span class='hilight' id='teledetail0'>Spike2000165</span> por alcançar a Conquista <span class='hilight' id='teledetail1'>Vencendo o mestre</span> em <span class='hilight' id='teledetail2'>Kickabout League</span>" ;
testArr[11] =
" <span class='hilight' id='teledetail0'>Open Butter</span> tem qualificação de <span class='hilight' id='teledetail1'>5041</span> em <span class='hilight' id='teledetail2'>Arcanistas</span> e está em 2º lugar"
;
testArr[12] =
"<span class='hilight' id='teledetail0'>kappa1016</span> conseguiu obter <span class='hilight' id='teledetail1'>Onda: 94, Pontuação: 1.591.050</span> em <span class='hilight' id='teledetail2'>Defesa Orb - Grade</span> e está em 3º lugar"
;
testArr[13] =
" <span class='hilight' id='teledetail0'>Almost Go</span> tem qualificação de <span class='hilight' id='teledetail1'>2821</span> em <span class='hilight' id='teledetail2'>Exército dos Zumbis Multijogador</span> e está em 2º lugar"
;
testArr[14] =
"<span class='hilight' id='teledetail0'>kurai elite</span> conseguiu obter <span class='hilight' id='teledetail1'>Score: 1.241</span> em <span class='hilight' id='teledetail2'>Hordas de Guilenor - Zamorak Retorna</span> e está em 3º lugar"
;
testArr[15] = "<span class='hilight' id='teledetail0'>Usbeatingu</span> conseguiu obter <span class='hilight' id='teledetail1'>Precisão: 42%, Pontuação: 48.400</span> em <span class='hilight' id='teledetail2'>Ace of Skies - Jogo Principal</span> e está em 1º lugar"
;
setTimeout("changetele(0)",waittime);
// Comment

View File

@ -1,42 +0,0 @@
var currentIdx = 1;
var fadetime=80;
var waittime=6000;
function changetele(currentStep){
var teletxt = document.getElementById("teletext_inner");
if(currentStep<5){
if(currentStep==0){
setcolor("#636363","#777777");
}
else if(currentStep==1){
setcolor("#333333","#444444");
}
else if(currentStep==2){
setcolor("#131313","#131313");
if(currentIdx==numofoptions)currentIdx=0;
teletxt.innerHTML = testArr[currentIdx++];
}
else if(currentStep==3){
setcolor("#333333","#444444");
}
else if(currentStep==4){
setcolor("#636363","#777777");
}
setTimeout("changetele("+(currentStep+1)+")",fadetime);
}
else{
setcolor("#999999","#DDDDDD");
setTimeout("changetele(0)",waittime);
}
}
function setcolor(maincol,detailcol){
var teletxt = document.getElementById("teletext_inner");
var detail0 = document.getElementById("teledetail0");
var detail1 = document.getElementById("teledetail1");
var detail2 = document.getElementById("teledetail2");
teletxt.style.color=maincol;
if(detail0!=null)detail0.style.color=detailcol;
if(detail1!=null)detail1.style.color=detailcol;
if(detail2!=null)detail2.style.color=detailcol;
}
// Comment

View File

@ -1,167 +0,0 @@
var numofoptions = 16;
var testArr = new Array(numofoptions);
testArr[0] = document.getElementById("teletext_inner").innerHTML;
testArr[1] =
"<span class='hilight' id='teledetail0'>Dr Korvett</span> has managed to get a score of <span class='hilight' id='teledetail1'>Accuracy: 45%, Score: 5,700</span> in <span class='hilight' id='teledetail2'>Ace of Skies - Arcade Mode</span>, putting them in 2nd place"
;
testArr[2] =
"<span class='hilight' id='teledetail0'>iBlade x</span> has a Rating of <span class='hilight' id='teledetail1'>1477</span> in <span class='hilight' id='teledetail2'>Pixelate</span>, putting them in 5th place";
testArr[3] =
"<span class='hilight' id='teledetail0'>Gamer33333</span> has a Rating of <span class='hilight' id='teledetail1'>2283</span> in <span class='hilight' id='teledetail2'>Virogrid</span>, putting them in 5th place";
testArr[4] =
"Well done to <span class='hilight' id='teledetail0'>Jak Of Honor</span> for getting the <span class='hilight' id='teledetail1'>Zarosian Purge</span> Achievement in <span class='hilight' id='teledetail2'>Armies of Gielinor</span>"
;
testArr[5] =
"<span class='hilight' id='teledetail0'>Ligerbearpig</span> has managed to get a score of <span class='hilight' id='teledetail1'>Score: 1,999</span> in <span class='hilight' id='teledetail2'>Tomb Racer - Common Pyramid</span>, putting them in 3rd place"
;
testArr[6] =
"<span class='hilight' id='teledetail0'>Mime Skilll</span> has a Rating of <span class='hilight' id='teledetail1'>2525</span> in <span class='hilight' id='teledetail2'>Pool</span>, putting them in 3rd place"
;
testArr[7] = "<span class='hilight' id='teledetail0'>Firesnake Jr</span> has a Rating of <span class='hilight' id='teledetail1'>3568</span> in <span class='hilight' id='teledetail2'>Brick-À-Brac</span>, putting them in 1st place"
;
testArr[8] =
"<span class='hilight' id='teledetail0'>Cneedsagf</span> has managed to get a score of <span class='hilight' id='teledetail1'>Score: 1,027,800</span> in <span class='hilight' id='teledetail2'>Miner Disturbance - Volcano</span>, putting them in 4th place"
;
testArr[9] =
"<span class='hilight' id='teledetail0'>Wazinmypants</span> has a Rating of <span class='hilight' id='teledetail1'>4635</span> in <span class='hilight' id='teledetail2'>Arcanists</span>, putting them in 3rd place"
;
testArr[10] =
"Well done to <span class='hilight' id='teledetail0'>Jwilligers</span> for getting the <span class='hilight' id='teledetail1'>Bounce Master Senior</span> Achievement in <span class='hilight' id='teledetail2'>Brick-À-Brac</span>"
;
testArr[11] =
"<span class='hilight' id='teledetail0'>Line Rider 0</span> has managed to get a score of <span class='hilight' id='teledetail1'>Wave: Win, Score: 1,504,893</span> in <span class='hilight' id='teledetail2'>Orb Defence - Pincer</span>, putting them in 2nd place"
;
testArr[12] =
"<span class='hilight' id='teledetail0'>Aatat</span> has a Rating of <span class='hilight' id='teledetail1'>3531</span> in <span class='hilight' id='teledetail2'>Steel Sentinels</span>, putting them in 4th place"
;
testArr[13] =
"<span class='hilight' id='teledetail0'>Crashmcvert</span> has a Rating of <span class='hilight' id='teledetail1'>2804</span> in <span class='hilight' id='teledetail2'>Zombie Dawn Multiplayer</span>, putting them in 3rd place"
;
testArr[14] =
"Well done to <span class='hilight' id='teledetail0'>Spiky971</span> for getting the <span class='hilight' id='teledetail1'>Master Orbster</span> Achievement in <span class='hilight' id='teledetail2'>FunOrb</span>"
;
testArr[15] =
"<span class='hilight' id='teledetail0'>Deskjethp</span> has managed to get a score of <span class='hilight' id='teledetail1'>Time: 04:01.04</span> in <span class='hilight' id='teledetail2'>Pool - Without Guides</span>, putting them in 2nd place"
;
setTimeout("changetele(0)",waittime);
// Comment

View File

@ -1,42 +0,0 @@
var currentIdx = 1;
var fadetime=80;
var waittime=6000;
function changetele(currentStep){
var teletxt = document.getElementById("teletext_inner");
if(currentStep<5){
if(currentStep==0){
setcolor("#636363","#777777");
}
else if(currentStep==1){
setcolor("#333333","#444444");
}
else if(currentStep==2){
setcolor("#131313","#131313");
if(currentIdx==numofoptions)currentIdx=0;
teletxt.innerHTML = testArr[currentIdx++];
}
else if(currentStep==3){
setcolor("#333333","#444444");
}
else if(currentStep==4){
setcolor("#636363","#777777");
}
setTimeout("changetele("+(currentStep+1)+")",fadetime);
}
else{
setcolor("#999999","#DDDDDD");
setTimeout("changetele(0)",waittime);
}
}
function setcolor(maincol,detailcol){
var teletxt = document.getElementById("teletext_inner");
var detail0 = document.getElementById("teledetail0");
var detail1 = document.getElementById("teledetail1");
var detail2 = document.getElementById("teledetail2");
teletxt.style.color=maincol;
if(detail0!=null)detail0.style.color=detailcol;
if(detail1!=null)detail1.style.color=detailcol;
if(detail2!=null)detail2.style.color=detailcol;
}
// Comment