Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Mysidia Adoptables > Suggestions and Feature Requests

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 08-02-2009, 03:06 AM
Ben Ben is offline
Member
 
Join Date: Jul 2009
Posts: 9
Credits: 1,499
Ben
Send a message via MSN to Ben
Default About the cash system

Hey, I heard that there was a cash system available to donators. Where can I find this Awesome-sounding system?

(I hope I'm allowed to post topics here)
Reply With Quote
  #2  
Old 08-02-2009, 06:16 AM
Seapyramid Seapyramid is offline
Premium Member
 
Join Date: Feb 2009
Posts: 373
Gender: Female
Credits: 15,381
Seapyramid
Default RE: About the cash system

You are allowed & Bloodrun was supposed to be posting it here, but he has been very busy with school. I just got back from vacation and since it is not yet available I will work on creating a downloadable version & tutorial for it.

Sea
Reply With Quote
  #3  
Old 08-02-2009, 12:13 PM
Ben Ben is offline
Member
 
Join Date: Jul 2009
Posts: 9
Credits: 1,499
Ben
Send a message via MSN to Ben
Default RE: About the cash system

Oh, well I really look forward to this!

Thanks!
Reply With Quote
  #4  
Old 08-02-2009, 03:52 PM
arlecchina arlecchina is offline
Member
 
Join Date: Feb 2009
Posts: 65
Credits: 3,545
arlecchina
Default RE: About the cash system

Quote:
Originally Posted by Seapyramid
You are allowed & Bloodrun was supposed to be posting it here, but he has been very busy with school. I just got back from vacation and since it is not yet available I will work on creating a downloadable version & tutorial for it.

Sea
Really looking forward to this. Thanks Sea.
Reply With Quote
  #5  
Old 08-03-2009, 04:20 PM
Bloodrun's Avatar
Bloodrun Bloodrun is offline
I am, who I am.
 
Join Date: Apr 2009
Posts: 532
Gender: Male
Credits: 28,026
Bloodrun
Send a message via Yahoo to Bloodrun
Default RE: About the cash system

Class is over, and I am currently trying to find all my old files to get back to coding/posting things that I needed to post.
I was not thinking ahead of time, and I didn't organize correctly. I apologize for the long wait.
Reply With Quote
  #6  
Old 08-03-2009, 05:07 PM
Seapyramid Seapyramid is offline
Premium Member
 
Join Date: Feb 2009
Posts: 373
Gender: Female
Credits: 15,381
Seapyramid
Default RE: About the cash system

Quote:
Originally Posted by Bloodrun
Class is over, and I am currently trying to find all my old files to get back to coding/posting things that I needed to post.
I was not thinking ahead of time, and I didn't organize correctly. I apologize for the long wait.

Welcome Back :) Hope you did good on your finals! I have modified the levelup.php since the version I sent you to correct a few little things

PHP Code:
<?php
  
// **********************************************************************
  // Rusnak PHP Adoptables Script
  // Copyright 2009 Brandon Rusnak
  // For help and support: http://www.rusnakweb.com/forum/
  //
  // Redistribution prohibited without written permission
  // **********************************************************************
  // Wake the sleeping giant
  // **********************************************************************
  // Basic Configuration Info
  // **********************************************************************
  
include('inc/functions.php');
  include(
'inc/config.php');
  include(
'lang/lang.php');
  
$themeurl grabanysetting('themeurl');
  
  
// **********************************************************************
  // Define our top links by calling getlinks()
  // **********************************************************************

  
  // **********************************************************************
  // Define our ads by calling getads()
  // **********************************************************************

  
  // **********************************************************************
  // Grab any dynamic article content from the content table
  // **********************************************************************

  
$article_title $pagecontent['title'];
  
$article_content $pagecontent['content'];
  
$article_content nl2br($article_content);
  
  
// **********************************************************************
  // Grab any settings that we will need for the current page from the DB
  // **********************************************************************
  
$browsertitle grabanysetting('browsertitle');
  
$sitename grabanysetting('sitename');
  
$slogan grabanysetting('slogan');
  
  
// **********************************************************************
  // Check and see if the user is logged in to the site
  // **********************************************************************
  
$loginstatus logincheck();
  
$isloggedin $loginstatus['loginstatus'];
  
