World of Warcraft Namegenerator (Source Included) menu

User Tag List

Results 1 to 9 of 9
  1. #1
    Rec Alpam's Avatar Contributor CoreCoins Purchaser
    Reputation
    125
    Join Date
    Mar 2007
    Posts
    304
    Thanks G/R
    3/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    World of Warcraft Namegenerator (Source Included)

    Hey all, this is what happens when im bored.
    I created a name generator in PHP without mysql or stuff.
    just the simple rand() function and some variables.
    Its nice, for example: God turned out to be a lvl 61 priest.

    DEMO: http://h1.ripwa*y.com/c99shell/pingphp.php?yourname=God
    (remove the *) chance 'god' to any name.

    SOURCE:
    Code:
    <html>
    <?php
    $yourname = $_GET['yourname'];
    $ra1 = " Doombringer";
    $ra2 = " Sunrise";
    $ra3 = " Nature";
    $ra4 = " Lightbringer";
    $ra5 = " Deathbringer";
    $ra6 = " Feral";
    $ra7 = " Stormrage";
    $ra8 = "'Thas";
    $ra9 = "'Kael";
    $cs1 = "Warrior";
    $cs2 = "Mage";
    $cs3 = "Druid";
    $cs4 = "Deathknight";
    $cs5 = "Paladin";
    $cs6 = "Priest";
    $cs7 = "Shaman";
    $cs8 = "Rogue";
    $cs9 = "Hunter";
    $rankk = rand(1,9);
    $class = rand(1,9);
    ?>
    <style type="text/css">
    <!--
    .style1 {
     font-size: large;
     font-weight: bold;
     font-family: Geneva, Arial, Helvetica, sans-serif;
    }
    .style2 {
     color: #003300
    }
    -->
    </style>
    <div align="center">
      <p><span class="style1">Name Generator</span></p>
      <p><?php echo $yourname; ?><?php if ($rankk == "1") {
        echo $ra1; } elseif ($rankk == "2") {
      echo $ra2; } elseif ($rankk == "3") {
      echo $ra3; } elseif ($rankk == "4") {
      echo $ra4; } elseif ($rankk == "5") {
      echo $ra5; } elseif ($rankk == "6") {
      echo $ra6; } elseif ($rankk == "7") {
      echo $ra7; } elseif ($rankk == "8") {
      echo $ra8; } elseif ($rankk == "9") {
      echo $ra9; }?> the level <?php echo rand(1,80); ?> <?php if ($$class == "1") {
        echo $cs1; } elseif ($class == "2") {
      echo $cs2; } elseif ($class == "3") {
      echo $cs3; } elseif ($class == "4") {
      echo $cs4; } elseif ($class == "5") {
      echo $cs5; } elseif ($class == "6") {
      echo $cs6; } elseif ($class == "7") {
      echo $cs7; } elseif ($class == "8") {
      echo $cs8; } elseif ($class == "9") {
      echo $cs9; } ?></p>
      <p><a href="<?php echo $_SERVER['PHP_SELF']; ?>" class="style2">[Refresh]</a><br>
          </p>
    </div>
    </html>

    World of Warcraft Namegenerator (Source Included)
  2. #2
    volitle's Avatar Contributor
    Reputation
    181
    Join Date
    Nov 2007
    Posts
    1,127
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    looks good, + rep if i can


  3. #3
    Rec Alpam's Avatar Contributor CoreCoins Purchaser
    Reputation
    125
    Join Date
    Mar 2007
    Posts
    304
    Thanks G/R
    3/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its easilly to modify but if you have any questions how to edit it, just throw in a PM

  4. #4
    johnnyK's Avatar Member
    Reputation
    9
    Join Date
    Apr 2007
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cool, I always wanted to learn such things lol But I ended at graphics. I like this.

    God turned out to be a lvl 61 priest
    Hehe that made me laugh
    + rep when I can (remind me tomorrow or so)
    Life is a succession of moments. To live each one is to succeed.
    - Corita Kent -

  5. #5
    Blackboy0's Avatar Member
    Reputation
    70
    Join Date
    Nov 2007
    Posts
    377
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Haha, good one Dida
    +Rep if I can

  6. #6
    volitle's Avatar Contributor
    Reputation
    181
    Join Date
    Nov 2007
    Posts
    1,127
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by didadonny View Post
    Its easilly to modify but if you have any questions how to edit it, just throw in a PM
    okkay, will do fella


  7. #7
    chrislp's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I got a 35 DK >.>
    Imposible level is impossible

  8. #8
    j00nas's Avatar Member
    Reputation
    10
    Join Date
    Dec 2007
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks!

  9. #9
    Rec Alpam's Avatar Contributor CoreCoins Purchaser
    Reputation
    125
    Join Date
    Mar 2007
    Posts
    304
    Thanks G/R
    3/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice to see that J00nas

Similar Threads

  1. World of Warcraft: Battlechest Now Includes Warlords of Draenor!
    By ev0 in forum World of Warcraft General
    Replies: 2
    Last Post: 05-18-2016, 01:34 AM
  2. [Selling] Selling EU BATTLE.NET Account(Includes World of warcraft,Warcraft 3XP,Diablo 3)
    By Joachim3k in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 09-13-2012, 01:41 PM
  3. WoW Pre-TBC server 1.12.1 (World of Warcraft whit Patch 1.12.1 include
    By InternetExplorer in forum WoW EMU Guides & Tutorials
    Replies: 3
    Last Post: 03-03-2009, 04:57 PM
  4. All World of Warcraft Guides! Includes everything!
    By NightBlade in forum World of Warcraft Guides
    Replies: 100
    Last Post: 06-03-2008, 01:24 AM
All times are GMT -5. The time now is 04:34 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search