Jump to content
MakeWebGames

Magictallguy

Administrators
  • Posts

    2,140
  • Joined

  • Last visited

  • Days Won

    148

Everything posted by Magictallguy

  1. Re: mcodes v2 installer.php help Chances are your class folder permissions aren't set to 755
  2. Re: [REVIEW] Deadly Ghetto. Haha, it was shelled.. (not by my hand) I also see plenty of 500 Internal Server Error logs on there - someone went to town on your site O.o
  3. Re: Crime Creation Error [v2] I'm getting bored of constantly replying to this particular error.. When creating a crime, fill in ALL the boxes. If you don't want the crystals to payout, input 0
  4. Re: credit card   <td style="font-size: 10px;">Money:</td> <td colspan="2" style="font-size: 10px;"><?php echo money_formatter($ir['money']); ?></td> <td style="font-size: 10px;"><?php echo money_formatter($ir['creditcard']); ?></td>
  5. Re: mccodes v2 help   echo sprintf("There %s %s player%s registered", ($rows == 1) ? 'is' : 'are', number_format($rows), ($rows == 1) ? '' : 's');   Output: There are 0 players registered There is 1 player registered There are 2 players registered There are 3 players registered etc..
  6. Magictallguy

    PHP Question

    Re: PHP Question   PHP comes from the C family ;) I also did the same thing. Opened a game I knew virtually nothing about, played around with the codes, and got to where I am now :P (the same damn well uncomfortable chair!) xD
  7. Re: [Mccodes v2] DatatBase quiestion   You can do that, or you can create another database with the same data and use MC Craps' change_database() function :P
  8. Re: THIS OR THAT? WKD //Vodka tastes like paint thinner -.- Fun or Games? :P
  9. Re: THIS OR THAT? Batman! //He's the only superhero I know of that doesn't have super powers! Chocolate spread or peanut butter?
  10. Re: Toughest Developer Puzzle Ever   Same, I'm stuck as I have very little knowledge of JavaScript..
  11. Re: mccodes v2 help     $rows = $db->fetch_single($db->query("SELECT COUNT(userid) FROM users")); if($rows >= 20) { echo "Registration is closed until the game is brought out of beta"; exit; }
  12. Re: [ANY]Source Viewer   <?php echo "<html> <head> <title>PHP Source Viewer</title> <style type="text/css"> TD { FONT-SIZE: 12px; COLOR: #000000; FONT-FAMILY: Verdana } </style> </head> <body> "; $size=filesize($file); $file_size = round($size / 1024 * 100) / 100 . "Kb"; echo "<center><FONT SIZE=2 face=arial>Viewing [b]$file[/b] Filesize: [b]$file_size[/b]</FONT><table width=94% border=1 bordercolor=#AFC6DB cellspacing=0><tr><td>"; $po=show_source($file); ?>   Fixed, but I don't know why. This is a HIGHLY unsafe thing to add..
  13. Re: .htaccess or php help needed   Don't you mean   if(!defined('Something')) die('Get out here!');   No. Haunted Dawg's method is correct. So yes, you do mean that..
  14. Re: Spam filter New-   Perhaps "flagging" the message? Insert the flagged message into a new table (for example; `flagged_mail`), create a log for it, and Bob's your crocodile! (Seen that Rowntree's advert too much...)
  15. Re: Converter   Please tell me you're not serious? You're looking for a site that will "auto-create" mods just from your description? HAHAHAH!!!!
  16. Re: help:(   "I paid for them" becomes "They were sent to me".. Nicely done there JonoH ;)
  17. Re: day one   Haunted Dawg created the 1 and 5 minute cron jobs, I then turned it into 1 min, 5 mins, 1 hour, and 1 day cron ;)
  18. Re: help:(   lol you need to rename the index2.php to just index.php but make sure the game is installed and then you have to secure your site lol mccodes original has over 70 exploites and bugs Yeah, that's just the forums.php alone!
  19. Re: bbcode problem You haven't globally defined the $bbc variable.. Find function gang_view() { global $db,$ir,$c,$h,$gangdata;   and change to function gang_view() { global $db, $ir, $c, $h, $gangdata, $bbc;
  20. Re: Looking for a In House Coder (30% Rev Share From Game)   If I had ?1 for each time I heard that, I would, quite literally, be a millionaire!
  21. Re: THIS OR THAT? LITTLE GREEN MEN!!! Democracy xD Fluff or spoons? O.o
  22. Re: Free secure forums?   I already have, though it is using my custom functions, so I won't be releasing it. They can be seen on Criminal Generation and Deadly Country
  23. Re: day one   Not necessarily, you can run "crons" without needing Cron Jobs
  24. Re: help:( You posted 2 topics, saying the exact same thing -.- Have you edited viewuser.php? If not, check the users table in the database. There may have been an exploit/hack - I'm guessing so anyway, based on what I see from your language (I haven't even looked at your game) - check the ID's..
  25. Re: Name bug RTFM! trim()
×
×
  • Create New...