Jump to content
MakeWebGames

thedestroyer

Members
  • Posts

    277
  • Joined

  • Last visited

    Never

Everything posted by thedestroyer

  1. its not as easy as that tho m8 as i have already tried that
  2. Anyone got a crime success formula that works off crime exp instead of will? ?(
  3. you are just a ripoff then. I mean seriously who would pay $20 for a bounty mod? Get serious m8
  4. hey immortalthug did you manage to get a copy?
  5. job ranks? no im on about game ranks m8 lol
  6. so this is pretty much just a little editing to the free drug stock market on here....
  7. cool looking forward to seeing the mod posted on here :)
  8. Yes thats the mod i use but i need a hall of fame for it to show the highest ranks
  9. u mean on http://www.thisislondongame.com does the owner of that game actually make any of his mods himself?
  10. ok i got it so you dont have to add an item but can someone make it so you gain more points when you go up levels?
  11. can someone pls add a code so each time you go up a level you gain more job points? and you dont have to select an item when creating a sepcial?
  12. Hi i was trying to make richards job specials mod so as you go up a level you gain more job points instead of them just increasing when you get promoted can someone help me please?
  13. do you have the option to use the drugs too?
  14. so this is basically just a new stock market?
  15. ok, I have used the original v2 hall of fame again and added more options as much easier but i cant get ranks working basically the user ranks mod on here can anyone help pls?
  16. Yes i agree every mod i bought on cronwerks had something wrong with it. That site is so unreliable.
  17. ok
  18. awesome sounds very good.
  19. dont matter got it now
  20. does anyone know how to do it?
  21. RE: Armory v2 [$10]  
  22. I cant do it like that tho cos mines different :( here it is:   <?php /* -- Created By Kyle -- Price: FREE; -- Keep notice. */ //Pop ups then closed session_start(); $close_window = '<script LANGUAGE="JavaScript"> function closePg(){ window.close(); return true; } </script> <body onLoad="return closePg()"></body>'; $display_o = "Session installed now closing. ".$close_window; if($_GET['filter'] == 1) { $_SESSION['filter'] = "ASC"; echo $display_o; } else if($_GET['filter'] == 2) { $_SESSION['filter'] = "DESC"; echo $display_o; } if($_GET['don'] == 1) { $_SESSION['donator'] = "AND donatordays=0"; echo $display_o; } else if($_GET['don'] == 2) { $_SESSION['donator'] = "AND donatordays>0"; echo $display_o; } else if($_GET['don'] == 3) { $_SESSION['donator'] = ""; echo $display_o; } //if not filter & donator if(!$_SESSION['filter']) { $_SESSION['filter'] = "DESC"; } if(!$_SESSION['donator']) { $_SESSION['donator'] = ""; } include("globals.php"); //SETTINGS// $header_image = "http://rapid-riot.com/images/header.jpg"; //Pic to display in <th> $border = 0; //Border on your game $td_align = "center"; //Align the <td> $filter = $_SESSION['filter']; //Filter - leave as is for both hall of shame and hall of fame built in one. $donator = $_SESSION['donator']; //Donator - leave as is for all donators non donators all. //SECURITY// if($_GET['display']) { $allowed = array ( level, crystals, bails, Referrals, busts, hof_crimes, friend_count, enemy_count, _blank, ); if(!in_array($_GET['display'],$allowed)) { echo 'Input not allowed.'; $h->endpage(); exit; } } $filter_asc = "<a href=\"javascript:void(0)\" onclick=\"window.open('?filter=1','Pop Up','width=1, height=1'); return false;\">Ascending Order</a>"; $filter_desc = "<a href=\"javascript:void(0)\" onclick=\"window.open('?filter=2','Pop Up','width=1, height=1'); return false;\">Descending Order</a>"; $donator_non = "<a href=\"javascript:void(0)\" onclick=\"window.open('?don=1','Pop Up','width=1, height=1'); return false;\">Non Donators</a>"; $donator_all = "<a href=\"javascript:void(0)\" onclick=\"window.open('?don=3','Pop Up','width=1, height=1'); return false;\">All Users</a>"; $donator_onl = "<a href=\"javascript:void(0)\" onclick=\"window.open('?don=2','Pop Up','width=1, height=1'); return false;\">Only Donators</a>"; echo ' <h1>Hall Of Fame</h1> [b]Filter:[/b] '.$filter_asc.' | '.$filter_desc.' [b]Donator\'s: '.$donator_non.' | '.$donator_all.' | '.$donator_onl.' <table class="table" width="75%" border="'.$border.'"> <tr> <th>[url="?display=level&x=1"]LEVEL[/url]</th> <th>[url="?display=busts&x=1"]BUSTS[/url]</th> </tr> <tr> <th>[url="?display=bails&x=1"]BAILS[/url]</th> <th>[url="?display=friend_count&x=1&dj=Most Liked"]MOST LIKED[/url]</th> <th>[url="?display=enemy_count&x=1&dj=Most Hated"]MOST HATED[/url]</th> <th>[url="?display=_blank&x=2"]HIGHEST HOUSE[/url]</th> <th>[url="?display=_blank&x=3"]TOP GANG[/url]</th> </tr> </table>'; if($_GET['x'] == 1) { if(!$_GET['dj']) { $var = ucfirst(htmlspecialchars($_GET['display'])); } else { $var = $_GET['dj']; } echo ' Showing user\'s order by '.$var.' '.$filter.' <table class="table" width="75%" border="'.$border.'"> <tr> <th>Username</th> <th>'.$var.'</th> </tr> <tr><!- Kyles Hall of fame Enhanced -!>'; $display = htmlspecialchars($_GET['display']); $fetch = mysql_query("SELECT * FROM users WHERE user_level != 0 ".$donator." ORDER BY ".$display." ".$filter.",userid ASC LIMIT 20"); while($t = mysql_fetch_assoc($fetch)) { if($display == "money") { $t[$display] = money_formatter($t['money']); } else if($display == "crystals") { $t[$display] = number_format($t['crystals']); } if($ir['userid'] == $t['userid']) { $t['username'] = "[b]".$t['username']."[/b]"; } echo ' <td align="'.$td_align.'">[url="viewuser.php?u='.$t['userid'].'"]'.$t['username'].'[/url] ['.$t['userid'].']</a></td> <td align="'.$td_align.'">'.$t[$display].'</td> <tr>'; } echo ' </tr> </table>'; } if($_GET['x'] == 2) { echo ' Showing user\'s order by Highest House in '.$filter.' <table class="table" width="75%" border="'.$border.'"> <tr> <th>Username</th> <th>House</th> </tr> <tr><!- Kyles Hall of fame Enhanced -!>'; $fetch = mysql_query("SELECT * FROM users WHERE user_level!=0 ".$donator." ORDER BY maxwill ".$filter.",userid ASC LIMIT 20") or die(mysql_error()); while($t = mysql_fetch_assoc($fetch)) { $house = mysql_fetch_assoc(mysql_query("SELECT * FROM houses WHERE hWILL=".$t['maxwill'])) or die(mysql_error()); echo ' <td align="'.$td_align.'">[url="viewuser.php?u='.$t['userid'].'"]'.$t['username'].'[/url] ['.$t['userid'].']</a></td> <td align="'.$td_align.'">'.$house['hNAME'].'</td> <tr>'; } echo ' </tr> </table>'; } if($_GET['x'] == 3) { echo ' Showing gang\'s order by highest respect in '.$filter.' <table class="table" width="75%" border="'.$border.'"> <tr> <th>Gang Name</th> <th>Gang Respect</th> </tr> <tr><!- Kyles Hall of fame Enhanced -!>'; $fetch = mysql_query("SELECT * FROM gangs ORDER BY gangRESPECT ".$filter." LIMIT 20") or die(mysql_error()); while($t = mysql_fetch_assoc($fetch)) { echo ' <td align="'.$td_align.'">[url="gangs.php?action=view&ID='.$t['gangID'].'"]'.$t['gangNAME'].'[/url]</td> <td align="'.$td_align.'">'.$t['gangRESPECT'].'</td> <tr>'; } echo ' </tr> </table>'; } if($_GET['x'] == 4) { $var = ucfirst(htmlspecialchars($_GET['display'])); echo ' Showing user\'s order by '.$var.' stats in '.$filter.' <table class="table" width="75%" border="'.$border.'"> <tr> <th>Username</th> </tr> <tr>'; if($_GET['display'] == "total") { $fetch = mysql_query("SELECT * FROM userstats ORDER BY (strength+agility+guard+labour+IQ) ".$filter." LIMIT 20") or die(mysql_error()); } else { $fetch = mysql_query("SELECT * FROM userstats ORDER BY ".$_GET['display']." ".$filter." LIMIT 20") or die(mysql_error()); } while($t = mysql_fetch_assoc($fetch)) { $user = mysql_fetch_assoc(mysql_query("SELECT * FROM users WHERE userid=".$t['userid'])) or die(mysql_error()); echo ' <td align="'.$td_align.'">[url="viewuser.php?u='.$user['userid'].'"]'.$user['username'].'[/url]</td> <tr>'; } echo ' </tr> </table>'; } function hof_crimes() { global $ir,$c,$userid; print "Showing the 20 users with the highest amount of crimes <table width=75%><tr style='background: gray'> <th>Pos</th> <th>User</th> <th>Crimes Done</th> </tr>"; $q=mysql_query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 ORDER BY crimes DESC,userid ASC LIMIT 20", $c); $p=0; while($r=mysql_fetch_array($q)) { $p++; if($r['userid'] == $userid) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> <td>$t".money_formatter($r['crimes'],'')."$et</td> </tr>"; } print "</table>"; } $h->endpage(); ?>
  23. What do you mean?
  24. yeh i know lots of them are already made but the player ranks, most wanted and faction kills arent on it
  25. Hi i was wondering if someone could make a hall of fame to show the following: level busts top gangs most wanted (basically most crimes done) highest rank (uses the player ranks mod on here) most hated (most enemies) most liked(most friends) faction kills (not too bothered if you cant do this one) i would like it to show the top 20 players of each section thanks!
×
×
  • Create New...