Jump to content
MakeWebGames

mixerman212

Members
  • Posts

    26
  • Joined

  • Last visited

mixerman212's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I think you hit it right on the head... If you remember a while back they had said they killed him in a bunker bombing, and also to go through all the media trouble they went through when they caught Saddam Hussein to get his execution televised so that everyone knew he was dead and then to just say oh we fed bin laden to the sharks "You will just have to believe us" come on now.
  2. Im sure glad i have an Xbox360 but might be time to start looking into buying a PS3 now im sure they will be dirt cheap before to long :D
  3. WOW!!! for 3 people that supposedly know so much, this sure is a simple game that looks just exactly like the rest of them, with no new mods, or different anythings. Way to go with coming up with the same thing that hundreds already have lol
  4. <?php include "globals.php"; $_POST['search'] = mysql_real_escape_string($_POST['search']); $_POST['save'] = mysql_real_escape_string($_POST['save']); $_POST['clear'] = mysql_real_escape_string($_POST['clear']); if($_POST['search']) { $_POST['moneymin'] = abs(@intval($_POST['moneymin'])); $_POST['daysmax'] = mysql_real_escape_string($_POST['daysmax']); $_POST['daysmin'] = mysql_real_escape_string($_POST['daysmin']); $_POST['levelmin'] = abs(@intval($_POST['levelmin'])); $_POST['levelmax'] = abs(@intval($_POST['levelmax'])); $_POST['id'] = mysql_real_escape_string($_POST['id']); $_POST['location'] = abs(@intval($_POST['location'])); $_POST['name'] = mysql_real_escape_string($_POST['name']); $levelmin_clause="WHERE level >= {$_POST['levelmin']}"; $levelmax_clause=" AND level <= {$_POST['levelmax']}"; $id_clause=($_POST['id']) ? " AND userid LIKE('%{$_POST['id']}%')" : ""; $name_clause=($_POST['name']) ? " AND username LIKE('%{$_POST['name']}%')" : ""; $location_clause=($_POST['location']) ? " AND location LIKE('{$_POST['location']}')" : ""; $online_clause=($_POST['online']) ? " AND laston >= unix_timestamp()" : ""; $daysmin_clause=($_POST['daysmin']) ? " AND daysold >= {$_POST['daysmin']}" : ""; $daysmax_clause=($_POST['daysmax']) ? " AND daysold <= {$_POST['daysmax']}" : ""; $moneymin_clause=($_POST['moneymin']) ? " AND money > {$_POST['moneymin']}" : ""; $q=$db->query("SELECT * FROM users $levelmin_clause$levelmax_clause$id_clause$name_clause$location_clause$online_clause$daysmin_clause$daysmax_clause$moneymin_clause",$c); print " <table width='75%' cellspacing='1' class='table'><tr><th><h3>User Search Results</h2></th></tr></table>"; print"<table width='75%'><tr><td colspan='5'>";print mysql_num_rows($q)." Users found. </td></tr><tr class='table'><th>User</th><th>Level</th><th>Money</th><th>Mug</th><th>Attack</th></tr>"; while($r=mysql_fetch_array($q)) { print "<tr><td><a href='viewuser.php?u={$r['userid']}'>"; print" {$r['username']}"; print"</a></td><td>{$r['level']}</td><td>\${$r['money']}</td><td>[url='mug.php?ID={$r['][Mug][/url]</td><td>[url='attack.php?ID={$r['][Attack][/url]</td></tr>"; } print "</table>"; } else if($_POST['save']) { $_POST['moneymin'] = abs(@intval($_POST['moneymin'])); $_POST['daysmax'] = mysql_real_escape_string($_POST['daysmax']); $_POST['daysmin'] = mysql_real_escape_string($_POST['daysmin']); $_POST['levelmin'] = abs(@intval($_POST['levelmin'])); $_POST['levelmax'] = abs(@intval($_POST['levelmax'])); $_POST['id'] = mysql_real_escape_string($_POST['id']); $_POST['location'] = abs(@intval($_POST['location'])); $_POST['name'] = mysql_real_escape_string($_POST['name']); $levelmin_clause="WHERE level >= {$_POST['levelmin']}"; $levelmax_clause=" AND level <= {$_POST['levelmax']}"; $id_clause=($_POST['id']) ? " AND userid LIKE('%{$_POST['id']}%')" : ""; $name_clause=($_POST['name']) ? " AND username LIKE('%{$_POST['name']}%')" : ""; $location_clause=($_POST['location']) ? " AND location LIKE('{$_POST['location']}')" : ""; $online_clause=($_POST['online']) ? " AND laston >= unix_timestamp()" : ""; $daysmin_clause=($_POST['daysmin']) ? " AND daysold >= {$_POST['daysmin']}" : ""; $daysmax_clause=($_POST['daysmax']) ? " AND daysold <= {$_POST['daysmax']}" : ""; $moneymin_clause=($_POST['moneymin']) ? " AND money > {$_POST['moneymin']}" : ""; $q=$db->query("SELECT * FROM users $levelmin_clause$levelmax_clause$id_clause$name_clause$location_clause$online_clause$daysmin_clause$daysmax_clause$moneymin_clause",$c); print " <table width='75%' cellspacing='1' class='table'><tr><th><h3>Prisoner Search Results</h2></th></tr></table>"; print"<table width='75%'><tr><td colspan='5'>";print mysql_num_rows($q)." Users found. </td></tr><tr colspan=1 class='table'><th>User</th><th>Level</th><th>Money</th><th>Mug</th><th>Attack</th></tr>"; while($r=mysql_fetch_array($q)) { print "<tr><td><a href='viewuser.php?u={$r['userid']}'>"; print" {$r['username']}"; print"</a></td><td>{$r['level']}</td><td>\${$r['money']}</td><td>[url='mug.php?ID={$r['][Mug][/url]</td><td>[url='attack.php?ID={$r['][Attack][/url]</td></tr>"; } print "</table>"; $sql = sprintf("SELECT * FROM search WHERE userid = %d ", $ir['userid']); $q1 = mysql_query($sql); if(mysql_num_rows($q1) > 0) { $updatesearch = sprintf ( "UPDATE `search` SET `id` = '%s', `moneymin` = '%d', `daysmax` = '%s', `daysmin` = '%s', `levelmin` = '%d', `levelmax` = '%d', `location` = '%d', name = '%s', `online` = '%s' WHERE `userid` = ('%u')", $_POST['id'], $_POST['moneymin'], $_POST['daysmax'], $_POST['daysmin'] , $_POST['levelmin'], $_POST['levelmax'], $_POST['location'], $_POST['name'], $_POST['online'], $ir['userid'] ); $db->query($updatesearch); } else { $insertsearch = sprintf ( "INSERT INTO `search` values ('' , '%u' , '%u' , '%s' , '%s' , '%u' , '%u' , '%s' , '%u' , '%s', '%s' )", $ir['userid'], $_POST['moneymin'], $_POST['daysmax'], $_POST['daysmin'] , $_POST['levelmin'], $_POST['levelmax'], $_POST['id'], $_POST['location'], $_POST['name'], $_POST['online'] ); $db->query($insertsearch); } } else if($_POST['clear']) { $sql = sprintf("SELECT * FROM search WHERE userid = %d ", $ir['userid']); $q1 = mysql_query($sql); if(mysql_num_rows($q1) > 0) { $deletesearch = sprintf ( "DELETE FROM `search` WHERE `userid` = ('%u')", $ir['userid'] ); $db->query($deletesearch); print"last Search has been Deleted"; } else { print"You have no searches saved to delete... Stupid!!"; } } ?>
  5. samurai of legend has a p2p trading system like this with drop down menus to add items you have in your inventory and you can pick how many items you want to trade and the quantity you want to add even money and gold coins and things can be traded. would love to see one of these made though :D
  6. I would like to see this be made
  7. both files are the blacklist.php
  8. Fatal error: Call to undefined function: array_combine() in /home/******/public_html/gangs/plugins/private/gang_mygang.php on line 18 lol i guess php4 is somewhat different maybe i should upgrade my version :D
  9. The gangs.php seems to be fine now but still with the war section when i click the war link i get Fatal error: Call to undefined function: array_fill_keys() in /home/******/public_html/gangs/plugins/private/gang_mygang.php on line 206 I applied the same fix as the other file and the error jumped to line 219
  10. Parse error: syntax error, unexpected '&', expecting T_VARIABLE or '$' in /home/*******/public_html/gangs/plugins/public/gang_list.php on line 152 i get this error when i go to gangs.php Fatal error: Call to undefined function: array_diff_key() in /home/*******/public_html/gangs/plugins/private/gang_staff.php on line 440 This in war management from staff menu
  11. OK i sent him a PM just waiting for a response
  12. Sorry, no search results were found for filedropper.com/cjexplore_2
  13. I have read through this thread completely and couldnt find a fix but when you try to credit somebody in your business it gives the money to the owner and nobody else no matter who you pick to send it to it only give it to the owner anybody else having this problem
  14. yeah something like that only about 90% of the price actually goes into the pot there for getting rid of a little cash at a time from your game so if you set you play price at 10k only about 9k of it goes into the pot and like i said before it just ends whenever it wants to between the set prices i have mine set at 2.5 mil min and 11.5 mil max so just somewhere between that it will hit and whoever is the lucky one playing when that happens gets the pot and an event telling them they won and how much.
  15. there is no tickets to be bought you just play till it pays out so one player could crank a bunch of money into it and not win or they might be the lucky one to win the pot,you can change how much it costs to play in the staff panel and the win price is random between certain amounts set by you. might not be hard to change it to a crystal lotto if you wanted to.
×
×
  • Create New...