Conic
Member
A utility I made because it is part of my secret project that may or may not be finished in the next 1,000,000 years.
This is not finished yet.
screenie:
Color scheme "Ocean" added at Sky Ninja's request, and because it is awesome for a program to look like the BSOD.
It's written in C++.
It works by combining two words that is gets from two different lists of words.
This is what I have so far, it randomly picks from list one and list two,
Outputs it to the screen, outputs it to a file, then asks you if you want to do another.
Forever mode: It asks you if you want to enable it, if you do, it loops forever until you close it. Then you can look at "levelnames.txt" to see all the names it's made.
All I need now is suggestions on names.
Also, I might make it generate a level header.
Please give me names for list 2, because it is smaller. D:
...
Download link
This is not finished yet.
screenie:
Color scheme "Ocean" added at Sky Ninja's request, and because it is awesome for a program to look like the BSOD.
It's written in C++.
It works by combining two words that is gets from two different lists of words.
names.h said:string array1[] =
{
"Eggman", //1
"Emerald", //2
"Radiant", //3
"Green", //4
"Techno", //5
"Magma", //6
"Flaming", //7
"Frozen", //8
"Yellow", //9
"Blue", //10
"Red", //11
"Sandy", //12
"Mecha", //13
"Rushing", //14
"Shimmering",//15
"Golden", //16
"Jungle", //17
"Humid", //18
"Arid", //19
"Shifting", //20
"Rocky", //21
"Cosmic", //22
"Digital", //23
"Deadly", //24
"Creepy", //25
"Steel", //26
"Ancient", //27
"Silent", //28
"Misty", //29
"Lush", //30
"Sweltering",//31
"Blue", //32
"Spooky", //33
"Stone", //34
"Wet", //35
"Powerful", //36
"Chaotic", //37
"Slime", //38
"Slimy", //39
"Cold", //40
"Sticky", //41
"Muddy", //42
"Aerial", //43
"Celestial",//44
"Sacred", //45
"Evil", //46
"Sturdy", //47
"Rickety", //48
"Foggy", //49
"Robotic", //50
"Soothing", //51
"Fragmented",//52
"Sandy", //53
"Fog", //54
"Mud", //55
"Haunted" //56
};
string array2[] =
{
"Factory", //1
"Beach", //2
"Generator", //3
"Field", //4
"Egg", //5
"Core", //6
"Mountain", //7
"Snow", //8
"Base", //9
"Sewer", //10
"Dunes", //11
"Canyon", //12
"Glade", //13
"Palace", //14
"Swamp", //15
"Rift", //16
"Metropolis", //17
"Sky", //18
"Battle", //19
"Inferno", //20
"Mine", //21
"Tower", //22
"Garden", //23
"Temple", //24
"Shrine", //25
"Reef", //26
"Carnival", //27
"Station", //28
"Theory", //29
"Flower", //30
"Valley", //31
"Continent", //32
"Woods", //33
"Madness", //34
"Ruins", //35
"Vision", //36
"Illusion", //37
"Night", //38
"Stadium", //39
"Arena", //40
"Mansion", //41
"Dimension", //42
"Sector" //43
};
This is what I have so far, it randomly picks from list one and list two,
Outputs it to the screen, outputs it to a file, then asks you if you want to do another.
Forever mode: It asks you if you want to enable it, if you do, it loops forever until you close it. Then you can look at "levelnames.txt" to see all the names it's made.
All I need now is suggestions on names.
Also, I might make it generate a level header.
Please give me names for list 2, because it is smaller. D:
...
Download link