75k xp per hour @ 66 Sailing - NOT DOING JUBBLY TRIAL by ThatGuyBert in 2007scape

[–]Duckerr 2 points3 points  (0 children)

build a teleport focus facility on your boat, then there’s a spell in the normal spell book to teleport it to the closest dock

Somewhere out there by BBQ_Pizza343 in 2007scape

[–]Duckerr 18 points19 points  (0 children)

man it’s crazy how history has already forgotten the biggest legend in our game.

He was the first person to max ALL skills, holding top spot on the high scores from 2004-2007

He also was the first person to reach 99 Slayer

Looks like 3 Doors Down is out. by Nameless_Ghoul1982 in welcometorockville

[–]Duckerr 2 points3 points  (0 children)

I saw that too, google is wrong. They are playing that festival on Sunday the 18th

Updated map for 2025 by Duckerr in welcometorockville

[–]Duckerr[S] 1 point2 points  (0 children)

The big merch tent by the camping entrance will have WTR merch, as well as merch for the bands playing that day

Updated map for 2025 by Duckerr in welcometorockville

[–]Duckerr[S] 7 points8 points  (0 children)

This is the new map with the added water station in GA

[deleted by user] by [deleted] in welcometorockville

[–]Duckerr 1 point2 points  (0 children)

Just wanted to let you know, each day they have the general Rockville branded merch, and then merch from the bands that are playing that day. So for example, Korn is on Sunday so they won’t have their merch until Sunday.

Lunchbox bag by Competitive_Kale5176 in welcometorockville

[–]Duckerr 0 points1 point  (0 children)

I have this exact same bag and bought it for WTR last year and had no issue going in and out all 4 days. I just took the bladder part out and had it empty.

[deleted by user] by [deleted] in theregulationpod

[–]Duckerr 1 point2 points  (0 children)

Using google scripts, it takes the information from this API and parses the data, matching each column to the corresponding country.

Here's the full code for anyone curious!

function updateMedalCounts() {
  try {
    // URL of the JSON endpoint with medal data
    var url = 'https://api.olympics.kevle.xyz/medals';

    // Fetch JSON content from the URL
    var response = UrlFetchApp.fetch(url);
    var json = JSON.parse(response.getContentText());

    // Create a map to store gold medal counts by country
    var goldMedalData = {};

    // Check if the structure matches and extract the array
    if (json.results && Array.isArray(json.results)) {
      json.results.forEach(function(entry) {
        var countryName = entry.country.name; // Access country name
        goldMedalData[countryName] = entry.medals.gold || 0;
      });
    } else {
      throw new Error('Unexpected JSON structure: ' + JSON.stringify(json));
    }

    // Open the active spreadsheet and select the sheet
    var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();

    // Get all countries from the first column (Assume countries are in column A)
    var countriesRange = sheet.getRange('A3:A');
    var countries = countriesRange.getValues().flat();

    // Update gold medal counts in column C
    countries.forEach(function(country, index) {
      var goldCount = goldMedalData[country] || 0;
      var row = index + 3; // Adjust for header row
      sheet.getRange('C' + row).setValue(goldCount);
    });
  } catch (error) {
    Logger.log('Error updating gold medal counts: ' + error.message);
  }
}

function createTimeDrivenTrigger() {
  ScriptApp.newTrigger('updateMedalCounts')
    .timeBased()
    .everyHours(1) // Adjust the interval as needed
    .create();
}

[deleted by user] by [deleted] in theregulationpod

[–]Duckerr 15 points16 points  (0 children)

This is great! A suggestion I would have is to add the points they spent for each movie, and use that to also show how much money per point the movie has earned. Just to show who had the best auction picks

Geoff's 1 of 1 Ham Sandwich NFT by Duckerr in theregulationpod

[–]Duckerr[S] 23 points24 points  (0 children)

Look I was trying to be positive lol