
ChrisRowe
Members-
Posts
18 -
Joined
-
Last visited
-
Days Won
1
ChrisRowe last won the day on July 29 2011
ChrisRowe had the most liked content!
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
ChrisRowe's Achievements
Newbie (1/14)
1
Reputation
-
I don't think to much of the design, but like the concept of the site. if you need a hand with the design, give me a shout
-
Haha. Well you see, if some of the people that do designs on here, actually did some research they would realise Ipsum is the standard filler :P not soijnslkjslkdjaslkjdlkjflksdnflsa haha < Point Taken :) >
-
What do you mean mate? If its linked to anywhere, it'll just be imageshack. as thats where i uploaded it, displaying fine my end.
-
I dunno if anyone will be interested in this, but i've just finished this template. and want to see if anyone wants to buy it :) Sale is for the PSD. and i will chop and code it for a fee if required. Auction starts at $15 ?
-
Its the same function as is with MCCodes, just with my div's inserted not there tables.
-
I COULD KISS YOU ILLUSIONS! Been ripping my hair out for days! i hate PHP lol
-
I've made a new layout for my game, and exported it, wrote the XHTML, and now im trying to implement MCCodes into it. Problem is, i'm getting that error, in my navigation menu when i upload. Can anyone help me please? <?php class headers { function startheaders() { global $ir, $set, $c; echo <<<EOF <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>{$set['game_name']} - Massive Multiplayer Online Role Playing Game </title> <link rel="stylesheet" href="css/mainstyles.css" type="text/css" /> </head> <body> <div id="container"> <!-- whole site wrap--> <div id="header"> <!-- header // banner --> </div> <div id="infofeeds"> <table id="Table_01" width="231" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="5"> <img id="infofeed_01" src="images/infofeed_01.png" width="231" height="38" alt="" /></td> </tr> <tr> <td rowspan="2"> <img id="infofeed_02" src="images/infofeed_02.png" width="84" height="96" alt="" /></td> <td> <img id="infofeed_03" src="images/infofeed_03.png" width="46" height="55" alt="" /></td> <td rowspan="2"> <img id="infofeed_04" src="images/infofeed_04.png" width="22" height="96" alt="" /></td> <td> <img id="infofeed_05" src="images/infofeed_05.png" width="48" height="55" alt="" /></td> <td rowspan="2"> <img id="infofeed_06" src="images/infofeed_06.png" width="31" height="96" alt="" /></td> </tr> <tr> <td> <img id="infofeed_07" src="images/infofeed_07.png" width="46" height="41" alt="" /></td> <td> <img id="infofeed_08" src="images/infofeed_08.png" width="48" height="41" alt="" /></td> </tr> </table> </div> <div id="userstats"> <!-- user stats box --> <ul> EOF; } function userdata($ir,$lv,$fm,$cm,$dosessh=1) { global $db,$c,$userid, $set; $IP = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; $db->query("UPDATE `users` SET `laston` = unix_timestamp(), `lastip` = '$IP' WHERE `userid` = $userid"); if(!$ir['email']) { global $domain; die ("<div id='mainContentParent'>Your account may be broken. Please mail help@{$domain} stating your username and player ID.</div>"); } if($dosessh && ($_SESSION['attacking'] || $ir['attacking'])) { print "You lost all your EXP for running from the fight."; $db->query("UPDATE users SET exp=0,attacking=0 WHERE userid=$userid"); $_SESSION['attacking']=0; } $enperc=(int) ($ir['energy']/$ir['maxenergy']*100); $wiperc=(int) ($ir['will']/$ir['maxwill']*100); $experc=(int) ( $ir['exp']/$ir['exp_needed']*100); $brperc=(int) ($ir['brave']/$ir['maxbrave']*100); $hpperc=(int) ($ir['hp']/$ir['maxhp']*100); $enopp=100-$enperc; $wiopp=100-$wiperc; $exopp=100-$experc; $bropp=100-$brperc; $hpopp=100-$hpperc; $d=""; $u=$ir['username']; if($ir['donatordays']) { $u = "<font color=red>{$ir['username']}</font>";$d="<img src='donator.gif' alt='Donator: {$ir['donatordays']} Days Left' title='Donator: {$ir['donatordays']} Days Left' />"; } $gn=""; global $staffpage; echo <<<OUT <li><b>Name: </b> $gn{$u} [{$ir['userid']}] $d</li> <li><b>Money:</b> {$fm} </li> <li><b>Level:</b> {$ir['level']} </li> <li><b>{$set['game_currency']}:</b> {$ir['crystals']}</b> </li> <hr /> <li><b>Energy:</b> {$ir['energy']}/{$ir['maxenergy']} <br /><img src=greenbar.png width=$enperc height=10><img src=redbar.png width=$enopp height=10></li> <li><b>Will:</b> {$ir['will']}/{$ir['maxwill']} <br /><img src=bluebar.png width=$wiperc height=10><img src=redbar.png width=$wiopp height=10></li> <li><b>Brave:</b> {$ir['brave']}/{$ir['maxbrave']} <br /><img src=yellowbar.png width=$brperc height=10><img src=redbar.png width=$bropp height=10></li> <li><b>Experience: {$experc}% </b><br /><img src=navybar.png width=$experc height=10><img src=redbar.png width=$exopp height=10></li> <li><b>Health:</b> {$hpperc}% <br /><img src=greenbar.png width=$hpperc height=10><img src=redbar.png width=$hpopp height=10></li> <br /> <li><b><a href="logout.php">Logout</a></b></li> </ul> </div> <div id="nav"> <!-- navigation bar on left side --> OUT; function menuarea() { global $db,$c,$userid, $set; include "mainmenu.php"; global $ir,$c; if($ir['hospital']) { print "<div id='ContentMainParent'><font color='red'><b>NOTE:</b></font> You are currently in hospital for {$ir['hospital']} minutes.</div><br/><br />"; } if($ir['jail']) { print "<div id='ContentMainParent'><font color='red'><b>NOTE:</b></font> You are currently in jail for {$ir['jail']} minutes.</div><br/><br />"; } { print "</div><div id='mainContentParent'>"; } } function smenuarea() { global $db,$c,$userid, $set; include "smenu.php"; global $ir,$c; print "</div><div id='mainContentParent'>"; } function endpage() { echo <<<OUT <div id="mainFooter"> </div> <!-- footer and copywrite --> </div> <!-- end of container div--> </body> </html> OUT; } } } ?>
-
Nice manual there Sniko, should help many!
-
Not sure how much you'd generate from turning it into a engine. I'd keep it as your baby to be honest. Look superb though!
-
Walk away from the project for a week or so, and you will come up with new inspiration. Also, watch what you say Especially the bolded bit, people may get offended. (Including me) People do suffer from clinical depression, it isn't just a "fashion statement" or something cool. It's a serious disease.
-
mccode-v1 Stock Market. Working + Secured
ChrisRowe replied to Haunted Dawg's topic in Free Modifications
Just to let you know, your missing a ; on the end of line 114 -
Problem solved btw. something had gone wrong with the install fine now
-
Someones got there knickers in a twist!
-
Comments on my mccodes game banner and how to improve
ChrisRowe replied to bmw11's topic in Requests & In Production
The text on the second one, is horrible im sorry -
Everyfield that is in the database, is in the staff panel, except "id" which is auto inc