Forged Alliance Forever Forged Alliance Forever Forums 2013-03-16T16:08:50+02:00 /feed.php?f=50&t=3171 2013-03-16T16:08:50+02:00 2013-03-16T16:08:50+02:00 /viewtopic.php?t=3171&p=34215#p34215 <![CDATA[Re: Name Generator - You can contribute !]]> Statistics: Posted by Ze_PilOt — 16 Mar 2013, 16:08


]]>
2013-03-13T12:09:52+02:00 2013-03-13T12:09:52+02:00 /viewtopic.php?t=3171&p=33829#p33829 <![CDATA[Re: Name Generator - You can contribute !]]> Statistics: Posted by Ze_PilOt — 13 Mar 2013, 12:09


]]>
2013-03-13T12:07:50+02:00 2013-03-13T12:07:50+02:00 /viewtopic.php?t=3171&p=33828#p33828 <![CDATA[Re: Name Generator - You can contribute !]]> Statistics: Posted by Softly — 13 Mar 2013, 12:07


]]>
2013-03-13T12:05:16+02:00 2013-03-13T12:05:16+02:00 /viewtopic.php?t=3171&p=33827#p33827 <![CDATA[Re: Name Generator - You can contribute !]]>
Or maybe you are assuming I want to spend time on things that has no purpose ?

Statistics: Posted by Ze_PilOt — 13 Mar 2013, 12:05


]]>
2013-03-13T11:55:50+02:00 2013-03-13T11:55:50+02:00 /viewtopic.php?t=3171&p=33825#p33825 <![CDATA[Re: Name Generator - You can contribute !]]>
If so please do share.

Statistics: Posted by Softly — 13 Mar 2013, 11:55


]]>
2013-02-28T23:29:23+02:00 2013-02-28T23:29:23+02:00 /viewtopic.php?t=3171&p=32485#p32485 <![CDATA[Re: Name Generator - You can contribute !]]> link), and apparently Cybrans are of all flavours - English, Japanese, German, Russian and computery names... probably to reflect that they have different ethnical backgrounds as all kinds of people were converted to symbionts.

Statistics: Posted by da_monstr — 28 Feb 2013, 23:29


]]>
2013-02-28T22:47:36+02:00 2013-02-28T22:47:36+02:00 /viewtopic.php?t=3171&p=32478#p32478 <![CDATA[Re: Name Generator - You can contribute !]]> Statistics: Posted by kira — 28 Feb 2013, 22:47


]]>
2013-02-26T22:45:56+02:00 2013-02-26T22:45:56+02:00 /viewtopic.php?t=3171&p=32205#p32205 <![CDATA[Re: Name Generator - You can contribute !]]> You can try it out now (CMD output)
NameGenerator.zip

and here you got one for a textfile output, old names will be overwritten
NameGeneratorToTXT.zip



I included a batch file for people who dunno how to open .class

Documentation:
Spoiler: show
Code:
public class Names
{
   
   public static final String[] firstvok ={"O","U","I","Y","I"};
    public static final String[] firstkons = {"T","S","Z","Th","H","V"};
    public static final String[] kons = {"n", "t", "h", "s", "z", "th", "tt",
      "st", "sh", "hw", "ss", "nn", "stl","n", "t", "h", "s", "z","n", "t", "h", "s", "z"};
    public static final String[] vok ={"a", "y", "u", "o", "ou", "oo", "uo",
      "ai", "i", "ua", "au", "u", "y", "i", "a","a", "y", "u", "o","a", "y", "u", "o","i","i"};

    public static String[] generateNames(int count,int pnlength, int nlength)
    {
        String[] names = new String[count];
        String t = "-";
        for(int i=0;i <count;i++)
        {
           names[i] = name(pnlength) + t + name(nlength);
        }
      return names;
    }
   
    public static String name(int count)
    {
        StringBuilder ret=new StringBuilder();
      boolean vokal;
      int silben=1;

       
        Random ran=new Random();
        vokal = ran.nextBoolean();
      
        if(vokal)
        {
            ret.append(getRandom(firstvok,ran));
        }
        else
        {
            ret.append(getRandom(firstkons,ran));
        }
      vokal=!vokal;

        while(silben<=count)
      {
            if(vokal)
            {
            ret.append(getRandom(vok,ran));
            }
            else
            {
            ret.append(getRandom(kons,ran));
         }
         vokal=!vokal;
         silben++;
        }       
        return ret.toString();
    }
   
   public static String getRandom(String[] strings, Random ran)
   {
      return strings[ran.nextInt(strings.length)];
   }
   

