Riddle - World Settings

DeletedUser

Guest
It's still a few hours until we announce the settings. So I figured we would play a game! It's more difficult than it seems thisisgrepolis

r=18, u=21....

23-15-4-18-12 5-19-5-16-4 15-6-21-18
14-9-21-20 16-5-5-19-4 5-8-20-18-5
12-12-1-1-3-9-5-14 20-13-12-9-9 6-6-9-25-20
15-18-16-3-9-20-20-15-14-5 18-6-15-21 25-4-19-1
13-15-12-18-1-5 19-1-9-5-4-2-12-4
20-1-12-20-2-5 20-25-13-19-19-5 21-3-15-14-5-20-19-17
 

DeletedUser

Guest
No I am not, that's a really secretive message. We must take all appropriate precautions to make sure only the most diehard grepo fans read it :D
 

DeletedUser

Guest
Well, as Draqone pointed out, we are trying to teach the younger generation the value of patience.
 

DeletedUser

Guest
LOL but you haven't even heard the settings thisisgrepolis
 

DeletedUser

Guest
secrets should stay secret -Crim

still working on it

~whitey
 
Last edited by a moderator:

DeletedUser

Guest
I will be announcing the settings shortly, or you can solve the riddle.
 

DeletedUser

Guest
In case anyone cares, I was bored so I actually wrote a program in C that will decode any messages written using this encoding method:

#include <stdio.h>

int main()
{
FILE *ptr_file;
char c;
int numberArray[200], i, k=0;

ptr_file =fopen("code.txt","r");
if (!ptr_file)
return 1;

for(i=0;i<200;i++){
c = fgetc (ptr_file);
if (c == ' '){
numberArray= ' '+1-'a'; // correct offset
continue;
} else if(c == '\n'){
numberArray= '\n'+1-'a'; // correct offset
continue;
}else {
fseek(ptr_file, -1, SEEK_CUR);
fscanf(ptr_file, "%d-", &numberArray);
k++;
if(feof(ptr_file) != 0) break;
}
}


for(i=0;i<k;i++){
printf("%c", numberArray+'a'-1);
}

fclose(ptr_file);
return 0;
}


You would need to copypasta the message into code.txt file however since I was too lazy to write one that operates with user input.
 

DeletedUser10233

Guest
Wow!!!! These are awesome settings!!! Im definitely doing this one!!!!!!!!!! thisisgrepolis

Can we say the settings here?
 
Last edited by a moderator:

DeletedUser8353

Guest
Long wait for settings only a few people want. Have fun. I'm playing a different game by a different company.
 
Top