Jump to content

Recommended Posts

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.png23.png120.png

241 Items with images

dinner21.gif dinner36.gif toy14.gif food3.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

2062985905_ScreenShot2018-11-30at7_30_56PM.thumb.png.ec11c28d2c5f96712df7d940e44b4f68.png

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.

269280900_ScreenShot2018-11-30at7_47_59PM.thumb.png.32a5291c5400bb936334ccbb6c155ec2.png

Analytics & Demographics

501773704_ScreenShot2018-11-30at7_54_23PM.thumb.png.325e18e6fbdc1b2cd0a770dc1f0e123c.png2037292047_ScreenShot2018-11-30at7_56_10PM.thumb.png.317388d07e187c3a3a5368147b0c5773.png1977187638_ScreenShot2018-11-30at7_54_57PM.thumb.png.ce0f7a94930f7459da3a52c7b6473a6b.png449807976_ScreenShot2018-11-30at7_55_38PM.thumb.png.41dabca04a5348ba89d349483e81f915.png693578875_ScreenShot2018-11-30at7_56_37PM.thumb.png.d2f331b690cce95afbdad1408c382ad5.png

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.

<?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']);
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...