This is meant to be used for my Algicosathlon III but you can make your own one that fits your Algothon.How to use: The First ___ is for the contestant name(e. g. Turquoise) The second ___ is for the contestant score(e. g. 5,385) The last ___ is for the status.If the contestant is eliminated then put ELIMINATED or OUT or whatever was put in your original scoreboard.If the contestant is Up for elimination then put UFE.If the contestant is a rejoiner then put REJOIN.If not then delete the last ___ in the code.
A fork of My Top 30 colors by Liy Evolved
xxxxxxxxxx
PFont zigBlack;
void setup() {
size(670, 670);
zigBlack = createFont("Verdana", 15);
textFont(zigBlack);
fill(255,255,255);
}
void draw() {
background(0);
text("1st ___ ___ ___", 0, 15);
text("2nd ___ ___ ___", 0, 30);
text("3rd ___ ___ ___", 0, 45);
text("4th ___ ___ ___", 0, 60);
text("5th ___ ___ ___", 0, 75);
text("6th ___ ___ ___", 0, 90);
text("7th ___ ___ ___", 0, 105);
text("8th ___ ___ ___", 0, 120);
text("9th ___ ___ ___", 0, 135);
text("10th ___ ___ ___", 0, 150);
text("11th ___ ___ ___", 0, 165);
text("12th ___ ___ ___", 0, 180);
text("13th ___ ___ ___", 0, 195);
text("14th ___ ___ ___", 0, 210);
text("15th ___ ___ ___", 0, 225);
text("16th ___ ___ ___", 0, 240);
text("17th ___ ___ ___", 0, 255);
text("18th ___ ___ ___", 0, 270);
text("19th ___ ___ ___", 0, 285);
text("20th ___ ___ ___", 0, 300);
text("21st ___ ___ ___", 0, 315);
text("22nd ___ ___ ___", 0, 330);
text("23rd ___ ___ ___", 0, 345);
text("24th ___ ___ ___", 0, 360);
text("25th ___ ___ ___", 0, 375);
text("26th ___ ___ ___", 0, 390);
text("27th ___ ___ ___", 0, 405);
text("28th ___ ___ ___", 0, 420);
text("29th ___ ___ ___", 0, 435);
text("30th ___ ___ ___", 0, 450);
text("31st ___ ___ ___", 0, 465);
text("32nd ___ ___ ___", 0, 480);
text("33rd ___ ___ ___", 0, 495);
text("34th ___ ___ ___", 0, 510);
text("35th ___ ___ ___", 0, 525);
text("36th ___ ___ ___", 0, 540);
text("37th ___ ___ ___", 0, 555);
text("38th ___ ___ ___", 0, 570);
text("39th ___ ___ ___", 0, 585);
text("40th ___ ___ ___", 0, 600);
text("41st ___ ___ ___", 0, 615);
text("42nd ___ ___ ___", 0, 630);
}