Follow us on...
Follow us on Twitter Follow us on Facebook
Register

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 10 of 26
  1. #1
    Proud Geek
    Join Date
    23 Jan 2011
    Posts
    856
    Threads
    226
    Blog Entries
    6

    My User Ranks


    My Reputation

    Selling: Old AlleyPets Scripts

    Hello everone. I have a huge set of scripts from the old version of AlleyPets that I do not need:

    http://www.puppita.com/

    The art is not included, with the exception of in-game art.

    Although the coding is messy, it is pretty secure. If you find anything that doesn't work, tell me.

    If you buy this, I will assist you in fixing up the scripts.

    I can also provide a basic admin panel.
    Last edited by xtmx; 04-12-2011 at 05:46 PM.

  2. #2
    Newbie
    Join Date
    21 Feb 2011
    Posts
    26
    Threads
    0

    My User Ranks

    My Reputation

    Re: Selling: Old AlleyPets Scripts

    When registering you get a whole slew of notices about a missing UserConfirmed.php page.

    I really like the flash games. You're awesome with flash games.

  3. #3
    Moderator Lewis's Avatar
    Join Date
    21 Jan 2011
    Location
    UK
    Posts
    1,722
    Threads
    109

    My User Ranks





    My Reputation

    Re: Selling: Old AlleyPets Scripts

    Is the layout included and what is the error reporting level set to?
    Modular Gaming free open source web game framework for pet sites.

    Corepets

  4. #4
    Proud Geek
    Join Date
    23 Jan 2011
    Posts
    856
    Threads
    226
    Blog Entries
    6

    My User Ranks


    My Reputation

    Re: Selling: Old AlleyPets Scripts

    Quote Originally Posted by Lewis View Post
    Is the layout included and what is the error reporting level set to?
    I suppose the layout can be included. The error reporting is set to the default, I will fix that.

    The registration glitch has been fixed.

  5. #5
    Moderator Lewis's Avatar
    Join Date
    21 Jan 2011
    Location
    UK
    Posts
    1,722
    Threads
    109

    My User Ranks





    My Reputation

    Re: Selling: Old AlleyPets Scripts

    I'm quite interested. Would it be possible to see some of the code and have you got an idea of how much you would be looking for?
    Modular Gaming free open source web game framework for pet sites.

    Corepets

  6. #6
    Member
    Join Date
    13 Feb 2011
    Posts
    445
    Threads
    32
    Blog Entries
    1

    My User Ranks

    My Reputation

    Re: Selling: Old AlleyPets Scripts

    good luck selling these

  7. #7
    Proud Geek
    Join Date
    23 Jan 2011
    Posts
    856
    Threads
    226
    Blog Entries
    6

    My User Ranks


    My Reputation

    Re: Selling: Old AlleyPets Scripts

    Code:
    <?php
    //reply to a thread
    class Reply {
    var $user;
    var $tid;
    var $msg;
    var $cat;
    var $output;
    
    function filter($str) {
    $needle = array("badword1", "badword2");
    $c = count($needle);
    $flag = 0;
    for($i=0; $i<$c; $i++) {
    $pos = stripos($str, $needle[$i]);
    if($pos !== false) {
    $flag = 1;
    }
    }
    if($flag == 1) {
    return false;
    } else {
    return true;
    }
    }
    function postIt($user, $tid, $msg, $cat) {
    $sql2 = sprintf("INSERT INTO `t_reps`(`tid`, `user`, `msg`) VALUES ('%d', '%s', '%s');", mysql_real_escape_string($tid), mysql_real_escape_string($user), mysql_real_escape_string($msg));
    $result2 = mysql_query($sql2);
    $tid = mysql_real_escape_string($tid);
    $time = time();
    $sql3 = mysql_query("UPDATE `threads` SET `replies`=`replies`+'1' WHERE `tid`='$tid';");
    $sqlu = mysql_query("UPDATE `threads` SET `last`='$time' WHERE `tid`='$tid';");
    if($cat == "games") {
    $inc = 0.1;
    } else if($cat == "chatcat") {
    $inc = 0.2;
    } else if($cat != "help") {
    $inc = 0.3;
    } else {
    $inc = 0.4;
    }
    $brownie = mysql_query("UPDATE usertable SET brownie=brownie+'$inc' WHERE username='$user'");
    $this->output = "Replied successfully! <a href=\"?act=fboard&cat=$cat\">Back</a>";
    }
    function getOutput() {
    return $this->output;
    }
    function Reply($user, $tid, $msg, $cat) {
    $msg2 = strip_tags($msg, "<b><i><u><strike><em><strong><br>");
    if(!($this->filter($msg2))) {
    $this->output = "Sorry, swearing is not allowed.";
    } else if(strlen($msg2)>300) {
    $this->output = "Messages cannot exceed 300 characters.";
    } else if($user == null) {
    $this->output = "You must be logged in to post messages!";
    } else {
    $this->postIt($user, $tid, $msg, $cat);
    }
    }
    }
    ?>
    <?php
    //bones.php
    include("classes/index02.php");
    $bone = strip_tags($_POST["bone"]);
    $un = $ar[0];
    $sql = mysql_query("SELECT * FROM `usertable` WHERE `username`='$un'");
    if(mysql_num_rows($sql)<=0) {
    echo "Not logged in... :(";
    } else {
    $a = mysql_fetch_array($sql);
    $lst = time()-$a["bones"];
    if($lst>21600) {
    if($bone == null) {
    ?>
    <form method="post" action="">
    <table><tr><td><div align="left"><img src="images/bone.gif"/></div></td><td<div align="left"><img src="images/bone.gif"/></div></td></tr>
    <tr><td><div align="left"><input type="radio" name="bone" value="1"/></div></td><td><div align="left"><input type="radio" name="bone" value="2"/></div></td></tr></table>
    <br/><br/>
    <button type="submit"><font face="Tahoma, Arial, Helvetica, sans-serif"><strong>Throw in the Fire</strong></font></button></form>
    <?php
    } else {
    $bone2 = rand(1, 2);
    if($bone == $bone2) {
    $b = new Bone($ar[0], "money");
    } else if($bone == 1 || $bone == 2) {
    $b = new Bone($ar[0], "heal");
    } else {
    echo "That is definitely not a bone!";
    }
    $t = time();
    mysql_query("UPDATE `usertable` SET `bones`='$t' WHERE `username`='$un'");
    }
    } else {
    echo "Sorry, but you've played in the last six hours...";
    }
    }
    ?>
    The code is partly, but not fully OOP.

    As for the price, I really cannot say until I have an offer, although I can say i am looking for something in the mid-$xxx range.

  8. #8
    Moderator Lewis's Avatar
    Join Date
    21 Jan 2011
    Location
    UK
    Posts
    1,722
    Threads
    109

    My User Ranks





    My Reputation

    Re: Selling: Old AlleyPets Scripts

    The code looks good but is any of it indented? How are passwords stored?
    Modular Gaming free open source web game framework for pet sites.

    Corepets

  9. #9
    Proud Geek
    Join Date
    23 Jan 2011
    Posts
    856
    Threads
    226
    Blog Entries
    6

    My User Ranks


    My Reputation

    Re: Selling: Old AlleyPets Scripts

    No, it's not indented, although a pretty printer could fix that.

    The passwords are hashed / salted.

  10. #10
    Proud Geek
    Join Date
    23 Jan 2011
    Posts
    856
    Threads
    226
    Blog Entries
    6

    My User Ranks


    My Reputation

    Re: Selling: Old AlleyPets Scripts

    Note to everyone: Create a pet, get an item and click "Pet Interface." The pet interface BY ITSELF is worth at least $100.

    But I won't count it as that much
    Last edited by xtmx; 04-12-2011 at 07:26 PM.

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •