1. Quickly find sites and domains for sale in the marketplace based on criteria that interests you.

    Enter Marketplace

Selling Custom Text-Based MMORPG

Discussion in 'Sites' started by xtmx, Sep 1, 2011.

  1. #1
    Puppita

    Demo Account (use if lazy):

    Username: demo
    Password: password

    Login
    Register


    This site is not active, but can be with some effort. Coded in PHP and MySQL. All art and programming is included.

    List of features:

    Adopt Pet
    DnD pet feeding
    Puppy-raising minigame
    Wheel
    Two flash games
    Five PHP Games
    Forums
    Shops
    Referral system
    Private messaging
    Random events
    News
    Who's online
    Poll
    Pet Pages
    Flash Land Map
    Avatars
    Signatures
    Theme Park
    Smileys
    Bank
    8 pets
    About 20 - 30 items
    Layout
     
    xtmx, Sep 1, 2011 IP
  2. kustud

    kustud Member

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    26
    As Seller:
    100% - 0
    As Buyer:
    100% - 1
    #2
    Feel a bit out of my depth here as dont fully understand the site but is interesting.

    Is there any payment/revenue features or potential.

    Also is this coded by yourself or a script?

    Looking forward to bidding!
     
    kustud, Sep 1, 2011 IP
  3. xtmx

    xtmx Active Member

    Messages:
    359
    Likes Received:
    12
    Best Answers:
    4
    Trophy Points:
    88
    As Seller:
    100% - 0
    As Buyer:
    100% - 1
    #3
    There is a 468x60 adsense spot at the moment, and if you put a little work into it, you could implement a Paypal virtual goods cart.

    It's coded by myself.
     
    xtmx, Sep 1, 2011 IP
  4. kustud

    kustud Member

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    26
    As Seller:
    100% - 0
    As Buyer:
    100% - 1
    #4
    Ok thats great.

    Will have a play with it some more then make an offer!

    Thanks
     
    kustud, Sep 1, 2011 IP
  5. Dominic_

    Dominic_ Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #5
    What do you mean by 'site is not active'?
     
    Dominic_, Sep 1, 2011 IP
  6. kustud

    kustud Member

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    26
    As Seller:
    100% - 0
    As Buyer:
    100% - 1
    #6
    More Qs:Some sections seem not to be finished - is the scripting easy enough to follow if I wanted to work on it more?Also is there any PvP battling or anything - what are weapons for? How does someone increase their character level?
     
    kustud, Sep 2, 2011 IP
  7. paul.sonny.cook

    paul.sonny.cook Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #7
    What is the reserve on the auction?
     
    paul.sonny.cook, Sep 2, 2011 IP
  8. xtmx

    xtmx Active Member

    Messages:
    359
    Likes Received:
    12
    Best Answers:
    4
    Trophy Points:
    88
    As Seller:
    100% - 0
    As Buyer:
    100% - 1
    #8
    Dominic_: No one's actively playing the site
    kustud: I have a partly coded battle system sitting on my hard drive that I never got around to finishing.
    paul.sonny.cook: $240, but I can go lower if I must.


    Login System (loaded via AJAX):

    <?php
    class LoginCheck {
    var $username;
    var $password;
    var $sl;
    
    function LoginCheck($username, $password, $sl) {
    	$query = sprintf("SELECT * FROM `usertable` WHERE `username`='%s'", mysql_real_escape_string($username));
    	$result = mysql_query($query);
    	$rows = mysql_num_rows($result);
    	if($rows<1) {
    	exit("Invalid username!");
    } else {
    	$array = mysql_fetch_array($result);
    	$pass2 = $array["password"];
    	$salty = $array["salt"];
    	$sl2 = $array["sl"];
    	if($sl2 == 1 && strtolower($sl) != "yes") {
    	exit("This user has enabled Secure Login");
    } else {
    	if($pass2 != crypt(mysql_real_escape_string($password), $salty)) {
    	die("Invalid password!");
    } else {
    setcookie("username_ALLEY", $username, time()+86400);
    setcookie("password_ALLEY", $pass2, time()+86400);
    if(mysql_num_rows(mysql_query("SELECT * FROM online WHERE user='$username';"))<=0) {
    mysql_query("INSERT INTO online(user, stamp) VALUES('$username', '" . time() . "');");
    }
    echo "Login successful <a href=\"?\">Refresh</a>";
    }
    }
    }
    }
    }
    ?>
    PHP:
    By the way, this coding is derived from a site I created, but never sold, in 2008, by myself.
     
    xtmx, Sep 2, 2011 IP