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...

Community Event Part 3! [deciphering Puzzle]

Discussion in 'Wynncraft' started by 01101001, Aug 1, 2017.

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

    01101001 01

    Messages:
    163
    Likes Received:
    75
    Trophy Points:
    63
    Minecraft:
    Imagine trying to actually crypto on mobile
     
  2. Pokextreme

    Pokextreme Avos Air Archer HERO

    Messages:
    5,335
    Likes Received:
    13,637
    Trophy Points:
    217
    Minecraft:
    IMAGINE MY LIFE FOR @Tealy's PUZZLE.
    I get my computer soon;-;
     
    LarzLapiz likes this.
  3. LarzLapiz

    LarzLapiz Avos Air Pen HERO

    Messages:
    3,092
    Likes Received:
    8,782
    Trophy Points:
    217
    Minecraft:
    bump 10 char lol
     
  4. 01101001

    01101001 01

    Messages:
    163
    Likes Received:
    75
    Trophy Points:
    63
    Minecraft:
    I think I'm going to give it a few more days and if no one's solved part two I'm gonna give a solution along with some code to easily convert anything to my cipher.
     
  5. BrickBuilder03

    BrickBuilder03 A penguin that likes turtles. VIP

    Messages:
    442
    Likes Received:
    324
    Trophy Points:
    95
    Minecraft:
    Is b1na[redacted] for stage 2?
     
  6. 01101001

    01101001 01

    Messages:
    163
    Likes Received:
    75
    Trophy Points:
    63
    Minecraft:
    I'm
    Nope, for stage 1. Okay so last hint, a guy working on part 2 tried looking at numbers to solve it. He is on the right track by far.. it's on page 3 somewhere. Use his data so far and try and just take a good look at it. It will help you a lot.
    ________________________________
    Here it is. Use it!
     
  7. BrickBuilder03

    BrickBuilder03 A penguin that likes turtles. VIP

    Messages:
    442
    Likes Received:
    324
    Trophy Points:
    95
    Minecraft:
    F B J N N T D?

    Step 1: Convert to numbers
    Step 2: Numbers 1-13 = 2x
    Step 3: Numbers 13-26 = 2x-26
    Step 4: Convert back
     
    Last edited: Aug 26, 2017
  8. 01101001

    01101001 01

    Messages:
    163
    Likes Received:
    75
    Trophy Points:
    63
    Minecraft:
    CONGRATS. (finally).

    I made some code to easily convert anything into my cipher, simply go to www.compilejava.net and paste in this code and read the comment that I put in it.
    /* READ THIS!! */
    /* Okay so this script took me long enough to make and it converts anything into my cipher. */
    /* To convert something change "parttwo" to anything you want in quotes. (Comment provided to show where it is) */
    /* By 01101001 (Genocide_Route, YourSoSalty) */




    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.Scanner;

    public class Main {

    public static void main(String args[]) {


    String str1 = "KKKFSDF"; /* < ----------------- CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS */

    Character[] letters = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};

    String str = str1.toLowerCase();

    for (int i = 0; i < str.length(); i++) {
    char l = str.charAt(i);
    int temp = Arrays.asList(letters).indexOf(l);

    if (l == ' ') {

    System.out.print(' ');

    } else {

    if (letters[temp] == 'a') {

    int temp1 = temp + 1;
    System.out.print(letters[temp1]);

    } else if (temp + temp > 25) {

    int temp3 = temp + temp - 25;
    System.out.print(letters[temp3]);

    } else {

    int temp4 = temp + temp + 1;
    System.out.print(letters[temp4]);
    }
    }
    }
    }
    }
     
  9. Nesaak

    Nesaak Good boy HERO

    Messages:
    1,163
    Likes Received:
    1,303
    Trophy Points:
    130
    Minecraft:
    I thought it said deciphering pretzule at first. ;( I'm disappointed now.
     
  10. 01101001

    01101001 01

    Messages:
    163
    Likes Received:
    75
    Trophy Points:
    63
    Minecraft:
    Part 3 coming tomorrow!
     
    BrickBuilder03 likes this.
  11. 01101001

    01101001 01

    Messages:
    163
    Likes Received:
    75
    Trophy Points:
    63
    Minecraft:
    Part 3 is out go smash it!
     
  12. 01101001

    01101001 01

    Messages:
    163
    Likes Received:
    75
    Trophy Points:
    63
    Minecraft:
    Well this is old.. tbh I think this whole puzzle is crap, so I'm going to work on a huge 5-10 step puzzle, with possible prizes, but I gotta get the LE somehow and I actually gotta think how to do this, so wait a bit and I'll come with a huge one.
     
Thread Status:
Not open for further replies.