   public static int zufallszahlprae()
   {
      Random random = new Random();
      return random.nextInt(3 - 2 + 1) + 2;
   }
   public static int zufallszahlhpt()
   {
      Random random = new Random();
      return random.nextInt(6 - 4 + 1) + 4;
   }
   
 
   public static void main(String args[])
   {
      //System.out.println(Arrays.toString(generateNames(/*Number of names*/100,/*Number of letters first name*/zufallszahlprae(),/*Number of letters second name*/zufallszahlhpt())));
         
         try {
         File file = new File("Names.txt");
         FileWriter fw = new FileWriter(file);
         fw.write(Arrays.toString(generateNames(100,zufallszahlprae(),zufallszahlhpt())));
         fw.flush();
         fw.close();
         } catch (IOException e){
         e.printStackTrace();
         }

   }
}



Namelist
Spoiler: show
Code:
Othuo-Izuazo
Ziss-Ithuoza
Yzy-Synut
Iho-Tissis
Ynnua-Otahu
Ihy-Ithuho
Ystou-Sosus
Soz-Vuotiz
Ita-Tunoh
Uhwai-Innouza
Thaz-Uzystluo
Son-Zataz
Huan-Ihoustli
Ysoo-Zyssynn
Huh-Utyhy
Vut-Utoona
Zyt-Suhwuan
Itou-Ysuazo
Uzou-Ohosoo
Taiz-Hounuss
Istai-Suhan
Sais-Sytyt
Onu-Sitin
Ynno-Otystli
Soun-Saisun
Itho-Ozihi
Vouz-Ihytou
Ihy-Thannan
Hih-Onnastu
Voush-Inozoo
Ysti-Tunas
Uhwu-Ithysu
Histl-Ozazu
Usto-Isystloo
Ihwu-Tozunn
Usa-Issauzoo
Sot-Isiza
Suostl-Ynothau
Othou-Ythousu
Istla-Voonih
Unai-Zittus
Thus-Thizuaz
Inoo-Ishytai
Yttuo-Vutunn
Hist-Ituha
Isa-Zunnann
Thuastl-Sanut
Zuz-Ytyzai
Istlou-Onati
Ossu-Hyhyh
Van-Hastat
Vyh-Izunou
Ohwi-Voozuohw
Ynnoo-Hitit
Inno-Zityn
Isty-Zasih
Tyn-Uzysti
Ihi-Sutastl
Hous-Innisi
Sahw-Ihyhwo
Onoo-Ozuahuo
Isu-Hizish
Isy-Toussounn
Tast-Onoosu
Tat-Zotis
Izu-Hassuhw
Yha-Unoutty
Uni-Sitit
Suot-Ossattua
Hauhw-Houtout
Ihi-Unynnau
Vauth-Inasau
Inni-Zizooh
Yto-Ynoto
Sooz-Izity
Hat-Ystauta
Ini-Uhwyhi
Ynu-Sinaut
Tys-Zuotish
Yhwa-Unyhy
Inny-Thinnuat
Suh-Isotty
Uta-Tosaz
Uta-Ustluati
Hin-Tautytt
Ina-Thutan
Souh-Suhas
Uta-Tasitt
Ito-Othuoni
Zatt-Ossuhwu
Othuo-Sisat
Ozu-Hozon
Zas-Uhoustloo
Oshy-Vatin
Vin-Thataz
Utti-Haustuh
San-Ishosa
Innuo-Inasy
Thash-Visit
Sut-Yshasu


ah creating names is fun, next challange pls

Statistics: Posted by ColonelSheppard — 26 Feb 2013, 22:45


]]>
2013-02-26T22:11:13+02:00 2013-02-26T22:11:13+02:00 /viewtopic.php?t=3171&p=32199#p32199 <![CDATA[Re: Name Generator - You can contribute !]]> Statistics: Posted by bouznak — 26 Feb 2013, 22:11


]]>
2013-02-26T21:24:46+02:00 2013-02-26T21:24:46+02:00 /viewtopic.php?t=3171&p=32195#p32195 <![CDATA[Re: Name Generator - You can contribute !]]> Im really confused why russians if Gustav Brackman was german? xDDD
Anyway that is the list of most used names and many old names are'nt used today (mostly).
About surnames, there so many of them, if you need all go to wiki