$loggedinname $loginstatus['username'];
  
  
// **********************************************************************
  // End Prepwork - Output the page to the user
  // **********************************************************************
  
  
$id $_GET["id"];
  
$id preg_replace("/[^a-zA-Z0-9s]/"""$id);
  
$id secure($id);
  
  if (
$id == "" or !is_numeric($id)) {
      
// If the ID is blank or non-numeric, then it is invalid...
      
      
$article_title $err_idnoexist;
      
$article_content $err_idnoexist_text;
  } else {
      
// We have what appears to be a valid adoptable ID, so we pull the adoptable's information from the database...
      
      
$query "SELECT * FROM " $prefix "owned_adoptables WHERE aid='$id'";
      
$result mysql_query($query);
      
$num mysql_numrows($result);
      
      
//Loop out code
      
$i 0;
      while (
$i 1) {
          
$aid = @mysql_result($result$i"aid");
          
$type = @mysql_result($result$i"type");
          
$name = @mysql_result($result$i"name");
          
$totalclicks = @mysql_result($result$i"totalclicks");
          
$currentlevel = @mysql_result($result$i"currentlevel");
          
$usealternates = @mysql_result($result$i"usealternates");
          
$isfrozen = @mysql_result($result$i"isfrozen");
          
$owner = @mysql_result($result$i"owner");
          
          
$i++;
      }
      
      if (
$aid == $id) {
          
// The adoptable does exist, so now we need to see if we can vote...
          // We need to get the date today and the user's IP address (if is guest we use this)
          
          
$date date('Y-m-d');
          
          
$ip $_SERVER['REMOTE_ADDR'];
          
$ip preg_replace("/[^a-zA-Z0-9@._-]/"""$ip);
          
$ip secure($ip);
          
          
$num 0;
 
          
          if (
$isloggedin == "yes") {
              
// If we are logged in, we check if a user with our username voted for this adoptable today...
              
              
$query "SELECT * FROM " $prefix "vote_voters WHERE adoptableid='$id' and username = '$loggedinname' and date = '$date'";
          } else {
              
$query "SELECT * FROM " $prefix "vote_voters WHERE adoptableid='$id' and ip = '$ip' and date = '$date'";
          }
          
// End the is logged in check else statement
          
          
          // Check what the number for the query is...
          
          
$result mysql_query($query);
          
$num mysql_numrows($result);
          
          if (
$num == 0) {
              
// The number of results is still zero, so we did not vote on this adoptable yet today...
 
        
              // Now we see if the adoptable is frozen by its owner.  If it is, we do not level...
              
              
if ($isfrozen == "yes") {
                  
$article_title $lang_isfrozen_title;
                  
$article_content $lang_isfrozen_explain;
              } else {
              
              
$image getcurrentimage($id);
$article_title $lang_gave "" $name " one " $lang_unit;
                  
$article_content "<br /><br /><img src='" $image "'><br /><br />" $name " was already at maximun training.";
               
                  
// Adoptable is NOT frozen, so I think we can actually proceed with the leveling up of this adoptable...
                  
                  // Add 1 click to the current click total of this adoptable...
                  
$newclicks $totalclicks 1;
                  
                  
// Actually insert our click information into the database...
                  
                  
$query "UPDATE " $prefix "owned_adoptables SET totalclicks='" $newclicks "' WHERE aid='" $id "'";
                  
mysql_query($query);
                  
                  
// Now we need to update our vote_voters table with the user's vote...
                  
                  
mysql_query("INSERT INTO " $prefix "vote_voters VALUES ('$date', '$loggedinname', '$ip','$id')");
                  
                  
// Now we need to see if we actually level this adoptable up...
                  // See if another level actually exists...
                  
                  
$nextlevelexists getnextlevelexists($type$currentlevel);
                  
                  if (
$nextlevelexists == "true") {
                      
// A higher level does exist, so we see if it is time to level up
                      
                      
$nextlevel $currentlevel 1;
                      
                      
$query "SELECT * FROM " $prefix "levels WHERE adoptiename='$type' and thisislevel='$nextlevel'";
                      
$result mysql_query($query);
                      
$num mysql_numrows($result);
                      
                      
//Loop out code
                      
$i 0;
                      while (
$i 1) {
                          
// The number of clicks required for the next level
                          
$requiredclicks = @mysql_result($result$i"requiredclicks");
                          
                          
$i++;
                      }
                      
                      
// Check if the number of clicks we have now is greater than or equal to the required clicks to level up...
                      
                      
if ($newclicks >= $requiredclicks and $requiredclicks != and $requiredclicks != "") {
                          
// We need to level this adoptable up...
                          
                          
$query "UPDATE " $prefix "owned_adoptables SET currentlevel='" $nextlevel "' WHERE aid='" $id "'";
                          
mysql_query($query);
                          
                          
// Now we check if we are enabling alternate images...
                          
                          // Get the ID of the parent type adoptable
                          
$parentid converttypetoparentid($type);
                          
// Check if we are using alternate images or not...
                          
$altstatus getaltstatus($parentid$id$nextlevel);
                          
                          if (
$altstatus == "yes") {
                              
// We are enabling alternate images for this adoptable...
                              
                              
$query "UPDATE " $prefix "owned_adoptables SET usealternates='yes' WHERE aid='" $id "'";
                              
mysql_query($query);
                          }
                          
                          
// Now we can see if the adoptable's owner gets a reward...
                          // The reward function will take care of sending out any reward that exists...
                          
                          
$rewardstatus reward($id$type$nextlevel$owner);
                      }
                      
// End the if statement if we are leveling the adoptable up
                                        
$image getcurrentimage($id);
                  
                  
                  
$article_title $lang_gave "" $name " one " $lang_unit;
                  
$article_content "<br /><br /><img src='" $image "'><br /><br />";
                    }  
 
// ************************************************

// Start Rewards

// ************************************************  

      
      //Get currency on level up

          
$query "SELECT * FROM `adopts_users` WHERE `username`='$loggedinname'";
          
$result mysql_query($query);
          
$num mysql_numrows($result);
          
          
$i 0;
          while (
$i 1) {
              
$money = @mysql_result($result$i"money");
              
              
// Change this number 10 to the number of currency you want users to earn on level up  
              
$newbalance $money 2;
              
              
$i++;
          }
          
          
mysql_query("UPDATE `adopts_users` SET `money`='" $newbalance "' WHERE `username`='$loggedinname'");
          

          
$article_content $article_content "<div align='center'><br />You have earned 2 Gold Pieces for leveling up this pet. <br />You now have  " $newbalance " Gold Pieces.</div>";
      

      
// **********************************************************************
      // End Level Up - Begin Random for Gifts
      // **********************************************************************
      // Now we have to connect to the database and get information about the adoptable
      

          
$query "SELECT * FROM " $prefix "adoptables WHERE id='45'";
          
$result mysql_query($query);
          
$num mysql_numrows($result);
          

          
//Loop out code
          
$i 0;
          
          while (
$i 1) {
              
$aid = @mysql_result($result$i'id');
              
              
//The adoptable's ID
              
$type = @mysql_result($result$i'type');
              
$description = @mysql_result($result$i'description');
              
$eggimage1 = @mysql_result($result$i'eggimage');
              
$i++;
          }
          
          
// This is where we actually determine if member has won a special pet...
          
$randnum rand(16500);
          
          if (
$randnum == 1009) {
              
$canadopt 'yes';
              
              
// If we pull a 1 as the random number, they won :)
          
} else {
              
$canadopt 'no';
          }
          
          if (
$canadopt == 'no') {
              
$article_content $article_content $lang_levelup_gift_no;
          }
          
          elseif (
$canadopt == 'yes') {
              
$code rand(120000);
              
mysql_query('INSERT INTO ' $prefix "owned_adoptables VALUES ('', 'Centaur Scribe', 'Centaur Scribe','$loggedinname','0','0','$code', '','no','trade','no','no','no','no','Centaur','civil','civil','0','','','20','','no','0','0')");

              
              
// Adoption complete, show the user a confirmation screen...
              // We need to show the adoptable info from the database...
              
$query 'SELECT * FROM ' $prefix "owned_adoptables WHERE code='$code' and owner='$loggedinname'";
              
$result mysql_query($query);
              
$num mysql_numrows($result);
 
              
              
//Loop out code
              
$i 0;
              
              while (
$i 1) {
                  
$id = @mysql_result($result$i'aid');
                  
$i++;
                  
                  
$article_content $article_content $lang_levelup_gift_pixie;
                          
                    
// *************************************

// End Rewards

// *************************************                        
                      
                  
}
                  
                  
// show a thank you message along with the adoptable's information to the user...
                  
                  // Get the current image of the adoptable...

                  
$article_content $lang_gave "" $name " one " $lang_unit "<br />" $lang_levelup_encourage $article_content;
              }
              
// Adoptable is not frozen, end isfrozen else check
              
              
              
}
              
              } else
              {
                  
// We already voted on this adoptable today, so show an error...
                  
                  
if ($isloggedin == "yes") {
                      
$article_title $lang_alreadyleveled_title;
                      
$article_content $lang_member_alreadyleveled;
                  } else {
                      
$article_title $lang_alreadyleveled_title;
                      
$article_content $lang_guest_alreadyleveled;
                  }
              }
          } else {
              
// Adoptable is invalid, show an error...
              
              
$article_title $err_idnoexist;
              
$article_content $err_idnoexist_text;
          }}

      
