Jump to content
MakeWebGames

Magictallguy

Administrators
  • Posts

    2,124
  • Joined

  • Last visited

  • Days Won

    144

Everything posted by Magictallguy

  1. Re: Help with this???   Create a database, a database user, and assign the user to the database with all priveledges. Import the SQL file Edit mysql.php to match your database information
  2. Re: Naruto Online RPG To Pudda's defense, you are able to get .co.uk, .net, and .com domains for free if you know where to look ;)
  3. Re: Wanted email verification mod v1   Or you can get someone else to make it for you :/
  4. Re: Pot Of Gold $15 [mccode v2] You're welcome for my help too -.-
  5. Re: Help With Forums   Out of curiousity, who fixed it?
  6. Re: marriage, sharing housing?   Mine does -.- http://magictallguy.co.uk/screenshots/marriage
  7. Re: THIS OR THAT? Virgin - I like the name ;) Mint Chocolate Chip, or Neapolitan?
  8. Re: One Big Code!   $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false; if(!in_array($_GET['action'], array('', 'this', 'is', 'boring'))) { echo "You're supposed to pick an existing action -.-"; exit; }
  9. Re: THIS OR THAT?   Neither, I hate social networking sites :P Air Force or Navy?
  10. Re: mcodes v2 installer.php help Chances are your class folder permissions aren't set to 755
  11. 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
  12. 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
  13. 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>
  14. 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..
  15. 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
  16. 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
  17. Re: THIS OR THAT? WKD //Vodka tastes like paint thinner -.- Fun or Games? :P
  18. Re: THIS OR THAT? Batman! //He's the only superhero I know of that doesn't have super powers! Chocolate spread or peanut butter?
  19. Re: Toughest Developer Puzzle Ever   Same, I'm stuck as I have very little knowledge of JavaScript..
  20. 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; }
  21. 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..
  22. 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..
  23. 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...)
  24. 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!!!!
  25. Re: help:(   "I paid for them" becomes "They were sent to me".. Nicely done there JonoH ;)
×
×
  • Create New...