Jump to content
MakeWebGames

Magictallguy

Administrators
  • Posts

    2,146
  • Joined

  • Last visited

  • Days Won

    149

Everything posted by Magictallguy

  1. Re: The Revamped Item Market, please help! The Game Modifications is not the place to post help requests - I'm sure fbiss is growing tired of constantly moving your topics. Please post them in the right section.
  2. Re: Idea for a paid mod...will pay. I believe it's do-able, and when you think about it, it doesn't seem that hard. A few edits to register.php, gym.php, (possibly) docrime.php. For health/energy, a simple edit to the cron_day.php. That, and a slight users table alteration. If I had the time, I'd do it for free - but I don't at the moment.   To anyone else wanting to do this, I've just given you one way of doing it - create it how you wish though :P
  3. Re: Design mod Mainly the header.php for ingame layout/design. If you want to go more "in depth" about it, most of the files use tables, change them to what you wish.
  4. Re: Effects mod with cron works with v2 Just one thing I would change to enable full functionality..   <?php if($r['itmname'] == 'speed') { if($ir['speed'] > 0){ die("You are already on speed, you trying to have a heart attack?");} $db->query("UPDATE users SET `speed`='16' WHERE userid={$ir['userid']}"); } ?>   becomes <?php if($r['itmname'] == 'speed') { if($ir['speed']) { $db->query("UPDATE users SET `speed`='16' WHERE userid={$ir['userid']}"); echo "You are already on speed, you trying to have a heart attack?"; $h->endpage(); exit; } ?> I can't be bothered recoding it to my standards, but meh.. xD
  5. Re: Help !!URGENT!!   i am new.. i need to put secure code to every single script? Well, that's one way of putting it. Don't look around CE for "8 lines to secure your site", or things of that nature. It takes a lot more than 8 lines for your entire site.. I've just spent around 7 hours recoding the v2 forums.php (and hated most of it, became very repetative), but now, it is secure (more secure than my previous recode version)..
  6. Re: Thank a CE mccode Mod Developer Day Happy to help :)
  7. Re: Viewing codes hack The PayPal ToC state that you must be 18 before you can own a PayPal account - that doesn't stop people from signing up though does it..
  8. Re: Help !!URGENT!! If you want your game to be "fine", you will need to secure EVERY file.. Or, if you're like me and a bit of a code perfectionist, recode the entire lot! xD
  9. Re: TwIsTeD WiShEs ! Granted, but then you forgot all server side languages. I wish people would actually take the time to learn how to code instead of asking us .. "more experienced" WebDev'ers.
  10. Re: GFX I see three :P And don't crop it, it looks better like that! :D
  11. Re: Energy bar Haha, nice fast work there BlueDevil ;) (post deletion) To Dimension: I'll keep it short and sweet.. Shut up, grow up ;)
  12. Re: [mccodes][V2]changable currency mod   Not my game, just the game I'm the "Chief Website Developer" of..
  13. Re: [mccodes][V2]changable currency mod I'll just use mine :P http://magictallguy.co.uk/screenshots/b ... ings-2.png
  14. Re: intergrate html layout into mccodes Resolved on my forum :P
  15. Re: [MCCODES v2] Attack restriction   Your code contained an error..
  16. Re: Function help   ... yes you can -.-
  17. Re: [Mccodes V2] Set Up V2 the way you want it without altering files.... Hehe, created my own version - slightly different, but works the same.. Screenshots here
  18. Re: Hacked :(   Welll Ouchy, Im Jameo? I've Been Called A Whore/Idiot/Moron/Looser But Never Jameo I Think My Feelings Have Just Been Hurt ... Like Really Bad, MTG I Needa Hugg Now! I'm sowwy.. *hugs*
  19. Re: SQL You need to end your INSERT query with the delimiter ";" INSERT INTO `settings` VALUES (NULL, 'steps_daily', 100);
  20. Re: [mccodes v2] Combined Gallery and Comment System [$40.00] "fluffing around" - lol, I like that xD -- I apologise but there has been an unforeseen delay in aquiring the money. The Paws Web team can have $70 as an apology to you for yet another delay.
  21. Re: TwIsTeD WiShEs ! Granted, but she has 2 STD's and bad hygiene. I wish people would treat me right for once..
  22. Re: Bank Layout V2   number_format()..
  23. Re: Mccodes V2. Music Player. $40 No point adding magic_quotes_gpc.. It has been deprecated (no longer used) as of PHP 5.3, and removed as of PHP 6.0 - Source (PHP.net)
  24. Re: Hacked :( Meh, Craig and Jameo type very similarly then :P
  25. Re: Mccodes V2. Music Player. $40   First error - CHMOD the file to 0777 (0755 if your host has Safe Mode enabled) Second - check all input. If you don't like it, remove it! Secure all input, that's a must in any case..
×
×
  • Create New...