// End the ID is not blank and is numeric else check

      
      // End Can Adopt ELSE
      // **********************************************************************
      // END the actual adoption process
      // **********************************************************************
      // **********************************************************************
      // Begin Template Definition
      // **********************************************************************
      //Define our current theme
      // Do the template changes and echo the ready template
      
$file $themeurl;
      
$template file_get_contents($file);
      
$template replace(':ARTICLETITLE:'$article_title$template);
      
$template replace(':ARTICLECONTENT:'$article_content$template);
      
$template replace(':ARTICLEDATE:'$article_date$template);
      
$template replace(':BROWSERTITLE:'$browsertitle$template);
      
$template replace(':SITENAME:'$sitename$template);
      
      
//Define our links
      
      
      
echo $template;
      
      
// **********************************************************************
      // End Template Definition
      // **********************************************************************
?>
WARNING!!!! Anyone who tries to use this version of the levelup.php BEFORE Bloodrun modifies it and give instructions will find themselves with many problems.

Sea
Reply With Quote
  #7  
Old 08-04-2009, 06:25 PM
Bloodrun's Avatar
Bloodrun Bloodrun is offline
I am, who I am.
 
Join Date: Apr 2009
Posts: 532
Gender: Male
Credits: 28,026
Bloodrun
Send a message via Yahoo to Bloodrun
Default RE: About the cash system

