
Sam Fisher
Members-
Posts
21 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Sam Fisher
-
I guess you should buy an official mccodes license in order to use ravan script legally.This is because ravan is just a copy paste of mccodes + some changes ... And hostgator is a good hosting site
-
I am sure that RC Engine is not Mccodes because i programmed for couple of games using RC engine .....RC engine is different from because the way it is coded is totally different..........u cannot spot even a single page related to mccodes in that script.......Maybe many features are relating but they are not mccodes......
-
Looking to buy Chat System for the engine Ruthless City
Sam Fisher replied to Blade Maker's topic in Requests
I prefer you should buy Dave Macauly's Ajax Chat and convert it to RC Engine(if you are a coder) or else i can do that for you for no cost The reason i prefer dave's chat is because it is perfectly built and very easy to edit and easy to install.It is very flexible and is totally worth. -
nice...its great.
-
mccode-v2 New free advanced player report
Sam Fisher replied to Sam Fisher's topic in Free Modifications
I actually started studing the Mccodes engine recently and so i thought all those variables might come in handy but they dint. -
Hey MWG! Here i come with another free mod.I have decided to make and give away all the paid mods which are not worth of the charged money for free. Today i came up with am advanced report system in which the user can report a player,a staff,a bug or suggest an idea to the admin This mod come with a staff page which can be accessed only by the admin and they have to mark the report as "read" if they read it or if the report is solved or fixed than they can mark it as solved or fixed.The users of the game can view all the reports that are reported and can see weather the report is read by the admin or solved.This gives the user an idea of how the admins of the games are responding to the reports of the users. Open your "mainmenu.php" and search for <a href='logout.php'>Logout</a>< br /><br> and above that add the following code <a href='report_center.php'>Report Center</a>< br /> Now you can close your "mainmenu.php" file and now you have to open your" smenu.php" to add the link of the staff page of this mod to the main menu of the staff panel. Now search for > <a href='staff.php?action=announce'>Add Announcement</a>< br /> and above it add the following code > <a href='staff_reports.php'>View Reports</a>< br /> Now you have to create two files and upload it to your game server.So lets start with the main and the first file that is "report_center.php". Now add the following code in "report_center.php" <?php $brain_file=array(); $brain_file="globals.php"; include_once $brain_file; if(!$_GET['type'] && !$_GET['view']) { echo "<h2>Report Center</h2><hr width='75%' />"; if($ir['user_level'] > 1) { echo "<br /><center><a href='staff_reports.php'><b>Visit Staff Page</b></a></center><br />"; } echo "<table border='2' bordercolor='black' cellspacing='0' cellpadding='2' width='90%'><tr><td width='20%' valign='top'><b><u>Player Report:-</u></b></td><td width='60%'>If you wanna report about a player for scamming,having mulitple accounts,taking advantage of a game bug or being the middle man in tranfering money from multi accounts than you can choose this option</td><td width='20%' valign='top' align='center'> <a href='report_center.php?type=player'>Report</a> | <a href='report_center.php?view=1'>View Reports</a></td></tr> <tr><td width='20%' valign='top'><b><u>Bug Report</u></b></td><td width='60%'>If you find any bug in the game than feel free to report about it using our bug report center.</td><td width='20%' valign='top' align='center'><a href='report_center.php?type=bug'>Report</a> | <a href='report_center.php?view=2'>View Reports</a></td></tr> <tr><td width='20%' valign='top'><b><u>Staff Report</u></b></td><td width='60%'> If any staff in the game is threatening you or not doing his job than you can report about him in the staff report center.This problem will be solved by the game admin after some verifications </td><td width='20%' valign='top' align='center'><a href='report_center.php?type=staff'>Report</a> | <a href='report_center.php?view=3'>View Reports</a></td></tr> <tr><td width='2%' valign='top'><b><u>Suggestions</u></b></td><td width='60%'> If you wanna be a part in the improvment of the game by suggesting us ideas for visual improvment or modifications than feel free to suggest using our suggestions page. </td><td valign='top' width='20%' align='center'><a href='report_center.php?type=suggest'>Report</a> | <a href='report_center.php?view=4'>View Reports</a></td></tr> </table>"; } elseif($_GET['view']) { $_GET['view']=abs((int) $_GET['view']); if($_GET['view'] == '1') { $view_re=array(); $view_re="Player Reports"; } if($_GET['view'] == '2') { $view_re=array(); $view_re="Bug Reports"; } if($_GET['view'] == '3') { $view_re=array(); $view_re="Staff Reports"; } if($_GET['view'] == '4') { $view_re=array(); $view_re="Suggestions"; } echo "<hr width='75%' /> <h2>".$view_re."</h2><hr width='75%' />"; $report=array(); $report=$db->query("SELECT * FROM `reports` WHERE `r_type`='".$_GET['view']."' ORDER BY `r_id` DESC"); $ri=array(); while($ri=$db->fetch_row($report)) { $ru=array(); $ru=$db->fetch_row($db->query("SELECT * FROM `users` WHERE `userid`='".mysql_real_escape_string($ri['r_reporter'])."'")); if($ri['r_type'] == '1') { $rty=array(); $rty="Player Report"; } elseif($ri['r_type'] == '2') { $rty=array(); $rty="Bug Report"; } elseif($ri['r_type'] == '3') { $rty=array(); $rty="Staff Report"; } elseif($ri['r_type'] == '4') { $rty=array(); $rty="Suggestion"; } if($ri['r_fix'] == '1') { $rfi=array(); $rfi="<font Color='orange'>Read</font>"; } elseif($ri['r_fix'] == '2') { if($ri['r_type'] == '1' || $ri['r_type'] == '3') { $rfi=array(); $rfi='<font color="#090">Solved</font>'; } elseif($ri['r_type'] == '2') { $rfi=array(); $rfi='<font color="#090">Fixed</font>'; } elseif($ri['r_type'] == '4') { $rfi=array(); $rfi='<font color="#090">Usefull</font>'; } } else { $rfi=array(); $rfi="<Font color='#f90000'>Not read by admin</font>"; } $rti = date('F j Y', $ri['r_time']); echo "<table style='border:1px solid #888888;' cellspacing='0' cellpadding='2' width='75%'> <tr><td style='border:1px solid #888888;background:#eeeeee;' width='40%' align='left'> <b>Reporter:</b> <a href='viewuser.php?u=".$ru['userid']."'>".$ru['username']."</a> [".$ru['userid']."]<br />"; if($ri['r_type'] == '1' || $ri['r_type'] == '3') { $rvi=array(); $rvi=$db->fetch_row($db->query("SELECT * FROM `users` WHERE `userid`='".mysql_real_escape_string($ri['r_player'])."'")); echo "<b>Victim:</b> <a href='viewuser.php?u=".$rvi['userid']."'>".$rvi['username']."</a> [".$rvi['userid']."]<br />"; } echo "<b>Report:</b> ".$rty."<br />"; if($ri['r_type'] == '2') { if($ri['r_btype'] == '1') { $rbt=array(); $rbt="Attack "; } elseif($ri['r_btype'] == '2') { $rbt=array(); $rbt="Grammar"; } elseif($ri['r_btype'] == '3') { $rbt=array(); $rbt="Gang"; } elseif($ri['r_btype'] == '4') { $rbt=array(); $rbt="Crimes"; } elseif($ri['r_btype'] == '5') { $rbt=array(); $rbt="Jobs"; } elseif($ri['r_btype'] == '6') { $rbt=array(); $rbt="Forums"; } elseif($ri['r_btype'] == '7') { $rbt=array(); $rbt="Mail"; } else { $rbt=array(); $rbt="Other"; } echo "<b>Bug Type:</b> ".$rbt."<br />"; } if($ri['r_type'] == '4') { if($ri['r_stype'] == '1') { $rst=array(); $rst="New Feature"; } elseif($ri['r_stype'] == '2') { $rst=array(); $rst="Visual Appearance"; } elseif($ri['r_stype'] == '3') { $rst=array(); $rst="Forums/Chat"; } else { $rst=array(); $rst="Other"; } echo "<b>Suggestion Based On:</b> ".$rst."<br />"; } echo "<b>Posted On:</b> ".$rti."<br /> <b>Status:</b> ".$rfi." </td><td style='border:1px solid #888888;' width='60%' valign='top'> ".htmlentities($ri['r_report'])." </td> </tr></table><hr width='50%' /> "; } } else { if($_GET['type'] == 'player') { if($_POST['player_r'] && $_POST['preport']) { $_POST['player_r'] == mysql_real_escape_string($_POST['player_r']); $_POST['preport'] == htmlspecialchars($_POST['preport']); $c_v=array(); $c_v=$db->query("SELECT * FROM `users` WHERE `userid`='".$_POST['player_r']."'"); if($db->num_rows($c_v)) { $post_time=array(); $post_time = time(); $db->query("INSERT INTO `reports` VALUES('NULL','".$_POST['player_r']."','".$_POST['preport']."','1','0','0','0','".$post_time."' ,'".mysql_real_escape_string($userid)."')"); echo "<b>You sucessfully reported</b>"; } else { echo "<b>There Is No Player With That ID In The Game"; } } $_GET['type']=abs((int) $_GET['type']); echo "<h4>Player Report</h4>"; echo "<form actions='report_center.php?type=player' method='post'> <table style='border:1px solid #888888;' cellspacing='0' cellpadding='2' width='75%'> <tr><td style='border:1px solid #888888;background:#eeeeee;' width='35%' align='left'> <b>Player ID:-</b><br /> (Enter the ID of the player you wanna report)</td> <td align='center' style='border:1px solid #888888;background:#eeeeee;' width='65%'> <input type='text' style='border:1px solid #333333;width:90%;' name='player_r' /></td></tr> <tr><td style='border:1px solid #888888;background:#cccccc;' width='35%' align='left' valign='top'> <b>Report:-</b><br /> (Enter your complaint against the player)</td> <td align='center' valign='top' style='border:1px solid #888888;background:#cccccc;' width='65%'> <br /> <textarea rows='7' cols='43' name='preport' style='border:1px solid #333333;'></textarea> </td></tr> <tr><td style='border:1px solid #888888;background:#eeeeee;' align='center' colspan='2'> <input type='submit' value='Report' style='width:100%; border:1px solid #888888;cursor:pointer;' /> </td></tr></table> </form> "; } elseif($_GET['type'] == 'bug') { if($_POST['bug_r'] && $_POST['breport']) { $_POST['bug_r'] == mysql_real_escape_string($_POST['player_r']); $_POST['breport'] == htmlspecialchars($_POST['preport']); $post_time=array(); $post_time = time(); $db->query("INSERT INTO `reports` VALUES('NULL','0','".$_POST['breport']."','2','0','".$_POST['bug_r']."','0','".$post_time."' ,'".mysql_real_escape_string($userid)."')"); echo "<b>thank you for reporting the bug</b>"; } $_GET['type']=abs((int) $_GET['type']); echo "<h4>Bug Report</h4>"; echo "<form actions='report_center.php?type=bug' method='post'> <table style='border:1px solid #888888;' cellspacing='0' cellpadding='2' width='75%'> <tr><td style='border:1px solid #888888;background:#eeeeee;' width='35%' align='left'> <b>Bug Type:-</b><br /> (Select the type of bug.If your bug is not in the list,then mention about it in the report.)</td> <td align='center' style='border:1px solid #888888;background:#eeeeee;' width='65%'> <select style='border:1px solid #333333;width:90%;' name='bug_r'> <option value=''>SELECT</option> <option value='1'>Attacking</option> <option value='2'>Grammar</option> <option value='3'>Gangs</option> <option value='4'>Crimes</option> <option value='5'>Jobs</option> <option value='6'>Forum</option> <option value='7'>Mail</option> <option value='0'>Other</option> </select> </td></tr> <tr><td style='border:1px solid #888888;background:#cccccc;' width='35%' align='left' valign='top'> <b>Report:-</b><br /> (Give more details about the bug in the box.)</td> <td align='center' valign='top' style='border:1px solid #888888;background:#cccccc;' width='65%'> <br /> <textarea rows='7' cols='43' name='breport' style='border:1px solid #333333;'></textarea> </td></tr> <tr><td style='border:1px solid #888888;background:#eeeeee;' align='center' colspan='2'> <input type='submit' value='Report' style='width:100%; border:1px solid #888888;cursor:pointer;' /> </td></tr></table> </form>"; } elseif($_GET['type'] == 'staff') { if($_POST['staff_r'] && $_POST['sreport']) { $_POST['staff_r'] == mysql_real_escape_string($_POST['staff_r']); $_POST['sreport'] == htmlspecialchars($_POST['sreport']); $c_v=array(); $c_v=$db->query("SELECT * FROM `users` WHERE `userid`='".$_POST['staff_r']."' and `user_level` > 1"); if($db->num_rows($c_v)) { $post_time=array(); $post_time = time(); $db->query("INSERT INTO `reports` VALUES('NULL','".$_POST['staff_r']."','".$_POST['sreport']."','3','0','0','0','".$post_time."' ,'".mysql_real_escape_string($userid)."')"); echo "<b>You sucessfully reported</b>"; } else { echo "<b>There is no staff with that ID</b>"; } } $_GET['type']=abs((int) $_GET['type']); echo "<h4>Staff Report</h4>"; echo "<form actions='report_center.php?type=staff' method='post'> <table style='border:1px solid #888888;' cellspacing='0' cellpadding='2' width='75%'> <tr><td style='border:1px solid #888888;background:#eeeeee;' width='35%' align='left'> <b>Staff:-</b><br /> (Select The Staff against whome you want to complaint)</td> <td align='center' style='border:1px solid #888888;background:#eeeeee;' width='65%'> <select style='border:1px solid #333333;width:90%;' name='staff_r'><option value=''>SELECT</option>"; $staff_list=array(); $sl=array(); $staff_list=$db->query("SELECT * FROM `users` WHERE `user_level` > 1"); while($sl=$db->fetch_row($staff_list)) { echo "<option value='".$sl['userid']."'>".$sl['username']."</option>"; } echo "</select></td></tr> <tr><td style='border:1px solid #888888;background:#cccccc;' width='35%' align='left' valign='top'> <b>Report:-</b><br /> (Enter your complaint against the player)</td> <td align='center' valign='top' style='border:1px solid #888888;background:#cccccc;' width='65%'> <br /> <textarea rows='7' cols='43' name='sreport' style='border:1px solid #333333;'></textarea> </td></tr> <tr><td style='border:1px solid #888888;background:#eeeeee;' align='center' colspan='2'> <input type='submit' value='Report' style='width:100%; border:1px solid #888888;cursor:pointer;' /> </td></tr></table> </form>"; } elseif($_GET['type'] == 'suggest') { if($_POST['sug'] && $_POST['suggest']) { $_POST['sug'] == mysql_real_escape_string($_POST['sug']); $_POST['suggest'] == htmlspecialchars($_POST['suggest']); $post_time=array(); $post_time = time(); $db->query("INSERT INTO `reports` VALUES('NULL','0','".$_POST['suggest']."','4','0','0','".$_POST['sug']."','".$post_time."' ,'".mysql_real_escape_string($userid)."')"); echo "<b>thank you for suggesting</b>"; } $_GET['type']=abs((int) $_GET['type']); echo "<h4>Suggestions</h4>"; echo "<form actions='report_center.php?type=suggest' method='post'> <table style='border:1px solid #888888;' cellspacing='0' cellpadding='2' width='75%'> <tr><td style='border:1px solid #888888;background:#eeeeee;' width='35%' align='left'> <b>Idea For:-</b></td> <td align='center' style='border:1px solid #888888;background:#eeeeee;' width='65%'> <select style='border:1px solid #333333;width:90%;' name='sug'> <option value=''>SELECT</option> <option value='1'>New Game Features</option> <option value='2'>Visual Appearances</option> <option value='3'>Forums Or Chat</option> <option value='0'>Other</option> </select> </td></tr> <tr><td style='border:1px solid #888888;background:#cccccc;' width='35%' align='left' valign='top'> <b>Report:-</b><br /> (include as much details of your suggestions as possible)</td> <td align='center' valign='top' style='border:1px solid #888888;background:#cccccc;' width='65%'> <br /> <textarea rows='7' cols='43' name='suggest' style='border:1px solid #333333;'></textarea> </td></tr> <tr><td style='border:1px solid #888888;background:#eeeeee;' align='center' colspan='2'> <input type='submit' value='Suggest' style='width:100%; border:1px solid #888888;cursor:pointer;' /> </td></tr></table> </form>"; } } $h->endpage(); ?> Now save your "report_center.php" and close it. Lets create the staff file which you have to name it as "staff_reports.php" and than add the following code <?php $brain=array(); $brain='sglobals.php'; include_once $brain; if ($ir['user_level'] < 1) { Echo "You are Restricted From Entering This Page"; $h->endpage(); die(); } if (!isset($_GET['view'])) { $_GET['view'] = 'index'; } switch ($_GET['view']) { case 'reports': view_report(); break; default: index(); break; } function index() { global $db, $ir, $c, $h, $userid, $set, $_CONFIG; if ($ir['user_level'] > 1) { echo " <h3>Report Center </h3> <hr /> <table width='90%' cellspacing='1' class='table'> <tr> <th width='20%'>Player Reports:</th> <td width='60%'>There Are total ".$db->num_rows($db->query("SELECT * FROM `reports` WHERE `r_type`='1'"))." player(s) reported.Among which ".$db->num_rows($db->query("SELECT * FROM `reports` WHERE `r_type`='1' and `r_fix` = '0'"))." reports are not solved or read. </td> <td align='center'>(<a href='staff_reports.php?view=reports&type=1'>View Reports</a>)</td> </tr> <tr> <th width='20%'>Bug Reports:</th> <td width='60%'>There Are total ".$db->num_rows($db->query("SELECT * FROM `reports` WHERE `r_type`='2'"))." bug(s) reported.Among which ".$db->num_rows($db->query("SELECT * FROM `reports` WHERE `r_type`='2' and `r_fix` = '0'"))." bug(s) are not fixed or fixed yet. </td> <td align='center'>(<a href='staff_reports.php?view=reports&type=2'>View Reports</a>)</td> </tr> <tr> <th width='20%'>Staff Reports:</th> <td width='60%'>There Are total ".$db->num_rows($db->query("SELECT * FROM `reports` WHERE `r_type`='3'"))." staff(s) reported.Among which ".$db->num_rows($db->query("SELECT * FROM `reports` WHERE `r_type`='3' and `r_fix` = '0'"))." are not solved or fixed yet. </td> <td align='center'>(<a href='staff_reports.php?view=reports&type=3'>View Reports</a>)</td> </tr> <tr> <th width='20%'>Suggestions:</th> <td width='60%'>There Are ".$db->num_rows($db->query("SELECT * FROM `reports` WHERE `r_type`='4'"))." idea(s) suggested.Among which ".$db->num_rows($db->query("SELECT * FROM `reports` WHERE `r_type`='4' and `r_fix` = '0'"))." are not read by the admin. </td> <td align='center'>(<a href='staff_reports.php?view=reports&type=4'>View Reports</a>)</td> </tr> </table><hr /> "; } } function view_report() { global $db, $ir, $c, $h, $userid, $set, $_CONFIG; if ($ir['user_level'] > 1) { if(!$_GET['type']) { echo "No Reports Selected"; $h->endpage(); die(); } if($_GET['type'] == '1') { $view_re=array(); $view_re="Player Reports"; } if($_GET['type'] == '2') { $view_re=array(); $view_re="Bug Reports"; } if($_GET['type'] == '3') { $view_re=array(); $view_re="Staff Reports"; } if($_GET['type'] == '4') { $view_re=array(); $view_re="Suggestions"; } echo "<hr width='75%' /> <h2>".$view_re."</h2><hr width='75%' />"; if($_GET['action'] && $_GET['rid']) { $_GET['action']=abs((int) $_GET['action']); $_GET['rid']=abs((int) $_GET['rid']); $db->query("UPDATE `reports` SET `r_fix`='".$_GET['action']."' WHERE `r_id`='".mysql_real_escape_string($_GET['rid'])."'"); echo "You have marked this report as "; if($_GET['action'] == '1') { echo "read"; } elseif($_GET['action'] == '2') { $rtyp=array(); $rtyp=$db->fetch_row($db->query("SELECT * FROM `reports` WHERE `r_id`='".mysql_real_escape_string($_GET['rid'])."'")); if($rtyp['r_type'] == '1' || $rtyp['r_type'] == '3') { $rfi=array(); $rfi='Solved'; echo $rfi; } elseif($rtyp['r_type'] == '2') { $rfi=array(); $rfi='Fixed'; echo $rfi; } elseif($rtyp['r_type'] == '4') { $rfi=array(); $rfi='Usefull'; echo $rfi; } } $h->endpage(); die(); } elseif($_GET['action'] || $_GET['rid']) { echo "You either dint select a report or you dint select an action"; $h->endpage(); } $_GET['type']=abs((int) $_GET['type']); $report=array(); $report=$db->query("SELECT * FROM `reports` WHERE `r_type`='".$_GET['type']."' ORDER BY `r_id` DESC"); $ri=array(); while($ri=$db->fetch_row($report)) { $ru=array(); $ru=$db->fetch_row($db->query("SELECT * FROM `users` WHERE `userid`='".mysql_real_escape_string($ri['r_reporter'])."'")); if($ri['r_type'] == '1') { $rty=array(); $rty="Player Report"; } elseif($ri['r_type'] == '2') { $rty=array(); $rty="Bug Report"; } elseif($ri['r_type'] == '3') { $rty=array(); $rty="Staff Report"; } elseif($ri['r_type'] == '4') { $rty=array(); $rty="Suggestion"; }if($ri['r_fix'] == '1') { $rfi=array(); $rfi="<font Color='orange'>Read</font>"; } elseif($ri['r_fix'] == '2') { if($ri['r_type'] == '1' || $ri['r_type'] == '3') { $rfi=array(); $rfi='<font color="#090">Solved</font>'; } elseif($ri['r_type'] == '2') { $rfi=array(); $rfi='<font color="#090">Fixed</font>'; } elseif($ri['r_type'] == '4') { $rfi=array(); $rfi='<font color="#090">Usefull</font>'; } } else { $rfi=array(); $rfi="<Font color='#f90000'>Not read by admin</font>"; } $rti = date('F j Y', $ri['r_time']); echo "<table style='border:1px solid #888888;' cellspacing='0' cellpadding='2' width='75%'> <tr><td style='border:1px solid #888888;background:#eeeeee;' width='40%' align='left'> <b>Reporter:</b> <a href='viewuser.php?u=".$ru['userid']."'>".$ru['username']."</a> [".$ru['userid']."]<br />"; if($ri['r_type'] == '1' || $ri['r_type'] == '3') { $rvi=array(); $rvi=$db->fetch_row($db->query("SELECT * FROM `users` WHERE `userid`='".mysql_real_escape_string($ri['r_player'])."'")); echo "<b>Victim:</b> <a href='viewuser.php?u=".$rvi['userid']."'>".$rvi['username']."</a> [".$rvi['userid']."]<br />"; } echo "<b>Report:</b> ".$rty."<br />"; if($ri['r_type'] == '2') { if($ri['r_btype'] == '1') { $rbt=array(); $rbt="Attack "; } elseif($ri['r_btype'] == '2') { $rbt=array(); $rbt="Grammar"; } elseif($ri['r_btype'] == '3') { $rbt=array(); $rbt="Gang"; } elseif($ri['r_btype'] == '4') { $rbt=array(); $rbt="Crimes"; } elseif($ri['r_btype'] == '5') { $rbt=array(); $rbt="Jobs"; } elseif($ri['r_btype'] == '6') { $rbt=array(); $rbt="Forums"; } elseif($ri['r_btype'] == '7') { $rbt=array(); $rbt="Mail"; } else { $rbt=array(); $rbt="Other"; } echo "<b>Bug Type:</b> ".$rbt."<br />"; } if($ri['r_type'] == '4') { if($ri['r_stype'] == '1') { $rst=array(); $rst="New Feature"; } elseif($ri['r_stype'] == '2') { $rst=array(); $rst="Visual Appearance"; } elseif($ri['r_stype'] == '3') { $rst=array(); $rst="Forums/Chat"; } else { $rst=array(); $rst="Other"; } echo "<b>Suggestion Based On:</b> ".$rst."<br />"; } echo "<b>Posted On:</b> ".$rti."<br /> <b>Status:</b> ".$rfi."<br />"; if($ir['user_level'] == '2') { if($_GET['type'] == '1' || $_GET['type'] == '3') { $fixed=array(); $fixed='Solved'; } elseif($_GET['type'] == '2') { $fixed=array(); $fixed='Fixed'; } else { $fixed=array(); $fixed='Usefull'; } echo "<a href='staff_reports.php?view=reports&type=".$_GET['type']."&action=1&rid=".$ri['r_id']."'>Mark As read</a> | "; echo "<a href='staff_reports.php?view=reports&type=".$_GET['type']."&action=2&rid=".$ri['r_id']."'>Mark As ".$fixed."</a>"; } echo "</td><td style='border:1px solid #888888;' width='60%' valign='top'> ".htmlentities($ri['r_report'])." </td> </tr></table><hr width='50%' /> "; } } } $h->endpage(); ?> now you guys have to save and clode your "staff_reports.php" and run the following SQL CREATE TABLE IF NOT EXISTS `reports` ( `r_id` int(11) NOT NULL AUTO_INCREMENT, `r_player` int(11) NOT NULL, `r_report` text NOT NULL, `r_type` int(11) NOT NULL, `r_fix` int(11) NOT NULL, `r_btype` int(11) NOT NULL, `r_stype` int(11) NOT NULL, `r_time` int(11) NOT NULL, `r_reporter` int(11) NOT NULL, PRIMARY KEY (`r_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ; And than you guys are done with the mod. I have just realized that the PHP tag in this forum dont read the <br /> tag.I am going to upload the mod to McCodes.com and maybe till tomorow it will be shown in the list because the admin have to pass the mod. Please forgive me if you find any bug.If you need any kind of help with any of my free or paid mod than you can freely contact me and ask for help. Hope you guys find it usefull Thank you, -Sam Fisher
-
maybe you are missing a field in the query
-
Sorry for the problems you guys are facing.Sow you guys can find this mod on McCodes.com and here is the link to it. http://mccodes.com/viewmod.php?id=108
-
Sorry anonymous actually alot of instructions are to be followed and alot of codes have to be added..so i found it better to upload it on a filesharing site.
-
Hi guys! I have made an Advanced Referral System For McCodes V2. It is an advanced version of the referral system.The referrer will be rewarded when they refer someone to the game and every 10 levels gained by the referred player, the referrer will be rewarded with better rewards that can be set by the admin in the staff panel. This mod is free and if anyone have problem installing can PM me and ask me for help. I am sorry if this mod have any Bugs.If you find any bug than directly PM me stating the bug. Sorry for the problems you guys faced when i uploaded it on a filesharing site but now you can find this mod in McCodes.com in the free mods section of Mccode v2 here is the link:http://mccodes.com/viewmod.php?id=108 -Sam Fisher
-
Hmm...intresting Thanks for the ideas.
-
Sounds Good Bertrand,Can you give me a list of Mods That i can make?
-
Hi Guys i just Came Back to programming after a break of one year.And i am ready to provide my free services.I am ready to do any small or big project for free.I will provide my free service only once per person I have 3 years of experience excluding the 1 year break.I started programming 4 years ago I have knowledge of the following Programming Languages -PHP -MySql -CSS -Jquery -HTML Anyone interested or need some help with their game can freely PM Me -Sam Fisher
-
On line 262 and 263 replace $result = mysql_query("UPDATE users SET hp = $r['hp'] WHERE userid=$r['userid']", $c) or die(mysql_error()); $result = mysql_query("UPDATE users SET hp = $ir['hp'] WHERE userid=$userid", $c) or die(mysql_error()); with $result = mysql_query("UPDATE users SET hp = {$r['hp']} WHERE userid={$r['userid']}", $c) or die(mysql_error()); $result = mysql_query("UPDATE users SET hp = {$ir['hp']} WHERE userid={$userid}", $c) or die(mysql_error()); hope it works
-
I was looking for a partner and now that problem is solved because me and skooda are partners of the game Wise Crime
-
I saw your staff.php and i noticed that on line 273 you opened the echo tag using a single quote and closed it using double quote
-
After reading all the comments i have decided to make some free mods for new world engine to prove myself
-
I am just looking for some work and now after reading some of the comments i think i need a portfolio to prove myself
-
I dont have any portfolio and never taught of it because i am the one who get clients by searching in newspapers.
-
I am perfect with PHP,MySQL,HTML.I am not very good in JQuery but i can programme using Jquery
-
Hello Make Web Games!! I am new to this community and new to Text Based Games but i am a programmer with three years of work experience.I have never worked for a text based games but I have worked for a lot of companies.Currently i have a lot of free time so i am looking for some job and want to enter some text based gaming world.My friend have suggested me this community telling that i will get many serious clients.