Log in

View Full Version : adoptables


livingingc
01-25-2009, 01:50 PM
For our local Ice Creme store, we thought it would be nice to get advertising done by having users become the advertisers, on their myspaces, blogs, and facebooks. Its not all the way done. I'm waiting to get the new release from Jonathon and fix it up to look the same. Tell me what you think.

http://weathervaneicecreme.com/petarena/

BMR777
01-25-2009, 05:13 PM
That is VERY cool. Very original idea using it for marketing. :)

I like the theme redesign too. :)

Best of luck. It would be really interesting if once you got to max level then you got a coupon for a free small ice creme or something like that where the user could print it out. :)

Very nice. :)
Brandon

kab012345
01-25-2009, 06:24 PM
Wow, I like the idea too. The pets are really cute. Good luck spreading the word. ;)

livingingc
01-25-2009, 07:35 PM
Perfect! I didnt think of doing that. How would I incorporate that in the coding?



That is VERY cool. Very original idea using it for marketing. :)

I like the theme redesign too. :)

Best of luck. It would be really interesting if once you got to max level then you got a coupon for a free small ice creme or something like that where the user could print it out. :)

Very nice. :)
Brandon

BMR777
01-25-2009, 07:54 PM
The easiest way would be to incorporate it into the myadoptables.php file so that when an adoptable of the user gets to max level the adoptable gives them a code or coupon. This way too only the owner sees the code.

In myadoptables.php find:

if($neededclicks < 0){
$neededclicks = "0 (Max Level)";
}

//Begin our content output...
$article_content=$article_content."<p align='center'><b><u>".$name.":</u></b></p>
<p align='center'><img src='".$imageurl."' border='0'></p>
<b>Current level of ".$name.": ".$currentlevel."<br></b><b>Total clicks on ".$name.": ".$totalclicks."<br></b>
<b>Clicks needed until LevelUP ".$name.": ".$neededclicks."<br></b><br>
<a href='levelup.php?id=".$id."'>Click Here to LevelUP ".$name.".</a> (You can do this once per day)<br>
<a href='manage.php?id=".$id."&action=bbcode'>Click Here to get BBCODEs for ".$name.".</a> <br>
<a href='manage.php?id=".$id."&action=delete'>Click Here to Delete (Kill) ".$name.".</a> <br>";

I would change to:

if($neededclicks < 0){
$neededclicks = "0 (Max Level)";
$coupon = "Your Coupon Code Goes Here, or you can get fancy and use HTML to show an image";
}

//Begin our content output...
$article_content=$article_content."<p align='center'><b><u>".$name.":</u></b></p>
<p align='center'><img src='".$imageurl."' border='0'></p>
<b>Current level of ".$name.": ".$currentlevel."<br></b><b>Total clicks on ".$name.": ".$totalclicks."<br></b>
<b>Clicks needed until LevelUP ".$name.": ".$neededclicks."<br></b><br>
<a href='levelup.php?id=".$id."'>Click Here to LevelUP ".$name.".</a> (You can do this once per day)<br>
<a href='manage.php?id=".$id."&action=bbcode'>Click Here to get BBCODEs for ".$name.".</a> <br>
<a href='manage.php?id=".$id."&action=delete'>Click Here to Delete (Kill) ".$name.".</a> <br>";

if($coupon != ""){
//If the coupon is not blank, show the coupon
$article_content = $article_content."Free Ice Cream Coupon: ".$coupon."<br>";
}

Basically the above code is very simple and will just output a coupon code to the user. Of course you can get real fancy and generate custom codes for each user or do lots of other fancy things as well, but this will be enough to get you started. :)

Brandon

livingingc
01-25-2009, 09:43 PM
Perfect. Thanks!