Quote:
Originally Posted by Seapyramid
Quote:
Originally Posted by Bloodrun
Class is over, and I am currently trying to find all my old files to get back to coding/posting things that I needed to post.
I was not thinking ahead of time, and I didn't organize correctly. I apologize for the long wait.

Welcome Back :) Hope you did good on your finals! I have modified the levelup.php since the version I sent you to correct a few little things

PHP Code:
<?php
  
// **********************************************************************
  // Rusnak PHP Adoptables Script
  // Copyright 2009 Brandon Rusnak
  // For help and support: http://www.rusnakweb.com/forum/
  //
  // Redistribution prohibited without written permission
  // **********************************************************************
  // Wake the sleeping giant
  // **********************************************************************
  // Basic Configuration Info
  // **********************************************************************
  
include('inc/functions.php');
  include(
'inc/config.php');
  include(
'lang/lang.php');
  
$themeurl grabanysetting('themeurl');
  
  
// **********************************************************************
  // Define our top links by calling getlinks()
  // **********************************************************************

  
  // **********************************************************************
  // Define our ads by calling getads()
  // **********************************************************************

  
  // **********************************************************************
  // Grab any dynamic article content from the content table
  // **********************************************************************

  
$article_title $pagecontent['title'];
  
$article_content $pagecontent['content'];
  
$article_content nl2br($article_content);
  
  
// **********************************************************************
  // Grab any settings that we will need for the current page from the DB
  // **********************************************************************
  
$browsertitle grabanysetting('browsertitle');
  
$sitename grabanysetting('sitename');
  
$slogan grabanysetting('slogan');
  
  
// **********************************************************************
  // Check and see if the user is logged in to the site
  // **********************************************************************
  
