
mixmaster
Members-
Posts
194 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by mixmaster
-
Just to let you know , seen as you are able to show the user their password , i would think of upgrading to a new password encryption (im guessing you have kept the encryption mccodes used "md5"
-
Your not actually fetching anything from the database ? , you just saving it as a variable ?
-
Well i haven't read through the entire script but yes line 212
-
Give the elseif a condition or make it just an "else"
-
echo "<td align='center'><form action='?action=staffaps' method='post'> <input type='hidden' name='pos' value='{$r['position']}'><input type='hidden' name='ID' value='{$r['ID']}'>{$pos}</td> <td>{$r['about']}</td><td>{$r['exp']}</td><td><a href='viewuser.php?u={$r['userid']}'>{$usr['username']}</a></td> <td>Accept: <input type='radio' name='accept' value='1'> Decline: <input type='radio' name='accept' value='2'>
-
Your welcome , would have been done quicker if it wasn't 2.13am :p
-
Proposer: <a href='viewuser.php?u=".$ir['userid']."''>".abs(intval(htmlentities($r['username'])))."</a>
-
never mind lol , got it , just abit tired <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.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(); $m=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($_GET['pro'])).""); $r=mysql_fetch_array($m); $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false; switch($_GET['action']) { case "accept"; accept(); break; case "decline"; decline(); break; case "decision"; decision(); break; case "proposeform"; proposeform(); break; case "proposesubmit"; proposesubmit(); break; default: index(); break; } if (!in_array($_GET['action'], array('propose', 'proposesubmit', 'proposeform', 'decision', 'decline', 'accept'))) { print "Action Not Understood!"; $h->endpage(); exit; } function index() { global $db,$ir,$c,$h,$userid; if ($ir['married'] != 0) { echo "You are already married"; exit($h->endpage()); } else { print"<h1>Proposal Center</h1> Do you want to propose to someone? <form action='marriage.php?action=proposeform' method='post'> <input type='submit' class='submit' value='Yes.'> </form> <form action='index.php' method='get'> <input type='submit' class='submit' value='No.'> </form>"; } } function proposeform() { global $db,$ir,$c,$h,$userid; if ($ir['married'] != 0) { echo"You are already married"; exit($h->endpage()); } else { print"<h1>Proposal Center</h1> <form action='marriage.php?action=proposesubmit' method='post'> Please enter the user id of the user you want to propose to: User ID: <input type='text' name='propose' /> Message: <input type='text' name='message' /> <input type='submit' value='Propose' /></form>"; } } function proposesubmit() { global $db,$r,$ir,$c,$h,$userid; $m=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($_POST['propose'])).""); $r=mysql_fetch_array($m); if ($r['married'] != 0) { echo "This person is already married. Sorry. Try someone else."; exit($h->endpage()); } if ($ir['married'] != 0) { echo "You are already married"; exit($h->endpage()); } if ($ir['userid'] == $_POST['propose']) { echo "You cannot marry yourself"; exit($h->endpage()); } if ($_POST['propose'] <= 0) { echo"Invalid user, Try someone else."; exit($h->endpage()); } else { $ch=mysql_query("SELECT * FROM proposals WHERE proPROPOSED=".abs(intval($_POST['propose'])).""); if (mysql_num_rows($ch)!=0) { echo "This user already has a pending proposal, please try again later <a href=index.php>> Back</a>"; exit($h->endpage()); } else { $m=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($_POST['propose'])).""); $r=mysql_fetch_array($m); mysql_query("INSERT INTO proposals VALUES('', '{$ir['userid']}', '".abs(intval($_POST['propose']))."', '".mysql_real_escape_string($_POST['message'])."')"); event_add(abs(intval($_POST['propose'])),"<a href='viewuser.php?u=$userid'>".htmlentities($ir['username'])." [".abs(intval($ir['userid']))."]</a> proposed to you click <a href='marriage.php?action=decision'><u>HERE</u></a> to make your mind up.</a> ",$c); print"<h3>Proposal Center</h3> You proposed to ".htmlentities($r['username'])." [".abs(intval($r['userid']))."], please wait for their decision "; } } } function decision() { global $ir,$db,$h,$userid; $m=mysql_query("SELECT * FROM proposals WHERE proPROPOSED=".abs(intval($ir['userid'])).""); if (mysql_num_rows($m)==0) { echo"Nobody has proposed to you! <a href=index.php>> Back</a>"; exit($h->endpage()); } else { $pro=mysql_fetch_array($m); $f=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($pro['proPROPOSER'])).""); $r=mysql_fetch_array($f); print"<h3>Decision Center</h3> <center><table width=90% cellspacing=1 class=table border=1 bordercolor=#636363></center><tr><td> Proposer: <a href='viewuser.php?u="$ir['userid']."'>".abs(intval(htmlentities($r['username'])))."</a> </td> <td>Message: ".htmlentities($pro['proMESSAGE'])." </td> <td>Decision: <a href='marriage.php?action=accept&pro=".abs(intval( $pro['userid']))."'><font color='#666666'>Accept</font></a> <font color='#666666'>or</font> <a href='marriage.php?action=decline&pro=".abs(intval ($pro['userid']))."'><font color='#666666'>Decline</font></a></td></tr></table>"; } } function accept() { global $ir,$userid,$db,$h; if ($r['married'] != 0) { echo"This person is already married. Sorry. Try someone else."; exit($h->endpage()); } if($ir['married'] != 0) { print "You are already married"; $h->endpage(); exit(); } $m=mysql_query("SELECT * FROM proposals WHERE (`proID` = ".abs(intval($_GET['pro'])).") AND (`proPROPOSED` = $userid)"); if(!mysql_num_rows($m)) { echo ('You\'ve clicked an invalid link, please report to an administrator.'); $h->endpage(); exit(); } else { $m=mysql_query("SELECT * FROM proposals WHERE proID=".abs(intval($_GET['pro']))." AND proPROPOSED=$userid"); $pro=mysql_fetch_array($m); mysql_query("UPDATE `users` SET `married` =".abs(intval($pro['proPROPOSER']))." WHERE (`userid` = $userid)"); mysql_query("UPDATE `users` SET `married` =".abs(intval($pro['proPROPOSED']))." WHERE (`userid` = ".abs(intval($pro['proPROPOSER'])).")"); mysql_query("DELETE FROM proposals WHERE (proID=".abs(intval($pro['proID'])).")"); $mr=mysql_query("SELECT * FROM `users` WHERE (`userid` =".abs(intval($pro['proPROPOSER'])).")"); $par=mysql_fetch_array($mr); event_add($par['userid'],"Your proposal for <a href='viewuser.php?u=".abs(intval($ir['userid']))."'>".htmlentities($ir['username'])."</a> was accepted",$c); print "You married ".htmlentities($par['username'])." !!! "; } } function decline() { global $ir,$userid,$db,$h; $_GET['pro'] = isset($_GET['pro']) && is_numeric($_GET['pro']) ? abs(@intval($_GET['pro'])) : false; if(!$_GET['pro']) { echo "Stop abusing our marriage system!"; exit($h->endpage()); } $m=mysql_query("SELECT * FROM proposals WHERE proID=".abs(intval($_GET['pro']))." AND proPROPOSED=$userid"); if (mysql_num_rows($m) == 0) { print "Invalid proposal or this is not your proposal"; } else { $pro=mysql_fetch_array($m); mysql_query("DELETE FROM proposals WHERE proID=".abs(intval($pro['proID'])).""); $mr=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($pro['proPROPOSER'])).""); $par=mysql_fetch_array($mr); event_add($par['userid'],"".htmlentities($ir['username'])." [".abs(intval($ir['userid']))."] has declined your proposal",$c); print"You declined the proposal from ".htmlentities($par['username'])."! "; } } $h->endpage(); ?>
-
Try now <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.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(); $m=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($_GET['pro'])).""); $r=mysql_fetch_array($m); $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false; switch($_GET['action']) { case "accept"; accept(); break; case "decline"; decline(); break; case "decision"; decision(); break; case "proposeform"; proposeform(); break; case "proposesubmit"; proposesubmit(); break; default: index(): break; } if (!in_array($_GET['action'], array('propose', 'proposesubmit', 'proposeform', 'decision', 'decline', 'accept'))) { print "Action Not Understood!"; $h->endpage(); exit; } function index() { global $db,$ir,$c,$h,$userid; if ($ir['married'] != 0) { echo "You are already married"; exit($h->endpage()); } else { print"<h1>Proposal Center</h1> Do you want to propose to someone? <form action='marriage.php?action=proposeform' method='post'> <input type='submit' class='submit' value='Yes.'> </form> <form action='index.php' method='get'> <input type='submit' class='submit' value='No.'> </form>"; } } function proposeform() { global $db,$ir,$c,$h,$userid; if ($ir['married'] != 0) { echo"You are already married"; exit($h->endpage()); } else { print"<h1>Proposal Center</h1> <form action='marriage.php?action=proposesubmit' method='post'> Please enter the user id of the user you want to propose to: User ID: <input type='text' name='propose' /> Message: <input type='text' name='message' /> <input type='submit' value='Propose' /></form>"; } } function proposesubmit() { global $db,$r,$ir,$c,$h,$userid; $m=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($_POST['propose'])).""); $r=mysql_fetch_array($m); if ($r['married'] != 0) { echo "This person is already married. Sorry. Try someone else."; exit($h->endpage()); } if ($ir['married'] != 0) { echo "You are already married"; exit($h->endpage()); } if ($ir['userid'] == $_POST['propose']) { echo "You cannot marry yourself"; exit($h->endpage()); } if ($_POST['propose'] <= 0) { echo"Invalid user, Try someone else."; exit($h->endpage()); } else { $ch=mysql_query("SELECT * FROM proposals WHERE proPROPOSED=".abs(intval($_POST['propose'])).""); if (mysql_num_rows($ch)!=0) { echo "This user already has a pending proposal, please try again later <a href=index.php>> Back</a>"; exit($h->endpage()); } else { $m=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($_POST['propose'])).""); $r=mysql_fetch_array($m); mysql_query("INSERT INTO proposals VALUES('', '{$ir['userid']}', '".abs(intval($_POST['propose']))."', '".mysql_real_escape_string($_POST['message'])."')"); event_add(abs(intval($_POST['propose'])),"<a href='viewuser.php?u=$userid'>".htmlentities($ir['username'])." [".abs(intval($ir['userid']))."]</a> proposed to you click <a href='marriage.php?action=decision'><u>HERE</u></a> to make your mind up.</a> ",$c); print"<h3>Proposal Center</h3> You proposed to ".htmlentities($r['username'])." [".abs(intval($r['userid']))."], please wait for their decision "; } } } function decision() { global $ir,$db,$h,$userid; $m=mysql_query("SELECT * FROM proposals WHERE proPROPOSED=".abs(intval($ir['userid'])).""); if (mysql_num_rows($m)==0) { echo"Nobody has proposed to you! <a href=index.php>> Back</a>"; exit($h->endpage()); } else { $pro=mysql_fetch_array($m); $f=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($pro['proPROPOSER'])).""); $r=mysql_fetch_array($f); print"<h3>Decision Center</h3> <center><table width=90% cellspacing=1 class=table border=1 bordercolor=#636363></center><tr><td> Proposer: <a href='viewuser.php?u="$ir['userid']."'>".abs(intval(htmlentities($r['username'])))."</a> </td> <td>Message: ".htmlentities($pro['proMESSAGE'])." </td> <td>Decision: <a href='marriage.php?action=accept&pro=".abs(intval( $pro['userid']))."'><font color='#666666'>Accept</font></a> <font color='#666666'>or</font> <a href='marriage.php?action=decline&pro=".abs(intval ($pro['userid']))."'><font color='#666666'>Decline</font></a></td></tr></table>"; } } function accept() { global $ir,$userid,$db,$h; if ($r['married'] != 0) { echo"This person is already married. Sorry. Try someone else."; exit($h->endpage()); } if($ir['married'] != 0) { print "You are already married"; $h->endpage(); exit(); } $m=mysql_query("SELECT * FROM proposals WHERE (`proID` = ".abs(intval($_GET['pro'])).") AND (`proPROPOSED` = $userid)"); if(!mysql_num_rows($m)) { echo ('You\'ve clicked an invalid link, please report to an administrator.'); $h->endpage(); exit(); } else { $m=mysql_query("SELECT * FROM proposals WHERE proID=".abs(intval($_GET['pro']))." AND proPROPOSED=$userid"); $pro=mysql_fetch_array($m); mysql_query("UPDATE `users` SET `married` =".abs(intval($pro['proPROPOSER']))." WHERE (`userid` = $userid)"); mysql_query("UPDATE `users` SET `married` =".abs(intval($pro['proPROPOSED']))." WHERE (`userid` = ".abs(intval($pro['proPROPOSER'])).")"); mysql_query("DELETE FROM proposals WHERE (proID=".abs(intval($pro['proID'])).")"); $mr=mysql_query("SELECT * FROM `users` WHERE (`userid` =".abs(intval($pro['proPROPOSER'])).")"); $par=mysql_fetch_array($mr); event_add($par['userid'],"Your proposal for <a href='viewuser.php?u=".abs(intval($ir['userid']))."'>".htmlentities($ir['username'])."</a> was accepted",$c); print "You married ".htmlentities($par['username'])." !!! "; } } function decline() { global $ir,$userid,$db,$h; $_GET['pro'] = isset($_GET['pro']) && is_numeric($_GET['pro']) ? abs(@intval($_GET['pro'])) : false; if(!$_GET['pro']) { echo "Stop abusing our marriage system!"; exit($h->endpage()); } $m=mysql_query("SELECT * FROM proposals WHERE proID=".abs(intval($_GET['pro']))." AND proPROPOSED=$userid"); if (mysql_num_rows($m) == 0) { print "Invalid proposal or this is not your proposal"; } else { $pro=mysql_fetch_array($m); mysql_query("DELETE FROM proposals WHERE proID=".abs(intval($pro['proID'])).""); $mr=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($pro['proPROPOSER'])).""); $par=mysql_fetch_array($mr); event_add($par['userid'],"".htmlentities($ir['username'])." [".abs(intval($ir['userid']))."] has declined your proposal",$c); print"You declined the proposal from ".htmlentities($par['username'])."! "; } } $h->endpage(); ?>
-
Yep , i know lol , i wil be done in a min (hopefully) :p
-
Try this <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.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(); $m=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($_GET['pro'])).""); $r=mysql_fetch_array($m); $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false; switch($_GET['action']) { case "accept": accept(); break; case "decline": decline(); break; case "decision": decision(); break; case "proposeform": proposeform(); break; case "proposesubmit": proposesubmit(); break; default: index(): break; } if (!in_array($_GET['action'], array('propose', 'proposesubmit', 'proposeform', 'decision', 'decline', 'accept'))) { print "Action Not Understood!"; $h->endpage(); exit; } function index() { global $db,$ir,$c,$h,$userid; if ($ir['married'] != 0) { echo "You are already married"; exit($h->endpage()); } else { print"<h1>Proposal Center</h1> Do you want to propose to someone? <form action='marriage.php?action=proposeform' method='post'> <input type='submit' class='submit' value='Yes.'> </form> <form action='index.php' method='get'> <input type='submit' class='submit' value='No.'> </form>"; } } function proposeform() { global $db,$ir,$c,$h,$userid; if ($ir['married'] != 0) { echo"You are already married"; exit($h->endpage()); } else { print"<h1>Proposal Center</h1> <form action='marriage.php?action=proposesubmit' method='post'> Please enter the user id of the user you want to propose to: User ID: <input type='text' name='propose' /> Message: <input type='text' name='message' /> <input type='submit' value='Propose' /></form>"; } } function proposesubmit() { global $db,$r,$ir,$c,$h,$userid; $m=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($_POST['propose'])).""); $r=mysql_fetch_array($m); if ($r['married'] != 0) { echo "This person is already married. Sorry. Try someone else."; exit($h->endpage()); } if ($ir['married'] != 0) { echo "You are already married"; exit($h->endpage()); } if ($ir['userid'] == $_POST['propose']) { echo "You cannot marry yourself"; exit($h->endpage()); } if ($_POST['propose'] <= 0) { echo"Invalid user, Try someone else."; exit($h->endpage()); } else { $ch=mysql_query("SELECT * FROM proposals WHERE proPROPOSED=".abs(intval($_POST['propose'])).""); if (mysql_num_rows($ch)!=0) { echo "This user already has a pending proposal, please try again later <a href=index.php>> Back</a>"; exit($h->endpage()); } else { $m=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($_POST['propose'])).""); $r=mysql_fetch_array($m); mysql_query("INSERT INTO proposals VALUES('', '{$ir['userid']}', '".abs(intval($_POST['propose']))."', '".mysql_real_escape_string($_POST['message'])."')"); event_add(abs(intval($_POST['propose'])),"<a href='viewuser.php?u=$userid'>".htmlentities($ir['username'])." [".abs(intval($ir['userid']))."]</a> proposed to you click <a href='marriage.php?action=decision'><u>HERE</u></a> to make your mind up.</a> ",$c); print"<h3>Proposal Center</h3> You proposed to ".htmlentities($r['username'])." [".abs(intval($r['userid']))."], please wait for their decision "; } } } function decision() { global $ir,$db,$h,$userid; $m=mysql_query("SELECT * FROM proposals WHERE proPROPOSED=".abs(intval($ir['userid'])).""); if (mysql_num_rows($m)==0) { echo"Nobody has proposed to you! <a href=index.php>> Back</a>"; exit($h->endpage()); } else { $pro=mysql_fetch_array($m); $f=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($pro['proPROPOSER'])).""); $r=mysql_fetch_array($f); print"<h3>Decision Center</h3> <center><table width=90% cellspacing=1 class=table border=1 bordercolor=#636363></center><tr><td> Proposer: <a href='viewuser.php?u=".abs(intval.htmlentities($r['username'])."'</a> </td> <td>Message: ".htmlentities($pro['proMESSAGE'])." </td> <td>Decision: <a href='marriage.php?action=accept&pro=".abs(intval( $pro['userid']))."'><font color='#666666'>Accept</font></a> <font color='#666666'>or</font> <a href='marriage.php?action=decline&pro=".abs(intval ($pro['userid']))."'><font color='#666666'>Decline</font></a></td></tr></table>"; } } function accept() { global $ir,$userid,$db,$h; if ($r['married'] != 0) { echo"This person is already married. Sorry. Try someone else."; exit($h->endpage()); } if($ir['married'] != 0) { print "You are already married"; $h->endpage(); exit(); } $m=mysql_query("SELECT * FROM proposals WHERE (`proID` = ".abs(intval($_GET['pro'])).") AND (`proPROPOSED` = $userid)"); if(!mysql_num_rows($m)) { echo ('You\'ve clicked an invalid link, please report to an administrator.'); $h->endpage(); exit(); } else { $m=mysql_query("SELECT * FROM proposals WHERE proID=".abs(intval($_GET['pro']))." AND proPROPOSED=$userid"); $pro=mysql_fetch_array($m); mysql_query("UPDATE `users` SET `married` =".abs(intval($pro['proPROPOSER']))." WHERE (`userid` = $userid)"); mysql_query("UPDATE `users` SET `married` =".abs(intval($pro['proPROPOSED']))." WHERE (`userid` = ".abs(intval($pro['proPROPOSER'])).")"); mysql_query("DELETE FROM proposals WHERE (proID=".abs(intval($pro['proID'])).")"); $mr=mysql_query("SELECT * FROM `users` WHERE (`userid` =".abs(intval($pro['proPROPOSER'])).")"); $par=mysql_fetch_array($mr); event_add($par['userid'],"Your proposal for <a href='viewuser.php?u=".abs(intval($ir['userid']}."'>".htmlentities($ir['username'])."</a> was accepted",$c); print "You married ".htmlentities($par['username'])." !!! "; } } function decline() { global $ir,$userid,$db,$h; $_GET['pro'] = isset($_GET['pro']) && is_numeric($_GET['pro']) ? abs(@intval($_GET['pro'])) : false; if(!$_GET['pro']) { echo "Stop abusing our marriage system!"; exit($h->endpage()); } $m=mysql_query("SELECT * FROM proposals WHERE proID=".abs(intval($_GET['pro']))." AND proPROPOSED=$userid"); if (mysql_num_rows($m) == 0) { print "Invalid proposal or this is not your proposal"; } else { $pro=mysql_fetch_array($m); mysql_query("DELETE FROM proposals WHERE proID=".abs(intval($pro['proID'])).""); $mr=mysql_query("SELECT * FROM users WHERE userid=".abs(intval($pro['proPROPOSER'])).""); $par=mysql_fetch_array($mr); event_add($par['userid'],"".htmlentities($ir['username'])." [".abs(intval($ir['userid']))."] has declined your proposal",$c); print"You declined the proposal from ".htmlentities($par['username'])."! "; } } $h->endpage(); ?>
-
-Snip (removed long quote along with adding code tags to the above post - DJK) 1 problem = if($target2->id =='0' or $target2->id =='0'){ print "You can't hitlist Admins or Mods!";}elseif ($target2->id=='0'){
-
Haha i didn't reload the page before i commented
-
You have spelt grpgusers wrong
-
Hi to All! A Text Based Mafia game - Trigger Happy Mafia!
mixmaster replied to KashBFD's topic in Game Projects
I was going to but sushhh just seemed like the better word to correct lol -
Hi to All! A Text Based Mafia game - Trigger Happy Mafia!
mixmaster replied to KashBFD's topic in Game Projects
Urm ok :p and it's shhhhh not sushhhhh -
<a href='marriage.php?action=accept&pro=".abs(intval( $pro['userid']))."'><font color=green>Accept</font></a>[/color] [color=#666666]or[/color] [color=#666666]<a href='marriage.php?action=decline&pro=".abs(intval ($pro['userid']))."'><font color=red>Decline</font></a></td></tr></table>";[/color]
-
ovewrite lines 141 - 143 with this <a href="marriage.php?action=accept&pro=".abs(intval($pro['userid'])).""><font color=green>Accept</font></a> or <a href="marriage.php?action=decline&pro=".abs(intval($pro['userid'])).""><font color=red>Decline</font></a></td></tr></table>";
-
Looks like a nice mod spud , well done :)
-
I know people that have both games and some of them preferer black ops just because it's easier , i guess it is just a case of personal preference
-
I like both cod and bf3 , i prefer bf3 due to better graphics , bigger maps , better hit detction , less campers , longer matches , love the knife animations and being able to fly the jets and drive around etc , and i like black ops because of zombies :D
-
Naturally when you play a game , you get to know everything about it eg main currency / secondary currency , so you would know exactly what the currencys mean for you character and has for the part (WHY does my HERO gain that point?) maybe you should read stuff before just clicking on the link :p
-
1 of SRB'S question was is it a game script , so i just contributed and gave an anser , jeez :p
-
SRB quickly glancing through , it is another mafia based game
-
Take out the <span class="highlight"></span> from line 112