Spoiler: show
Afanasi, Avdonin
Agafi, Averin
Aleksandr, Averyanov
Aleksei, Avilov
Anatoly, Avtukhov
Andrei, Agapov
Anisim, Agafonov
Anton, Andreyev
Aristarkh, Baryshev
Arkady, Baryshnikov
Arseni, Dubrovsky
Averki, Dudin
Boris, Galkin
Briacheslav, Galiaskarov
Daniil, Galygin
Danislav, Galdin
David, Gagarin
Demyan, Gagolin
Dmitri, Dudko
Dobrynia, Gavrilov
Dunai, Gavrilenkov
Efim, Volikov
Ekim, Vodyanov
Evgeny, Vlacic
Feodor, Volkov
Feodosi, Vasilyevykh
Gavril, Vasin
Gennady, Vasnev
Giorgy, Vanzin
Gleb, Varushkin
Grigory, Varennikov
Igor, Vasilyev
Ilarion, Vazov
Ilya, Valevach
Ioann, Dudnik
Ippolit, Dultsev
Ivan, Bortnik
Iziaslav, Fenenko
Kapsirko, Fedulov
Kazimir, Fetisov
Kirill, Borodin
Konstantin, Filatov
Kuzma, Borzilov
Leonid, Borisyuk
Leontii, Bortsov
Lev, Bondarchuk
Maksim, Boreyev
Mikhail, Dumanovsky
Mikifor, Bolshov
Mikula, Batrutdinov
Mstislav, Bolshakov
Nikifor, Bondarev
Nikita, Batishchev
Nikolai, Bereznyak
Oleg, Dunayevsky
Osip, Duranichev
Pavel, Gorokhin
Piotr, Gorshkov
Pozvizd, Goryunov
Radko, Gorokhov
Roman, Grachyov
Rostislav, Goruaia
Rurik, Demidov
Sadko, Dementyev
Sdila, Zolin
Sergei, Zlobin
Semyon, Zimin
Stanislav, Zolotov
Sviatopolk, Denisov
Sviatoslav, Zheglov
Sudislav, Zhelezkin
Tverdislav, Ivashin
Varlam, Zhidkov
Vasiliy, Zhigunov
Vasilko, Ivashov
Viktor, Ivchenko
Vladimir, Ilyushin
Vseslav, Denikin
Vsevolod, Ilyasov
Vyachek, Kalugin
Vysheslav, Kalinin
Yakim, Shchedrin
Yakov, Shchedrov
Yaropolk, Fedulov
Yermolay, Fenenko
Yuri, Kalyagin
Zakhar, Fetisov

Statistics: Posted by Rediska — 26 Feb 2013, 21:24


]]>
2013-02-26T20:09:26+02:00 2013-02-26T20:09:26+02:00 /viewtopic.php?t=3171&p=32183#p32183 <![CDATA[Re: Name Generator - You can contribute !]]>
Spoiler: show
Code:
Yza-Ozyza,
Yto-Syttoz,
Issy-Ynnouzy,
Isa-Thossyn,
Tat-Ystluhau,
Zuah-Sysyth,
Ito-Thyssiz,
Yno-Oshytou,
Ozy-Ushaizu,
Ino-Unystlai,
Vuh-Usoona,
Vyth-Issasho,
Otu-Uzoony,
Hon-Inythy,
Ihau-Thuassuz,
Sinn-Issanny,
Iti-Inuzu,
Unua-Ishuosa,
Vyz-Onihwua,
Onai-Zousoonn,
Izuo-Thuazos,
Uho-Zostlin,
Sys-Tashuott,
Hynn-Thinit,
Ihoo-Voostlaust,
Uhy-Itutu,
Uhi-Tysos,
Othy-Tassuat,
Iti-Tuhyhw,
Ishu-Ysozy,
Zoost-Tyshyhw,
Uza-Onnythi,
Vuhw-Ithitu,
Thohw-Ihwuza,
Ishu-Thoohyz,
Ota-Ityny,
Thauh-Ohyzai,
Yno-Innahy,
Ita-Inooty,
Syh-Issoty,
Thush-Zuozott,


programm can be run as a benchmark too btw... if you forget to cut of a few 0... just noticed
EDIT: no my program did not smoke LSD :cry: , i only took all seraphim names for the campain and the unit names for my pattern detection programm and took the used the parameters for a small java app

Statistics: Posted by ColonelSheppard — 26 Feb 2013, 20:09


]]>
2013-02-26T19:34:22+02:00 2013-02-26T19:34:22+02:00 /viewtopic.php?t=3171&p=32179#p32179 <![CDATA[Re: Name Generator - You can contribute !]]> Executor Anemone.

Yeah, no. :)

Statistics: Posted by Ze_PilOt — 26 Feb 2013, 19:34


]]>
2013-02-26T19:31:00+02:00 2013-02-26T19:31:00+02:00 /viewtopic.php?t=3171&p=32178#p32178 <![CDATA[Re: Name Generator - You can contribute !]]>
Arkansas wrote:
Yes the list was just a copy paste, a few like 'Doris' probably don't fit :).


Colette neither ! :lol:

Statistics: Posted by bouznak — 26 Feb 2013, 19:31


]]>
2013-02-26T19:30:02+02:00 2013-02-26T19:30:02+02:00 /viewtopic.php?t=3171&p=32176#p32176 <![CDATA[Re: Name Generator - You can contribute !]]> .

Statistics: Posted by Arkansas — 26 Feb 2013, 19:30


]]>
2013-02-26T19:22:13+02:00 2013-02-26T19:22:13+02:00 /viewtopic.php?t=3171&p=32170#p32170 <![CDATA[Re: Name Generator - You can contribute !]]>

Anemone

you made my day

but the greek names a good (not all, i dont like "Zoe" or "Anemone" and i dont think they are appropriated)

Statistics: Posted by ColonelSheppard — 26 Feb 2013, 19:22


]]>