$loginstatus logincheck();
  
$isloggedin $loginstatus['loginstatus'];
  
$loggedinname $loginstatus['username'];
  
  
// **********************************************************************
  // End Prepwork - Output the page to the user
  // **********************************************************************
  
  
$id $_GET["id"];
  
$id preg_replace("/[^a-zA-Z0-9s]/"""$id);
  
$id secure($id);
  
  if (
$id == "" or !is_numeric($id)) {
      
// If the ID is blank or non-numeric, then it is invalid...
      
      
$article_title $err_idnoexist;
      
$article_content $err_idnoexist_text;
  } else {
      
// We have what appears to be a valid adoptable ID, so we pull the adoptable's information from the database...
      
      
$query "SELECT * FROM " $prefix "owned_adoptables WHERE aid='$id'";
      
$result mysql_query($query);
      
$num mysql_numrows($result);
      
      
//Loop out code
      
$i 0;
      while (
$i 1) {
          
$aid = @mysql_result($result$i"aid");
          
$type = @mysql_result($result$i"type");
          
$name = @mysql_result($result$i"name");
          
$totalclicks = @mysql_result($result$i"totalclicks");
          
$currentlevel = @mysql_result($result$i"currentlevel");
          
$usealternates = @mysql_result($result$i"usealternates");
          
$isfrozen = @mysql_result($result$i"isfrozen");
          
$owner = @mysql_result($result$i"owner");
          
          
$i++;
      }
      
      if (
$aid == $id) {
          
// The adoptable does exist, so now we need to see if we can vote...
          // We need to get the date today and the user's IP address (if is guest we use this)
          
          
$date date('Y-m-d');
          
          
$ip $_SERVER['REMOTE_ADDR'];
          
$ip preg_replace("/[^a-zA-Z0-9@._-]/"""$ip);
          
$ip secure($ip);
          
          
$num 0;
 
          
          if (
$isloggedin == "yes") {
              
// If we are logged in, we check if a user with our username voted for this adoptable today...
              
              
$query "SELECT * FROM " $prefix "vote_voters WHERE adoptableid='$id' and username = '$loggedinname' and date = '$date'";
          } else {
              
$query "SELECT * FROM " $prefix "vote_voters WHERE adoptableid='$id' and ip = '$ip' and date = '$date'";
          }
          
// End the is logged in check else statement
          
          
          // Check what the number for the query is...
          
          
$result mysql_query($query);
          
$num mysql_numrows($result);
          
          if (
$num == 0) {
              
// The number of results is still zero, so we did not vote on this adoptable yet today...
 
        
              // Now we see if the adoptable is frozen by its owner.  If it is, we do not level...
              
              
if ($isfrozen == "yes") {
                  
$article_title $lang_isfrozen_title;
                  
$article_content $lang_isfrozen_explain;
              } else {
              
              
$image getcurrentimage($id);
$article_title $lang_gave "" $name " one " $lang_unit;
                  
$article_content "<br /><br /><img src='" $image "'><br /><br />" $name " was already at maximun training.";
               
                  
// Adoptable is NOT frozen, so I think we can actually proceed with the leveling up of this adoptable...
                  
                  // Add 1 click to the current click total of this adoptable...
                  
$newclicks $totalclicks 1;
                  
                  
// Actually insert our click information into the database...
                  
                  
$query "UPDATE " $prefix "owned_adoptables SET totalclicks='" $newclicks "' WHERE aid='" $id "'";
                  
mysql_query($query);
                  
                  
// Now we need to update our vote_voters table with the user's vote...
                  
                  
mysql_query("INSERT INTO " $prefix "vote_voters VALUES ('$date', '$loggedinname', '$ip','$id')");
                  
                  
// Now we need to see if we actually level this adoptable up...
                  // See if another level actually exists...
                  
                  
$nextlevelexists getnextlevelexists($type$currentlevel);
                  
                  if (
$nextlevelexists == "true") {
                      
// A higher level does exist, so we see if it is time to level up
                      
                      
$nextlevel $currentlevel 1;
                      
                      
$query "SELECT * FROM " $prefix "levels WHERE adoptiename='$type' and thisislevel='$nextlevel'";
                      
$result mysql_query($query);
                      
$num mysql_numrows($result);
                      
                      
//Loop out code
                      
$i 0;
                      while (
$i 1) {
                          
// The number of clicks required for the next level
                          
$requiredclicks = @mysql_result($result$i"requiredclicks");
                          
                          
$i++;
                      }
                      
                      
// Check if the number of clicks we have now is greater than or equal to the required clicks to level up...
                      
                      
if ($newclicks >= $requiredclicks and $requiredclicks != and $requiredclicks != "") {
                          
// We need to level this adoptable up...
                          
                          
$query "UPDATE " $prefix "owned_adoptables SET currentlevel='" $nextlevel "' WHERE aid='" $id "'";
                          
mysql_query($query);
                          
                          
// Now we check if we are enabling alternate images...
                          
                          // Get the ID of the parent type adoptable
                          
$parentid converttypetoparentid($type);
                          
// Check if we are using alternate images or not...
                          
$altstatus getaltstatus($parentid$id$nextlevel);
                          
                          if (
$altstatus == "yes") {
                              
// We are enabling alternate images for this adoptable...
                              
                              
$query "UPDATE " $prefix "owned_adoptables SET usealternates='yes' WHERE aid='" $id "'";
                              
mysql_query($query);
                          }
                          
                          
// Now we can see if the adoptable's owner gets a reward...
                          // The reward function will take care of sending out any reward that exists...
                          
                          
$rewardstatus reward($id$type$nextlevel$owner);
                      }
                      
// End the if statement if we are leveling the adoptable up
                                        
$image getcurrentimage($id);
                  
                  
                  
$article_title $lang_gave "" $name " one " $lang_unit;
                  
$article_content "<br /><br /><img src='" $image "'><br /><br />";
                    }  
 
// ************************************************

// Start Rewards

// ************************************************  

      
      //Get currency on level up

          
$query "SELECT * FROM `adopts_users` WHERE `username`='$loggedinname'";
          
$result mysql_query($query);
          
$num mysql_numrows($result);
          
          
$i 0;
          while (
$i 1) {
              
$money = @mysql_result($result$i"money");
              
              
// Change this number 10 to the number of currency you want users to earn on level up  
              
$newbalance $money 2;
              
              
$i++;
          }
          
          
mysql_query("UPDATE `adopts_users` SET `money`='" $newbalance "' WHERE `username`='$loggedinname'");
          

          
$article_content $article_content "<div align='center'><br />You have earned 2 Gold Pieces for leveling up this pet. <br />You now have  " $newbalance " Gold Pieces.</div>";
      

      
// **********************************************************************
      // End Level Up - Begin Random for Gifts
      // **********************************************************************
      // Now we have to connect to the database and get information about the adoptable
      

          
$query "SELECT * FROM " $prefix "adoptables WHERE id='45'";
          
$result mysql_query($query);
          
$num mysql_numrows($result);
          

          
//Loop out code
          
$i 0;
          
          while (
$i 1) {
              
$aid = @mysql_result($result$i'id');
              
              
//The adoptable's ID
              
$type = @mysql_result($result$i'type');
              
$description = @mysql_result($result$i'description');
              
$eggimage1 = @mysql_result($result$i'eggimage');
              
$i++;
          }
          
          
// This is where we actually determine if member has won a special pet...
          
$randnum rand(16500);
          
          if (
$randnum == 1009) {
              
$canadopt 'yes';
              
              
// If we pull a 1 as the random number, they won :)
          
} else {
              
$canadopt 'no';
          }
          
          if (
$canadopt == 'no') {
              
$article_content $article_content $lang_levelup_gift_no;
          }
          
          elseif (
$canadopt == 'yes') {
              
$code rand(120000);
              
mysql_query('INSERT INTO ' $prefix "owned_adoptables VALUES ('', 'Centaur Scribe', 'Centaur Scribe','$loggedinname','0','0','$code', '','no','trade','no','no','no','no','Centaur','civil','civil','0','','','20','','no','0','0')");

              
              
// Adoption complete, show the user a confirmation screen...
              // We need to show the adoptable info from the database...
              
$query 'SELECT * FROM ' $prefix "owned_adoptables WHERE code='$code' and owner='$loggedinname'";
              
$result mysql_query($query);
              
$num mysql_numrows($result);
 
              
              
//Loop out code
              
$i 0;
              
              while (
$i 1) {
                  
$id = @mysql_result($result$i'aid');
                  
$i++;
                  
                  
$article_content $article_content $lang_levelup_gift_pixie;
                          
                    
// *************************************

// End Rewards

// *************************************                        
                      
                  
}
                  
                  
// show a thank you message along with the adoptable's information to the user...
                  
                  // Get the current image of the adoptable...

                  
$article_content $lang_gave "" $name " one " $lang_unit "<br />" $lang_levelup_encourage $article_content;
              }
              
// Adoptable is not frozen, end isfrozen else check
              
              
              
}
              
              } else
              {
                  
// We already voted on this adoptable today, so show an error...
                  
                  
if ($isloggedin == "yes") {
                      
$article_title $lang_alreadyleveled_title;
                      
$article_content $lang_member_alreadyleveled;
                  } else {
                      
$article_title $lang_alreadyleveled_title;
                      
$article_content $lang_guest_alreadyleveled;
                  }
              }
          } else {
              
// Adoptable is invalid, show an error...
              
              
$article_title $err_idnoexist;
              
$article_content $err_idnoexist_text;
          }}

      
