Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

Code for getting random MG

By: Thousandpath on Nov 20th, 2013  |  syntax: None  |  size: 2.11 KB  |  hits: 127  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. $Personality = array("Shy", "Clingy", "Tomboy", "Ditzy", "Clumsy", "Tsundere", "Idol Singer", "Evil Genius", "Yandere", "Princess", "Gothic", "Kuudere", "Genki", "Queen", "Chaotic", "Bully", "Knight", "Ara-Ara", "Cake", "Gentle", "Childhood Friend", "Class Rep", "Onee-san", "Domineering Girl", "Polite Deredere", "Ojou-sama", "Imouto", "Dandere", "NEET");
  3. $Species = array("Orc", "Vampire", "Angel", "Gorgon", "Ghost", "Cyclops", "Mantis", "Oomukade", "Hornet girl", "Yeti", "Witch", "Goddess", "Cecaelia", "Scylla(Doge)", "Succubus", "Alraune", "Mandragora", "Dryad", "Wolf girl", "Arachne", "Dwarf", "Tetra arms", "Elf", "Gynoid", "Cat girl", "Dullahan", "Deertaur", "Treant", "Lamia", "Harpy", "Djinn", "Efreet", "Mermaid", "Fairy", "Dragon girl", "Centaur", "Slime", "Yuki-Onna", "Kitsune", "Zombie", "Gnome", "Sylph", "Undine", "Ignis", "Salamander", "Lizard girl", "Imp", "Ushi-Oni", "Ogre", "Frog girl", "Naga", "Marilith", "Bat girl", "Ryuu", "Goblin", "Hobgoblin", "Oni", "Slug girl", "Bear girl", "Nightmare", "Unicorn", "Matango", "Manticore", "Bat girl", "Gargoyle", "Minotauros", "Troll", "Mimic", "Skeleton girl", "Lich", "Gazer", "Golem", "Basilisk", "Cockatrice", "Ant girl", "Kappa", "Garuda", "Behemoth", "Leviathan", "Ziz", "Apophis", "Anubis", "Lilim", "Bee girl", "Beelzebub", "Babhomet", "Faun", "Wererabbit", "Weresheep", "Nekomata", "Shirohebi", "Kikimora", "Sahuaqin", "Roper", "Khepri", "Alp", "Bicorn", "Charybdis", "Chochin-Obake", "Dark Matter", "Dark priest", "Devil", "Roach girl", "Doppelganger", "Echidna", "Ghoul", "Scorpion girl", "Tanuki", "Glacies", "Kesaran Pasaran", "Mouse girl", "Living doll", "Automata girl", "Wurm", "Mothman", "Mummy", "Nereid", "Siren", "Sea Bishop", "Sandworm", "Jellyfish girl", "Anglerfish girl", "Selkie", "Sphinx", "Thunderbird", "Wight", "Wyvern", "Shoggoth", "Tiger girl", "Damphir");
  4. $Month = array("December", "November", "October", "September", "August", "July", "June", "May", "April", "March", "February", "January");
  5.  
  6. shuffle($Personality);
  7. shuffle($Species);
  8.  
  9.  
  10. $P = array_pop($Personality);
  11.  
  12. echo $P, "<br />";
  13.  
  14. $S = array_pop($Species);
  15.        
  16. echo $S, "<br />";
  17.  
  18. ?>