Jump to content
MakeWebGames

Ishraq

Members
  • Posts

    571
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Ishraq

  1. Alex, Is the one who makes the mccodes server really slow and but in most cases makes it gone until mccodes come to fix it. He attacked my game with DDOS. My game is on the same server as MonoDistrict.com, Makewebgames.com,Mccodes.com etc. Therefore, all the sites go down. Instead of becoming guilty and attacking that game. Why Dont you be a better person and report the site officially? Great Idea? I know. What's wrong if you do the right thing?
  2. Try Jquery/Ajax.
  3. Scam....... http://makewebgames.io/showthread.php/40419-Selling-full-game!
  4. Never saw Dave getting shouted out
  5. I hate sprintf. Never seem to understand it and it seems so difficult.
  6.   The game's slogan is "Nothing is as it seems". So that explains it all. The game is doing really really good. I still play it lol. Anyway, My game uses 100-230GB
  7. Bought it but doesn't work. :( Danny doesn't come back online anymore.
  8. LIMIT 1 gathers just 1 count. If you remove that, it will count all.
  9. Have you tried header: location
  10. More than A Legend. Sad he had to go. R.I.P
  11. Will do. Thanks for talking English. Why did he say he will deface my game?
  12.   Lol simple mistakes like that have gotten me aswell. Really really annoying when something doesn't go according your way.
  13. So.. What's up with you? What's wrong?
  14.   Yh If he manages to fix the BIOS. He can then use that to reinstall. He said he wanted to install without a CD.
  15. If you need to reinstall you can download this. http://www.tryowars.com/downloads/Windows%207%2032bit.zip
  16. The votes resets every day. Why not change it to every month?
  17. does the voting incentives use GET variable or POST.
  18. I started off with http://www.futurecriminal.com Now its gone At the same time I started playing TryoWars. Now thats gone. the owner ran away with the donations. I am currently rebuilding the game from memories. Anyway I looked at a game called European Alies and bought it and Armageddon Dude helped me run it. It got deleted somehow. I made lost warzone it was going really good and Samz hacked it and destroyed it. Such a bastard he was. Now I made http://www.gangstercity.net and hope to keep that going for a really long time. Mr Anthony has helped securing it.
  19. You have to use css to make it work
  20. Updated it now.
  21. bought this mod. waiting for the mod now
  22. Thanks I like to keep things tidy.
  23. Ok. I do have a history of copying other peoples codes and pasting them here and saying that I made them. Well, I am new now. I got a new name, new hairstyle, etc. A new me. I am more clever than my old self. I know how to create my own modifications now. Please could everyone forgive my sins and welcome the new me. Many of these have been made but this is one file of php coding without the need of installing any SQLs. It grabs the information from the attacklogs. So I created this....... Create a file called attacks.php[/red] <?php /*----------------------------------------------------- -- Created By: BioHazard -- Mod Type: Free Mod -- Mod Name: Your Attack Log -- File Name: attacks.php -- Instructions: Don't Remove This. This Is A Free Mod. So, Don't Sell It. -----------------------------------------------------*/ include_once "globals.php"; $atks=$db->query("SELECT * FROM attacklogs WHERE attacker=$userid OR attacked=$userid ORDER BY time DESC LIMIT 50"); print "<b>These are the last 50 attacks you were involved in:</b><br /> <table width=100%><tr><th>Time</th><th>Opponent</th><th>Who Attacked</th><th>Result</th><th>Money Gained</th></tr>"; while($r=$db->fetch_row($atks)) { if($r['attacker'] != $userid) { $realidd = $r['attacker']; } if($r['attacked'] != $userid) { $realid = $r['attacked']; } $q=$db->query("SELECT username FROM users WHERE userid='$realidd' or userid='$realid'"); $ID=$db->fetch_row($q); if($r['attacker'] != $userid) { $att = "<a href='viewuser.php?u={$r['attacker']}'>{$ID['username']}</a>"; } if($r['attacked'] != $userid) { $att = "<a href='viewuser.php?u={$r['attacked']}'>{$ID['username']}</a>"; } if($r['attacker'] == $userid && $r['result'] == 'won') { $res = "<font color=green>You Won</a>"; } else { $res = "<font color=red>You lost</a>"; } if($r['stole'] > 0) { $stole = "<font color=green>\${$r['stole']}</a>"; } else { $stole = "<font color=red>\${$r['stole']}</a>"; } if($r['attacker'] == $userid) { $attac = "<font color=green>You Attacked</a>"; } else { $attac = "<font color=red>They Attacked</a>"; } $d=date('F j, Y, g:i:s a',$r['time']); print "<tr><td>$d</td><td>$att</td><td>$attac</td><td>$res</td><td>$stole</td></tr>"; } print "</table>"; $h->endpage(); ?> Now Just put a link wherever you want. <a href=attacks.php>Your Attack Log</a> Thank You Again. DEMO: At http://www.gangstercity.net/attacks.php
  24. Is this still for sale.
  25. I have noticed that when a member adds their codes in the code format. The <a href='..... turns into <a href="http://.... and at the end of that target="_blank. There are more stuff that happens. Which causes problems.
×
×
  • Create New...