Thread: Kritter Kingdom
View Single Post
  #4  
Old 03-11-2010, 09:30 PM
Magnie's Avatar
Magnie Magnie is offline
Pythonic
 
Join Date: Dec 2009
Location: Polaris, the Planet
Posts: 34
Gender: Male
Credits: 5,054
Magnie
Send a message via ICQ to Magnie
Default RE: Kritter Kingdom

I suggest fixing the TOS so, for the people that actually read it can. It looks like on like '70' at the end you need to add a ';' ( Semi-colon ) Also, you can't see how much money you have... :/ Might try making it so you can. Or follow my simple guide below. :P

Guide to making money should on the Side Panel:

In 'inc/functions.php' go to line '217' or look around that line and find:

PHP Code:
if($isloggedin == "yes"){ 
Then after that put:

PHP Code:
$query "SELECT * FROM ".$prefix."users WHERE username = '".$loggedinname."'";

$result mysql_query($query);

$num mysql_numrows($result);

$i=0;

while (
$i 1) {



$money=@mysql_result($result,$i,"money");



$i++;


Change 'money' to whatever the currency name is then go to line '244' or around it should say:

PHP Code:
".$msgctr." 
and after it put:

PHP Code:
<b>".$loggedinname."'s Money:</b> ".$money." 
Then change 'money' to yo currency name. Then that should be all!
Reply With Quote