// End the ID is not blank and is numeric else check

      
      // End Can Adopt ELSE
      // **********************************************************************
      // END the actual adoption process
      // **********************************************************************
      // **********************************************************************
      // Begin Template Definition
      // **********************************************************************
      //Define our current theme
      // Do the template changes and echo the ready template
      
$file $themeurl;
      
$template file_get_contents($file);
      
$template replace(':ARTICLETITLE:'$article_title$template);
      
$template replace(':ARTICLECONTENT:'$article_content$template);
      
$template replace(':ARTICLEDATE:'$article_date$template);
      
$template replace(':BROWSERTITLE:'$browsertitle$template);
      
$template replace(':SITENAME:'$sitename$template);
      
      
//Define our links
      
      
      
echo $template;
      
      
// **********************************************************************
      // End Template Definition
      // **********************************************************************
?>
WARNING!!!! Anyone who tries to use this version of the levelup.php BEFORE Bloodrun modifies it and give instructions will find themselves with many problems.

Sea
Alright, once I get settled in, and everything sorted out, Ill get the instructions started.
Thank you for your dedicated participation Sea.
Reply With Quote
  #8  
Old 08-05-2009, 04:28 AM
Chika Chika Chika Chika is offline
Member
 
Join Date: Mar 2009
Posts: 1
Credits: 229
Chika Chika
Default RE: About the cash system

