Dismiss Notice
Wynncraft, the Minecraft MMORPG. Play it now on your Minecraft client at (IP): play.wynncraft.com. No mods required! Click here for more info...

Anyone Know The General Locations Of Secret Discoveries?

Discussion in 'Questions' started by rainbowcraft2, Nov 27, 2020.

Thread Status:
Not open for further replies.
  1. rainbowcraft2

    rainbowcraft2 Well-Known Adventurer VIP

    Messages:
    228
    Likes Received:
    144
    Trophy Points:
    69
    Minecraft:
    I want to know how many secrets are in each location, by location name, but no other information. I want to find them out for myself, but I also want to know enough about their locations that I'm not running around for 16 hours looking for secrets where the are none.

    Like "there's X secrets in ragni" and "there's X secrets in Nivla" and so on. I don't want any other details.
    ________________________________
    Oh, this probably should have been posted in the questions category. Too late now, I guess.
     
  2. dr_carlos

    dr_carlos Morph Gang! VIP+

    Messages:
    1,764
    Likes Received:
    1,937
    Trophy Points:
    130
    Guild:
    Minecraft:
    So you want more specifics than that of the quest book, which lists how many discoveries in each area?
     
  3. rainbowcraft2

    rainbowcraft2 Well-Known Adventurer VIP

    Messages:
    228
    Likes Received:
    144
    Trophy Points:
    69
    Minecraft:
    Yes. "Wynn plains" doesn't tell me where to start searching. I need locations within Wynn plains, like Ragni, Nivla Forest, Detlas, etc. Otherwise I'll be looking for like 3 years.

    "look around in Wynn plains" doesn't give me a general idea of where to look.
    But "there's X secrets in ragni, X secrets in Nivla Forest, X secrets in Detlas..." doesn't spoil the way you find the secrets while helping me know where to search.
     
  4. dr_carlos

    dr_carlos Morph Gang! VIP+

    Messages:
    1,764
    Likes Received:
    1,937
    Trophy Points:
    130
    Guild:
    Minecraft:
    Okay.
    Here are the locations (according to the Wiki):
    There are 1 Secret Discoveries in Ragni
    There are 1 Secret Discoveries in Decrepit Sewers
    There are 6 Secret Discoveries in Nivla Woods
    There are 2 Secret Discoveries in Roots of Corruption
    There are 1 Secret Discoveries in Maltic
    There are 1 Secret Discoveries in Detlas
    There are 1 Secret Discoveries in Mt. Wynn
    There are 1 Secret Discoveries in Detlas Suburbs
    There are 1 Secret Discoveries in Coastal Trail
    There are 1 Secret Discoveries in Time Valley
    There are 1 Secret Discoveries in Pigmen's Ravine
    There are 1 Secret Discoveries in Nemract
    There are 4 Secret Discoveries in Abandoned Mines
    There are 1 Secret Discoveries in Northern Desert
    There are 2 Secret Discoveries in Southern Desert
    There are 1 Secret Discoveries in Invaded Barracks
    There are 1 Secret Discoveries in Eagle Tribe
    There are 1 Secret Discoveries in Rymek Mesa
    There are 1 Secret Discoveries in Rymek
    There are 1 Secret Discoveries in Central Desert
    There are 4 Secret Discoveries in Nesaak Forest
    There are 3 Secret Discoveries in Ice Canyon
    There are 2 Secret Discoveries in Twain Lake
    There are 1 Secret Discoveries in Lusuco
    There are 1 Secret Discoveries in Relos
    There are 2 Secret Discoveries in Corkus
    There are 1 Secret Discoveries in Ruined Olmic City
    There are 2 Secret Discoveries in Eyeball Forest
    There are 1 Secret Discoveries in Lutho
    There are 1 Secret Discoveries in Toxic Wastes
    There are 1 Secret Discoveries in Void Valley
    There are 1 Secret Discoveries in Eldritch Outlook

    I wrote a little JavaScript to print this for me.
    Here's the JS if you'd like to see it:
    Code:
    var out = "";
    var dict = {};
    
    for (let el of document.querySelectorAll('td[align="center"] table.wikitable td[style="font-size: 1.0em;"] b')) {
      if (el.firstChild.textContent in dict) {
        dict[el.firstChild.textContent] += 1;
      } else {
        dict[el.firstChild.textContent] = 1;
      }
    }
    
    for (let i in dict) {
      out += "There are " + dict.toString() + " Secret Discoveries in " + i + "\n";
    }
    Just run the above on the Secret Discoveries wiki page and the out variable contains the above list.
     
    Last edited: Nov 27, 2020
  5. rainbowcraft2

    rainbowcraft2 Well-Known Adventurer VIP

    Messages:
    228
    Likes Received:
    144
    Trophy Points:
    69
    Minecraft:
    Thank you
     
  6. dr_carlos

    dr_carlos Morph Gang! VIP+

    Messages:
    1,764
    Likes Received:
    1,937
    Trophy Points:
    130
    Guild:
    Minecraft:
    You're welcome.
     
  7. Samsam101

    Samsam101 Star Walker GM CHAMPION

    Messages:
    3,932
    Likes Received:
    11,901
    Trophy Points:
    217
    Creator Karma:
    Guild:
    Minecraft:
    I should note that 3 of the abandoned mines discoveries are not available until level 100
     
Thread Status:
Not open for further replies.