Jump to content
MakeWebGames

Tcmaker

Members
  • Posts

    28
  • Joined

  • Last visited

    Never

Everything posted by Tcmaker

  1. A FREE Mobster game. Do what ya want. Mug, steal, Drive By, and Assassinate. These are all actions you can take to become Last Mobster's best! Donators within the game become Respected Mobsters with added features that enhance game play. http://www.lastmobster.com
  2. i like this but i want all my bars at the top below the banner and just the user information where it is now could someone change this for me thanks
  3. I need a crime system v1 that when a user fails they go to hosp or jail exactly like the v2 one basically but it needs to be working as i have tryed and tryed and cant get it to work please can someone test this for me as well just before posting thanks
  4. thank you so much guys
  5. I was thinking to stop people putting stupid names on games as there name a mod where they have to request to change name then this has to be approved by an admin but once they have submitted there name once they cant do this again till it has been approved or declined
  6. Tcmaker

    CagedMafia

    QUERY ERROR: Unknown system variable 'help1' Query was SET help1=0 WHERE userid=363 on register.php QUERY ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 Query was SELECT * FROM `fconoff` WHERE `userid` = loggedin.php
  7. Fully Tested Any Problems pm me business_home.php <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: homelogin.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid='".$userid."'",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); include_once (DIRNAME(__FILE__). '/bbcode_parser.php'); global $ir,$c; echo '<table width=65% align=center><tr><td align=center><p class="heading">Your Job<hr width="50%"></p>'; $check = mysql_query(sprintf("SELECT * FROM `businesses_members` WHERE (`bmembMember` = '%u')", $ir['userid'])); $check_two = mysql_query(sprintf("SELECT * FROM `businesses` WHERE (`busDirector` = '%u')", $ir['userid'])); if(!mysql_num_rows($check_two) AND !mysql_num_rows($check)) { echo 'You are not a member of a Company right now, come back another time.'; $h->endpage(); exit; } else { $r = mysql_fetch_array($check); $b = mysql_fetch_array($check_two); $fetch_business = mysql_query(sprintf("SELECT * FROM `businesses` LEFT JOIN `businesses_classes` ON (`classId` = `busClass`) WHERE (`busId` = '%u') OR (`busId` = '%u')", $r['bmembBusiness'], $b['busId'])); if(!mysql_num_rows($fetch_business)) { echo 'This Company does not exist at this time, please come back later.'; $h->endpage(); exit; } else { $inf = mysql_fetch_array($fetch_business); } } switch ($_GET['p']) { case 'leave_business': leave_business(); break; case 'view_members': view_members(); break; case 'donate_cash': donate_cash(); break; case 'view_vault': view_vault(); break; default: business_index(); break; } function business_index() { global $ir, $inf, $c; echo '[b]'.stripslashes($inf['busName']).' options:[/b] '; if($inf['busDirector'] == $ir['userid']) { echo '[url="business_manage.php"]Manage Company[/url] '; } else { echo '[url="business_home.php?p=view_vault"]Donate to the Company[/url] '; echo '[url="business_home.php?p=leave_business"]Leave the Company[/url] '; } echo '[url="business_home.php?p=view_members"]View members[/url] '; $fetch_business = mysql_query(sprintf("SELECT * FROM `businesses` LEFT JOIN `businesses_classes` ON (`classId` = `busClass`) LEFT JOIN `users` ON (`userid` = `busDirector`) WHERE (`busId` = '%u')", abs((int) $inf['busId']))); if(!mysql_num_rows($fetch_business)) { echo 'You cannot view a Company that doesn\'t exist .'; } else { $r = mysql_fetch_array($fetch_business); $fetch_memberinfo = mysql_query(sprintf("SELECT * FROM `businesses_members` WHERE `bmembMember` = '%u'", $ir['userid'])); $mem = mysql_fetch_array($fetch_memberinfo); $realrank = mysql_query(sprintf("SELECT * FROM `businesses_ranks` WHERE (`rankId` = '%u')", $mem['bmembRank'])); $rname = mysql_fetch_array($realrank); if($mem['bmembRank'] == 0) { $rank='dont have an assigned rank'; } else { $rank='work as a '.($rname['rankName']).''; } if($mem['bmembCash'] >= 0){ $mcash='£'.number_format($mem['bmembCash']).''; } if(!$rname['rankPGain'] AND !$rname['rankPrim'] AND !$rname['rankSGain'] AND !$rname['rankSec']) { $gaininfo='You also receive 50 labour, 50 intelligence and 50 strength every day.'; } else { $gaininfo='You also receive '.($rname['rankPGain']).' '.($rname['rankPrim']).' and '.($rname['rankSGain']).' '.($rname['rankSec']).' every day.'; } if($mem['bmembRank'] == 0) { $gaininfo='You also receive 0 labour, 0 intelligence and 0 strength every day.'; } if($ir['userid'] == $r['busDirector']) { $rank='are the owner'; } if($ir['userid'] == $r['busDirector']) { $gaininfo='You also receive 50 labour, 50 intelligence and 50 strength every day.'; } echo '<hr width="50%"> You currently '.stripslashes($rank).' at '.stripslashes($r['busName']).' which is owned by [url="viewuser.php?u='.$r['userid'].'"]'.stripslashes($r['username']).'[/url]. You are paid '.($mcash).' at midnight TIL time every day! '.($gaininfo).' <hr width="50%"> <table width="50%" class="table"> <tr> <th colspan="2">Details of '.stripslashes($r['busName']).' - '.stripslashes($r['className']).'</th> </tr> <tr> <td colspan="2"><center>'.($r['busDesc']).'</center></td> </tr> <tr height="100"> <td colspan="2" valign="middle" align="center">'; if($r['busImage']) { echo '[img='.stripslashes($r['busImage']).']'; } else { echo '[img=dimage.jpg]'; } if($r['brank'] < 1000) { $stars='[img=job_star.gif]'; } if($r['brank'] > 1000) { $stars='[img=job_star.gif] [img=job_star.gif]'; } if($r['brank'] > 5000) { $stars='[img=job_star.gif] [img=job_star.gif] [img=job_star.gif]'; } if($r['brank'] > 35000) { $stars='[img=job_star.gif] [img=job_star.gif] [img=job_star.gif] [img=job_star.gif]'; } if($r['brank'] > 100000) { $stars='[img=job_star.gif] [img=job_star.gif] [img=job_star.gif] [img=job_star.gif] [img=job_star.gif]'; } $fetch_members = mysql_num_rows(mysql_query(sprintf("SELECT * FROM `businesses_members` WHERE `bmembBusiness` = '%u'", $r['busId']))); $fetch_memberinfo = mysql_query(sprintf("SELECT * FROM `businesses_members` WHERE `bmembMember` = '%u'", $ir['userid'])); $mem = mysql_fetch_array($fetch_memberinfo); $cd = mysql_query(sprintf("SELECT * FROM `userstats` WHERE `userid` = '%u'", $ir['userid'])); $fstats = mysql_fetch_array($cd); $realrank = mysql_query(sprintf("SELECT * FROM `businesses_ranks` WHERE (`rankId` = '%u')", $mem['bmembRank'])); $rname = mysql_fetch_array($realrank); if($mem['bmembRank'] <= 0) { $rank='None'; } else { $rank=''.($rname['rankName']).''; } if($mem['bmembCash'] == 0) { $mcash='$<font color=red>-'.number_format($mem['bmembCash']).'</font>'; } else if($mem['bmembCash'] > 0) { $mcash='<font color=green>+'.number_format($mem['bmembCash']).'</font>'; } echo '</td></tr> <tr> <td colspan="2"><center>[b]<u>Company Rank[/b]</u> '.$stars.'</center></td> </tr> <tr> <th colspan="2">Further information</th> </tr> <tr height="150"> <td colspan="2" valign="middle" align="center"> <table width="100%"> <tr> <td> [b]Type:[/b] '.stripslashes($r['className']).' [b]Director:[/b] [url="viewuser.php?u='.$r['userid'].'"]'.stripslashes($r['username']).'[/url] [b]Company bank:[/b] $'.number_format($r['busCash']).' [b]Employees:[/b] '.number_format($fetch_members).'/'.($r['busEmployees']).' [b]Days old:[/b] '.number_format($r['busDays']).' </td> <td> [b]Your details[/b] [b]Rank: [/b]'.stripslashes($rank).'[/b] [b]Income: [/b]'.($mcash).' [b]labour: [/b]'.number_format($fstats['labour']).' [b]Intelligence: [/b]'.number_format($fstats['IQ']).' [b]Strength:[/b] '.number_format($fstats['strength']).' [b]Company points:[/b] '.number_format($ir['comppoints']).' [[url="companyspecials.php"]Use[/url]] </td> </tr> <tr> <td> [b]Todays profit:[/b] $'.number_format($r['busProfit']).' [b]Yesterdays profit:[/b] $'.number_format($r['busYProfit']).' [b]Todays customers:[/b] '.number_format($r['busCust']).' [b]Yesterdays customers:[/b] '.number_format($r['busYCust']).' <center></td> </tr> </table>'; } echo ' <table width="100%" class="table"> <tr> <th>Action</th> <th>Time</th> </tr>'; $business_alerts = mysql_query(sprintf("SELECT * FROM `businesses_alerts` WHERE `alertBusiness` = '%u' ORDER BY `alertTime` DESC LIMIT 25", $inf['busId'])); while($ba = mysql_fetch_array($business_alerts)) { echo ' <tr> <td width="50%">'.stripslashes($ba['alertText']).'</td> <td width="20%">'.date('d-m-Y, g:i:s A', $ba['alertTime']).'</td> </tr>'; } echo '</table></table>'; } function view_vault() { global $ir, $inf, $c; echo '<form action="business_home.php?p=donate_cash" method="post"> Your Company has '.number_format($inf['busCash']).' secured in it\'s vault. [b]Donate cash:[/b] Cash amount: <input type="text" name="cash" /> <input type="submit" value="Donate cash"></form>'; } function donate_cash() { global $ir, $inf, $c; $_POST['cash'] = abs(@intval($_POST['cash'])); if($_POST['cash'] > 0) { if($_POST['cash'] > $ir['money']) { echo 'You do not have enough cash to donate this much to the Company.'; } else { mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE `userid` = '%u'", $_POST['cash'], $ir['userid'])); mysql_query(sprintf("UPDATE `businesses` SET `busCash` = `busCash` + '%d' WHERE `busId` = '%u'", $_POST['cash'], $inf['busId'])); echo 'You have donated \$'.number_format($_POST['cash']).' to the Company.'; business_alert($inf['busId'], "".$ir['username']." donated $".number_format($_POST['cash'])." to the Company."); } } else { echo 'You missed one or more of the required fields.'; } } function leave_business() { global $ir, $inf, $c; if($inf['busDirector'] != $ir['userid']) { if(!$_GET['confirm']) { echo 'You are about to leave the '.$inf['busName'].' Company. Please confirm this action. [url="business_home.php?p=leave_business&confirm=1"]Leave the Company[/url]'; } else { mysql_query(sprintf("DELETE FROM `businesses_members` WHERE (`bmembMember` = '%u')", $ir['userid'])); mysql_query(sprintf("UPDATE `users` SET `business` = '0' WHERE (`userid` = '%u')", $ir['userid'])); echo 'You have decided to leave the Company.'; } } else { echo 'You cannot leave the Company while still the director.'; } } function view_members() { global $ir, $inf, $c; echo '<table width="60%" class="table"> <tr> <th width="50%">Member name</th> <th width="50%">Job rank</th> </tr>'; $fetch_members = mysql_query(sprintf("SELECT * FROM `businesses_members` LEFT JOIN `users` ON (`userid` = `bmembMember`) LEFT JOIN `businesses_ranks` ON (`rankId` = `bmembRank`) WHERE `bmembBusiness` = '%u'", $inf['busId'])); while($fm = mysql_fetch_array($fetch_members)) { echo ' <tr> <td>[url="viewuser.php?u='.$fm['userid'].'"]'.stripslashes($fm['username']).'[/url] ['.$fm['userid'].']</td> <td>'.stripslashes($fm['rankName']).' (£'.number_format($fm['bmembCash']).')</td> </tr>'; } echo '</table></table>'; } $h->endpage(); ?>
  8. mate are you going to post for free or still going to sell as either way i would like this copy as i need this for my game
  9. this guy maybe good at coding in v2 but certainly cant code in v1 well not as well as me
  10. its about a year old as im the one who requested it
  11. copy off another game mate
  12. yep they are
  13. cheers mate it worked :)
  14. this is my cron but it updates 25% but i want it to update 5 percent but it dont <?php require "mysql.php"; require "../../../../global_func.php"; global $c; mysql_query("UPDATE `users` SET `energy` = `energy` + 5 WHERE donatordays > 0"); mysql_query("UPDATE `users` SET `nerve` = `nerve` + 1 WHERE donatordays > 0"); mysql_query("UPDATE `users` SET `happy` = `happy` + 5 WHERE donatordays > 0"); ?>
  15. i have this working on mailbox but for some reason not on forums
  16. [align=justify]V1 converted and tested business_create.php [/align] <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: homelogin.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid='".$userid."'",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); global $ir,$c; $check = mysql_query(sprintf("SELECT * FROM `businesses` WHERE (`busDirector` = '%u')", $ir['userid'])); $check_member = mysql_query(sprintf("SELECT * FROM `businesses_members` WHERE (`bmembMember` = '%u')", $ir['userid'])); if($ir['level'] < 5) { die ('<table width=65% align=center><tr><td align=center>You must be at least Level 5 to begin a Company.</table>'); } if(mysql_num_rows($check) || mysql_num_rows($check_member)) { die ('<table width=65% align=center><tr><td align=center>You are part of a job/company at this time, leave to start a new one.</table>'); } echo '<table width=65% align=center><tr><td align=center><p class="heading">Create Company</p></table>'; $_POST['name'] = mysql_real_escape_string($_POST['name']); $_POST['class'] = abs(@intval($_POST['class'])); if($_POST['name'] AND $_POST['class']) { $fetch_class = mysql_query(sprintf("SELECT * FROM `businesses_classes` WHERE (`classId` = '%u')", $_POST['class'])); $check = mysql_query(sprintf("SELECT * FROM `businesses` WHERE (`busDirector` = '%u')", abs(@intval($ir['userid'])))); $check_member = mysql_query(sprintf("SELECT * FROM `businesses_members` WHERE (`bmembMember` = '%u')", abs(@intval($ir['userid'])))); if(!mysql_num_rows($fetch_class)) { echo '<table width=65% align=center><tr><td align=center>You cannot start a business in a class that doesn\'t exist.</table>'; } else { $r = mysql_fetch_array($fetch_class); if($ir['level'] < 5) { echo '<table width=65% align=center><tr><td align=center>You must be at least Level 5 to begin a Company.</table>'; } else if($ir['money'] < $r['classCost']) { echo '<table width=65% align=center><tr><td align=center>You cannot afford to start a business of this class right now.</table>'; } else if(mysql_num_rows($check) || mysql_num_rows($check_member)) { echo '<table width=65% align=center><tr><td align=center>You are part of a business at this time, leave to start a new one.</table>'; } else { mysql_query(sprintf("INSERT INTO `businesses` (`busId`, `busName`, `busClass`, `busDirector`, `busEmployees`) VALUES ('NULL','%s', '%d', '%u', '%u')", stripslashes($_POST['name']), $_POST['class'], abs(@intval($ir['userid'])), $r['classMembers'])); mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE `userid` = '%u'", $r['classCost'], abs(@intval($ir['userid'])))); $check = mysql_query(sprintf("SELECT * FROM `businesses` WHERE (`busDirector` = '%u')", abs(@intval($ir['userid'])))); $direct = mysql_fetch_array($check); mysql_query(sprintf("UPDATE `users` SET `business` = '%u' WHERE `userid` = '%u'", $direct['busId'], abs(@intval($ir['userid'])))); echo '<table width=65% align=center><tr><td align=center>The '.$_POST['name'].' business was created.</table>'; } } } else { echo '<table width=65% align=center><tr><td align=center><form action="business_create.php" method="post"> <p align="center"> [b]Create a new business:[/b] Please enter a name for the new business below, then select a class. Business name: <input type="text" name="name" /> Business class: <select name="class"> <option value="0">None</option>'; $select_classes = mysql_query("SELECT * FROM `businesses_classes` ORDER BY `classCost` ASC"); while($c = mysql_fetch_array($select_classes)) { echo '<option value="'.$c['classId'].'">'.stripslashes($c['className']).' ($'.number_format($c['classCost']).')</option>'; } echo '</select> <input type="submit" value="Create business" /></p> </form></table>'; } $h->endpage(); ?>
  17. Guys i going to convert to this to v1 so if i get stuck i may need some of your help
  18. guys there is no typo on images that just what i have called my images for some weird reason both of those show a blank image also this one work with images but doesnt show when the user is actually online if($r['laston'] >= time()-15*60) { $on="<img src=onlinee.png>"; } else { $on="<img src=offlinee.png>"; }
  19. i have added this code into my forum to show when people online if($r['laston'] >= time()-15*60) { $on="<img src=onlinee.png>"; } else { $on="<img src=offlinee.png>"; }   this is the bit that goes next to code for username {$on} the problem is it just show offline all the while can someone please correct the code for me please
  20. My forum topics is not showing i think its to do with this code can someone give me a fix please function viewtopic() { global $ir, $c, $userid, $h, $bbc, $db; $precache=array(); $q=mysql_query("SELECT * FROM forum_topics WHERE ft_id={$_GET['viewtopic']}",$c); $topic=mysql_fetch_array($q); $q2=mysql_query("SELECT * FROM forum_forums WHERE ff_id={$topic['ft_forum_id']}",$c); $forum=mysql_fetch_array($q2); if(($forum['ff_auth']=='gang' AND $ir['gang'] != $forum['ff_owner'] and $ir["user_level"] < 2) OR ($forum['ff_auth'] == 'staff' AND $ir['user_level'] < 2)) { print "You have no permission to view this forum. > [url='forums.php']Back[/url]"; $h->endpage(); exit; } print "<big>[url='forums.php']Forums Home[/url] >> [url='forums.php?viewforum={$forum[']{$forum['ff_name']}[/url] >> [url='forums.php?viewtopic={$_GET[']{$topic['ft_name']}[/url]</big> "; $posts_per_page=20; $posts_topic=$topic['ft_posts']; $pages=ceil($posts_topic/$posts_per_page); $st= ($_GET['st']) ? $_GET['st'] : 0; if($_GET['lastpost']) { $st=($pages-1)*20; } $pst=-20; print "Pages: "; for($i=1;$i<=$pages;$i++) { $pst+=20; print "<a href='forums.php?viewtopic={$topic['ft_id']}&st=$pst'>"; if($pst == $st) { print "[b]"; } print $i; if($pst == $st) { print "[/b]"; } print "</a>"; if($i % 25 == 0) { print " "; } } print " "; if($ir['user_level'] == 2 || $ir['user_level'] == 4) { print " <form action='forums.php?act=move&topic={$_GET['viewtopic']}' method='post'>[b]Move topic to:[/b] ".forum_dropdown($c, 'forum', -1)."<input type='submit' value='Move' /></form> [url='forums.php?act=pin&topic={$_GET['][img=sticky.jpg][/url] | [url='forums.php?act=lock&topic={$_GET['][img=lock.jpg][/url] | [url='forums.php?act=deletopic&topic={$_GET['][img=delete.gif][/url] "; } print " <table style='border-style:solid;border-width:1px;border-color:#303030;' width='100%' cellpadding='5'>"; $q3=mysql_query("SELECT * FROM forum_posts WHERE fp_topic_id={$topic['ft_id']} ORDER BY fp_time ASC LIMIT $st, 20",$c); $no=$st; while($r=mysql_fetch_array($q3)) { $qlink="[[url='forums.php?act=quote&viewtopic={$_GET[']Quote Post[/url]]"; if($ir['user_level'] > 1 || $ir['userid']==$r['fp_poster_id']) { $elink="[[url='forums.php?act=edit&post={$r[']Edit Post[/url]]"; } else { $elink=""; } $no++; if($ir['user_level'] != 1) { $slink="[[url='forumsig.php?ID={$r[']Delete Sig[/url]]"; } if($no > 1 && $ir['user_level'] != 1) { $dlink="[[url='forums.php?act=delepost&post={$r[']Delete Post[/url]]"; } else { $dlink=""; } $t=date('F j Y, g:i:s a',$r['fp_time']); if($r['fp_edit_count'] > 0) { $edittext="\n [i]Last edited by [url='viewuser.php?u={$r[']{$r['fp_editor_name']}[/url] at ".date('F j Y, g:i:s a',$r['fp_editor_time']).", edited [b]{$r['fp_edit_count']}[/b] times in total.[/i]"; } else { $edittext=""; } if(!$precache[$r['fp_poster_id']]['userid']) { $membq=mysql_query("SELECT * FROM users WHERE userid={$r['fp_poster_id']}",$c); $memb=mysql_fetch_array($membq); $precache[$memb['userid']]=$memb; } else { $memb=$precache[$r['fp_poster_id']]; } $rank=forums_rank($memb['posts']); $msg="{$memb['forums_avatar']}"; $msg=strip_tags($msg); if($memb['forums_avatar']) { $av="[img=$msg]"; } else { $av="[img=noav.gif]"; } if(!$memb['forums_signature']) { $memb['forums_signature']="No Signature"; } else {$memb['forums_signature']=$bbc->bbcode_parse($memb['forums_signature']); } $r['fp_text']=$bbc->bbcode_parse($r['fp_text']); print "<tr bgcolor='#404040'> <th align='center' width=20%>Post #{$no}</th> <th align='center'>Subject: {$r['fp_subject']} $t $qlink$slink$elink$dlink</th> </tr> <tr bgcolor='#404040'>"; $mycolor=""; if($memb['user_level'] == 2) { $mycolor="blue"; } if($memb['user_level'] == 1 && $memb['donatordays'] == 0) { $mycolor="gray"; } if($memb['user_level'] == 1 && $memb['donatordays'] > 0) { $mycolor="lightblue"; } if($memb['user_level'] == 4) { $mycolor="purple"; } if($memb['user_level'] == 3) { $mycolor="green"; } if($memb['user_level'] == 5) { $mycolor="orange"; } print"<td valign=top><center>[url='viewuser.php?u={$r[']<font color='$mycolor'>{$r['fp_poster_name']}</font>[/url] [{$r['fp_poster_id']}] Level: {$memb['level']}</br>Posts: {$memb['posts']}</br></br></br> $av </br></br> Rank:</br><font color=red>$rank</font></center></td> <td valign=top>{$r['fp_text']} {$edittext} ------------------- {$memb['forums_signature']}</td> </tr>"; } print "</table>"; $pst=-20; print "Pages: "; for($i=1;$i<=$pages;$i++) { $pst+=20; print "<a href='forums.php?viewtopic={$topic['ft_id']}&st=$pst'>"; if($pst == $st) { print "[b]"; } print $i; if($pst == $st) { print "[/b]"; } print "</a>"; if($i % 25 == 0) { print " "; } } if(!$topic['ft_locked']) { print <<<EOF [b]Post a reply to this topic:[/b] <form action='forums.php?reply={$topic['ft_id']}' method='post'> <table style='border-style:solid;border-width:1px;border-color:#303030;' width='80%' cellpadding='5'> <tr> <td align='right' bgcolor='#606060'>Subject:</td> <td align='left' bgcolor='#404040'><input type='text' name='fp_subject' /></td> </tr> <tr> <td align='right' bgcolor='#606060'>Post:</td> <td align='left' bgcolor='#404040'><textarea rows='7' cols='40' name='fp_text'></textarea></td> </tr> <tr bgcolor='#404040'> <th colspan='2' bgcolor='#404040'><input type='submit' value='Post Reply'></th> </tr> </table> </form> EOF; } else { print " [i]This topic has been locked, you cannot reply to it.[/i]"; } }
  21. well i cant get my item market page to show any ideas why i have tryed everything
  22. please can someone convert my header from v1 to v2 my addy is [email protected]
  23. How about a help desk mod where new people can ask questions about the game and this then goes to a seperate mailbox with a reply function to reply to there message
  24. V1 Is there any chance of getting this the same price but v1
×
×
  • Create New...