Jump to content
MakeWebGames

Danny696

Members
  • Posts

    2,632
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Danny696

  1. LOL using ants bbcode_parser i see haha. Seriously, dont ever claim it as your parser
  2. May i ask what does PLN stand for?
  3. Like murder, there will always be one ;)
  4. <smartarse>They can happen anywhere, but dont tent to</smartarse>
  5. There are far worse things to think about than dogs. Life ouselfs for example.
  6. This would be good for a php version.
  7. Danny696

    Mascots [$50+]

    Most people use illustaror for the mascots
  8. As McCraps uses * on everything, it would be eiaser to do the mats in the estate.php file. and not clog up the users table
  9. Lol, as long as you have the house table joined on the users, theres no need for this, just do {$ir['housePRICE']} or whatever it is
  10. im sure if you contacted dabs, you could get them. If you paid for it that is
  11. Im not quite sure, but i think there may be a working search box top right :S
  12. Estimated date of release?
  13. $_POST['newname'] = str_replace(array("meta","http-equiv","http","refresh","content","www.",".com",".co.uk"), "", $_POST['newname']); Who did that?
  14. This annoys me, theres onle 3 l's in illegalifes name, illegalife not IllegalLife just illegal and ife!
  15. Well, ive made it now, its the exact same user side, simplez
  16. Lol, i can always tell mcc by the regiser, view source, youll see the javascript. Gambino, on cronwerks, you sold mods that didnt work and went yours to sell, yuou even solf a free mod! I wouldnt trust him!
  17. [mccode v2.x] New Userlist! Woops!!! :whistling:
  18. Well, thoughtyou might make this. Untested, should work..... <?php @include_once(DIRNAME(__FILE__) .'/globals.php'); $st = (isset($_GET['st']) && is_numeric($_GET['ord'])) ? abs(@intval($_GET['st'])) : 0; $ord= (isset($_GET['ord']) && is_numeric($_GET['ord'])) ? abs(@intval($_GET['ord'])) : 'ASC'; $by = (isset($_GET['by']) && ctype_alpha($_GET['by'])) ? strip_tags(mysql_real_escape_string($_GET['by'])) : 'userid'; echo'<h3>Userlist</h3>'; $membs = $db->num_rows($db->query("SELECT userid FROM users")); $pages=(int) ($membs/100)+1; if($membs % 100 == 0) { $pages--; } echo'Pages: '; for($i=1;$i <= $pages;$i++) { $stl=($i-1)*100; echo'[url="?st='.$stl.'&by='.$by.'&ord='.$ord.'"]'.$i.'[/url]'; } echo' Order By: [url="?st='.$st.'&by=userid&ord='.$ord.'"]User ID[/url]| [url="?st='.$st.'&by=username&ord='.$ord.'"]Username[/url]| [url="?st='.$st.'&by=level&ord='.$ord.'"]Level[/url]| [url="?st='.$st.'&by=money&ord='.$ord.'"]Money[/url] [url="?st='.$st.'&by='.$by.'&ord=asc"]Ascending[/url]| [url="?st='.$st.'&by='.$by.'&ord=desc"]Descending[/url] '; $user = $db->query(sprintf("SELECT u.*, g.*, c.cityname, c.cityid ". "FROM users AS u ". "LEFT JOIN gangs AS g ON u.gang=g.gangID ". "LEFT JOIN cities AS c ON u.location=c.cityid ". "ORDER BY %s %s LIMIT %u, 100", $by, $ord, $st)); $no1=$st+1; $no2=$st+100; $ord = ''.$ord; echo'Showing users '.$no1.' to '.$no2.' by order of '.$by.$ord.'. <table width="75%" cellspacing="1" class="table"> <tr style="background:gray"> <th>ID</th> <th>Name</th> <th>Level</th> <th>Money</th> <th>Crystals</th> <th>Location</th> <th>Gender</th> <th>Online</th> </tr>'; while($r = $db->fetch_row($user)) { $d=""; $r['username'] = ($r['donatordays']) ? '<span style="color:red;">'.$r['username'].'</span>' : $r['username']; $d = ($r['donatordays']) ? '[img=donator.gif]' : ''; $status = ($r['laston'] >= time()-15*60) ? '<span style="color: green; font-weight:bold;">Online</span>' : '<span style="color: red; font-weight:bold;">Offline</span>'; echo'<tr> <td>'.number_format($r['userid']).'</td> <td>[url="viewuser.php?u='.$r['userid'].'"]'.$r['gangPREF'].' '.$r['username'].' '.$d.'[/url]</td> <td>'.number_format($r['level']).'</td> <td>'.money_formatter($r['money']).'</td> <td>'.number_format($r['crystals']).'</td> <td>'.$r['cityname'].'</td> <td>'.$r['gender'].'</td> <td>'.$status.'</td> </tr>'; } echo'</table>'; $h->endpage(); ?>
  19. This gives me an idea!
  20. Screenie?
  21. Added
  22. Hey ermm, wondering if anyone wanted a nice game of boosting of COD XBOX only, im currently 1st pressy lvl 58, and still no nuke! well, we can swap who gets the goodeys, e.g. frist game i win, next you win etc. PM Me for my gamertag
  23. Did you make that person?
×
×
  • Create New...