SimDog.net For Sale

Design1online

Senior Member
Hi guys, 

I have a dog game for sale for that's a total bargain at only $5,000. It comes with the domain name, all games files and images and a copy of the database. I'm including a huge amount of information about the game, code samples and art samples below. I'm selling it because I just don't have time to give it the attention it needs anymore. It used to have a fairly active member base but it's not as active as it used to be. Serious buyers only, price is firm.

48,752 member accounts

185 Dog Breeds (all but 47 breeds have images, flat image files no psds, full list here: http://simdog.net/breedslist.php)

19.png.b8b9cad090b9c81770addc31a13d4c28.png
23.png.8d1d5a37b79f46cbe913cfe45b39fab6.png
120.png.a1ffe999762f583373e424e1dbbaf39a.png


241 Items with images

dinner21.gif.7fb07e4ea1abbc3456711aa7599df9e4.gif
 
dinner36.gif.79a12ca92afbe654ebc37c89e2dbd1f3.gif
 
toy14.gif.22a8a50f3f21eab26eea0d7f376258f1.gif
 
food3.gif.e129549fcbc2bef784c955e3c50c91c2.gif
 

Game Features Include:

Join/Login/Lost Password

Newspaper with comments

Google Ads

Top Breeds/Dogs in the game

Breeds list with count of the total live dogs of that breed in the game

Shows and show results

Trainers

Judges

Kennels

Breeding with genetics

View attachment 2819

Game stores and player stores

Game Mail

Address Book

Personalized account pages and kennel pages

Help Files  (http://simdog.net/help.php)

Walkthrough Tutorial that explains most game features (http://simdog.net/walkthrough/)

Dog image uploads

Judge image uploads

Trainer image uploads

Bank

Animal Shelter

Clubs

Games

Forums

Searches

Journals

PHP Chat Room

Almost the entire site can be viewed without being logged in

Incomplete admin panel (you can edit news, admin news and look up user account information).

Ads Revenue

It has made over $400 since 2011. Average is about $40 a year.

View attachment 2820

Analytics & Demographics

View attachment 2821View attachment 2822View attachment 2823View attachment 2824View attachment 2825

Site Installation Requirements

Requires php 5.3+ and mysql 5+ and requires mysqli be enabled

Currently running on a digital ocean droplet with the following specs: 1 GB Memory / 30 GB Disk - Ubuntu 14

Sample Code

The game is completely functional and procedural programming, there is no object oriented programming.

Code:
<?php
/*********************************
File: dogs.php
Author: design1online.com
Date: Jun. 4th, 2005
Purpose: All the dog functions on the game
*********************************/

//get ownerid
function getOwnerid($dogid)
{
    global $db;
    $result = $db->query("SELECT ownerid FROM dogs WHERE dogid='$dogid'")
    or die('cannot get dog ownerid');

    $row = $result->fetch_array();
    return $row['ownerid'];
}

//get last ownerid
function getLastowner($dogid)
{
    global $db;
    $result = $db->query("SELECT lastowner FROM dogs WHERE dogid='$dogid'")
    or die('cannot get dog last owner');

    $row = $result->fetch_array();
    return $row['lastowner'];
}

//get dog name
function getDogname($dogid)
{
    global $db;
    $result = $db->query("SELECT name FROM dogs WHERE dogid='$dogid'")
    or die('cannot get dog name');

    $row = $result->fetch_array();
    return stripslashes($row['name']);
}
 
Back
Top