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)
241 Items with images
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.
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)
241 Items with images
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']);
}