Jump to content
MakeWebGames

plintu

Members
  • Posts

    102
  • Joined

  • Last visited

  • Days Won

    1

plintu last won the day on July 31 2011

plintu had the most liked content!

plintu's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. There is even other things you can do like just before the above code you can add something like : if (is_numeric($_POST['amount'])) { }else{die("What are you trying to pull here buddy?");}    
  2. $amount=($_POST['amount']); is completely setting yourself up to get hacked, try this: $amount=mysql_real_escape_string(strip_tags($_POST['amount'])); ok I tried <code> tags and they do not work I even tried it like and nothing so :p
  3. i want this mod please contact me. breakinglight has emails blocked so anyone who has it please contact me
  4. if you got it contact me please and what you want for it?
  5. Bidding Ends Wednesday August 10th, If no bids have been placed you can buy it now $50. This template comes with additional images in case you have a use for them. You are purchasing full ownership rights to everything including the images. So not even I will be allowed to use these specific images. You are not purchasing ownership rights to the characters, which I still may use for other projects, but will I will not use these scenes in other projects. These preview images have a watermark, and are saved as lower quality(6) jpeg you will receive the psd for the template, non-coded, and jpeg image for the additional images. Here is the template: http://plintu.com/templates/preview/whole.jpg Here is additional images: http://plintu.com/templates/preview/d1.jpg http://plintu.com/templates/preview/d2.jpg http://plintu.com/templates/preview/h1.jpg http://plintu.com/templates/preview/h2.jpg http://plintu.com/templates/preview/h3.jpg http://plintu.com/templates/preview/h4.jpg   Forgot to mention, there is a reserve $20
  6. I just wanted to add something to this thread, as an independent web developer, I am disgusted with the way people come on here with their stolen scripts, then they beg for free mods, then they create a game and get money from the game but they give nothing in return. The actual people who did all the coding of the game and the mods deserve the money for the time and effort that they put into creating the mods. Aside from the hours, days, weeks and even months of time spent creating these scripts, the developer spent years of their lives learning to code and some bum wants to come around and get everything for free or steal the work and suck in that money for themselves. All I got to say is that is just despicable and disgusting. At least once you start making money off of your stolen goods, come and make it right with the actual person who created it. Even if you can't afford the entire price, shoot the programmer a few bucks and say "hey I wasn't able to afford your script at the time, I found a copy, and made a few bucks I am doing all I can here, but I will split the profit with you until I have paid you what I really should have paid you from day one" I will guarantee you the programmer will respect you for considering the hard work they put into it, and all will be good! Then in no time flat you can be legit and you won't be a scuzz-bucket! if($ir['money']='0'){ steal($code); die(); } :P
  7. Yeah I ran across the same person trying that crud on my game also check for this user Milly they seem to even log into each game with the same name! LOL And I wouldn't even really care about this persons rights and being nice and not posting his IP address do you think that he is not gonna use an exploit on your game if he finds it because you were nice and didn't post his IP? These guys are jerks going around looking for mccodes games to try to ruin them so I say to hell with these guys! they have no idea how much time and effort we all put into our games to try to make them good then he trys to ruin it in a few swipes well markwick logged into my game and attempted to hack it also but he messed up and used his home computer and I got this ip address 92.235.150.88 92-235-150-88.cable.ubr20.aztw.blueyonder.co.uk so if this helps anyone prevent a hacker from ruining their game there you go! but I also got the 70.87.103.182 b6.67.5746.static.theplanet.com address from him he used that one to sign up then he also signed up using a markwick123 name, so he uses both ip's often! Now the milly one uses 82.25.183.36 client-82-25-183-36.brnt.adsl.virginmedia.com! I hope this helps someone out! I even chatted with milly for a bit about it and milly was a 15 year old boy who said he just wanted to be strong in a game and kept pushing asking to be admin but I told him he was a loon and banned him and blocked ip.:D :thumbsup:
  8. well that is a good idea but I know there has got to be a way to do a select count or num rows with a left join users and some way to order by with a limit of, now that is the tricky part :D I was wondering if anyone could do it? Cause I know it is beyond me as of now! I think I am close with this one but I am still doing tons of trial and error to get my queries so I am not sure :D[mysql]mysql_query("SELECT COUNT(*) FROM attacklogs al LEFT JOIN users u ON u.userid = al.attacker WHERE al.result = 'won' ORDER BY COUNT(*) DESC");[/mysql]
  9. well here is my hall of fame I think it is the basic one, I need help selecting from attacklogs where result =won, and listing the top in my attack logs it has the following fields attacker, attacked, result that would be needed for this can anyone help? ;(   <?php include "globals.php"; $filters=array( 'nodon' => 'AND donatordays=0', 'don' => 'AND donatordays > 0', 'all' => ''); $filter=(isset($filters[$_GET['filter']])) ? $_GET['filter'] : 'all'; $myf=$filters[$filter]; $bt1=($filter=="nodon") ? "[b]" : ""; $bet1=($filter=="nodon") ? "[/b]" : ""; $bt2=($filter=="don") ? "[b]" : ""; $bet2=($filter=="don") ? "[/b]" : ""; $bt3=($filter=="all") ? "[b]" : ""; $bet3=($filter=="all") ? "[/b]" : ""; print "<h2>Hall Of Fame</h2><hr /> <table width=65% cellspacing=1 class='table'> <tr> <td>[url='halloffame.php?action=level&filter={$filter}']LEVEL[/url]</td> <td>[url='halloffame.php?action=money&filter={$filter}']MONEY[/url]</td> <td>[url='halloffame.php?action=respect&filter={$filter}']RESPECT[/url]</td> </tr> <tr> <td>[url='halloffame.php?action=agility&filter={$filter}']AGILITY[/url]</td> <td>[url='halloffame.php?action=labour&filter={$filter}']LABOUR[/url]</td> <td>[url='halloffame.php?action=iq&filter={$filter}']IQ[/url]</td> </tr> <tr><td> </td><td>[url='halloffame.php?action=rcelogs&filter={$filter}']LAST 25 RACE RESULTS[/url]</td><td> </td></tr></table>"; switch($_GET['action']) { case "level": hof_level(); break; case "attacks": hof_attackswon(); break; case "money": hof_money(); break; case "points": hof_points(); break; case "respect": hof_respect(); break; case "total": hof_total(); break; case "strength": hof_strength(); break; case "agility": hof_agility(); break; case "guard": hof_guard(); break; case "labour": hof_labour(); break; case "iq": hof_iq(); break; case "referal": hof_referals(); break; case "rcelogs": view_race_logs(); break; } function view_race_logs() { global $db,$ir,$c,$h,$userid; print "<h3>Race Logs</h3> <table width=65% cellspacing='1' class='table'> <tr style='background:gray'> <th>ID</th> <th>User From</th> <th>User To</th> <th></th> <th>Amount</th> <th>Winner</th> <th></th> </tr>"; $q=$db->query("SELECT rr.*,u1.username as sender, u2.username as sent FROM race_results rr LEFT JOIN users u1 ON rr.rrCHALLENGER=u1.userid LEFT JOIN users u2 ON rr.rrCHALLENGED=u2.userid ORDER BY rr.rrID ASC LIMIT 25"); while($r=$db->fetch_row($q)) { if($r['cxFROMIP'] == $r['cxTOIP']) { $m="<span style='color:red;font-weight:800'>MULTI</span>"; } else { $m=""; } print "<tr><td>{$r['rrID']}</td> <td>[url='viewuser.php?u={$r[']{$r['sender']}[/url] [{$r['rrCHALLENGER']}] [b]Used [{$r['rrCHRCAR']}] [/b] </td><td>[url='viewuser.php?u={$r[']{$r['sent']}[/url] [{$r['rrCHALLENGED']}] [b] Used [{$r['rrCHDCAR']}] [/b] </td> <td></td> <td> {$r['rrBET']} Money </td> <td>{$r['rrWINNER']} </td> <td></td> </tr>"; } print "</table>"; stafflog_add("Viewed the Race Logs"); } function hof_level() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest levels <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Level</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY level DESC,userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($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{$r['level']}$et</td> </tr>"; } print "</table>"; } function hof_money() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest amount of money <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Money</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY money DESC,userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($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['money'],'')."$et</td> </tr>"; } print "</table>"; } function hof_points() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest amount of points <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>points</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY points DESC,userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($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['points'],'')."$et</td> </tr>"; } print "</table>"; } function hof_respect() { global $db,$ir,$c,$userid; print "Showing the 20 gangs with the highest amount of respect <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>Gang</th> <th>Respect</th> </tr>"; $q=$db->query("SELECT * FROM gangs ORDER BY gangRESPECT DESC,gangID ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['gangID'] == $ir['gang']) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangNAME']} [{$r['gangID']}]$et</td> <td>$t".money_formatter($r['gangRESPECT'],'')."$et</td> </tr>"; } print "</table>"; } function hof_total() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest total stats <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY (us.strength+us.agility+us.guard+us.labour+us.IQ) DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['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> </tr>"; } print "</table>"; } function hof_strength() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest strength <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.strength DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['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> </tr>"; } print "</table>"; } function hof_agility() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest agility <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.agility DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['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> </tr>"; } print "</table>"; } function hof_guard() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest guard <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.guard DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['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> </tr>"; } print "</table>"; } function hof_labour() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest labour <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.labour DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['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> </tr>"; } print "</table>"; } function hof_iq() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest IQ <table width=65% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.IQ DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['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> </tr>"; } print "</table>"; } $h->endpage(); ?>
  10. RE: Problem Logging In srachit_brutalimpact is the name of the database and users is the name of the table, you either need to run the installer or open your installer(find sql's) and manually copy the queries and run them in the database however you feel more comfortable doing!
  11. WOW $5 That is amazing I would really like to see that mod! I mean really I have not seen anyone with anything like this anywhere around here but you say you can get one for $5, I would like to see a link to that forum, I have been searching and searching but I can't find it anywhere! but hey if you can get it that cheap then, I guess there is no reason for you to be posting here! but if you think you can find that other mod I would love for you to post it here! I guess I will sit here and wait a while! :sleeping:
  12. RE: Re: Flash Slot Machine [$50] Designed to fit your game!   If you buy a copy then you have the licence. Then you can use it on all your games. O.o   Pfft is someone has brought a copy ... licence then sure they can use it on there games.. PFFT!   normally i would agree with you on that, however i did come to a deal with plintu for 3 copies of this and each one has been recoded to fit each of my games... so this was not just a case of the mod being sent to me and me uploading to each game, but has been graphically changed to suit each game theme...This involved ripping the SWF apart and rebuilding it, something i don't have a clue how to do... the slot machine is brilliant Plintu spent hours even changing the payouts to fit my games economy (which was lower than his) its an excellent mod and well worth $35 my members love it... Thank you Shrek! It is true normally I would agree with crazy t as well, but this isn't just a php mod, this involves php, flash and actionscript, with lots of communication between the swf file and the php files to make database queries. I Spend a great deal of time trying to make sure that all of the art will completely match each game I can either add the images myself or if you want particular images to be used then I will use those. I have already done a few of these and I work directly with my customers until they are completely satisfied with the mod! I even go so far as to teach them how it works so that they can fully understand it and make thier own changes to it if they so choose. Believe me I would honestly say $35 is not enough for the amount of time I spend on each one of these. 8)
  13. needs help make sure and do some serious changes to the script before implementing in a game, you can keep refreshing without a bet to get a good hand, and it does not recognize straights. but it looks really good just needs a little help.
  14. Re: mafia Game bible + Ultimate how to get traffic, backlinks, and exposer for $0.00   I know this is an old topic but I couldn't resist! I guess topmorpg for got to just add the fine print in the title" It is at $0.00 cost to you as you spend money and buy the mafia game script! "but we can just shorten that for the title pruposes and make it "at $0.00 cost to you as long as you spend money"
  15. Re: v3 Mafia Game Script released. I agree with sim I just don't think it is worth it, even with the amazing super discount!
×
×
  • Create New...