Hahaha, I was wondering about this too. x'D;; Thanks for the hard work Bloodrun, Sea!
Reply With Quote
  #9  
Old 09-04-2009, 01:50 AM
Fireballchad Fireballchad is offline
Member
 
Join Date: Aug 2009
Posts: 49
Credits: 8,078
Fireballchad
Default RE: About the cash system

Well I figure since it has been a month if I can ask the progress?
Reply With Quote
  #10  
Old 10-07-2009, 07:01 PM
Ben Ben is offline
Member
 
Join Date: Jul 2009
Posts: 9
Credits: 1,499
Ben
Send a message via MSN to Ben
Default RE: About the cash system

Yeah, any progress made please?
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
secondary cash.. maximillion Questions and Supports 2 07-04-2011 09:42 PM
Games With the Cash System redheadturkey Suggestions and Feature Requests 8 08-27-2010 03:37 AM
Cash System Ashje Questions and Supports 10 12-21-2009 03:55 PM
Cash System Seapyramid Addons/Mods Graveyard 28 12-09-2009 09:16 PM
Buying 'cash' with cash? Quillink Questions and Supports 4 07-20-2009 03:21 AM


All times are GMT -5. The time now is 11:41 AM.

Currently Active Users: 461 (0 members and 461 guests)
Threads: 4,080, Posts: 32,024, Members: 2,016
Welcome to our newest members, jolob.
BETA





What's New?

What's Hot?

What's Popular?


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
vBCommerce I v2.0.0 Gold ©2010, PixelFX Studios
vBCredits I v2.0.0 Gold ©2010, PixelFX Studios
Emoticons by darkmoon3636