Jump to content
MakeWebGames

Magictallguy

Administrators
  • Posts

    2,140
  • Joined

  • Last visited

  • Days Won

    148

Everything posted by Magictallguy

  1. Re: How the hell does this work? You must've removed the item_remove() function from the global_func.php
  2. Re: How the hell does this work?   I've already posted on rastus' topic about it after your thread - go see it.
  3. Re: Item market error   The v2 itemmarket.php is fairly well known for having a function named item_remove() in there.. Simply find both instances of it (in the switch() and the actual function itself (both found in imtemmarket.php)) and change to remove_item() - it's as simple as that.
  4. Re: .htaccess or php help needed A slight edit to OperationJarhead's method.. if($_SERVER['PHP_SELF'] == __FILE__) { exit; }   You could also rename the included files to filename.inc.php then add the following code into an .htaccess file. <Files ~ "\.inc.php$"> Order Allow,Deny Deny from All </Files>
  5. Re: need help with v2   [me=Magictallguy]laughs quietly to himself[/me]
  6. Re: THIS OR THAT? PHP Magictallguy, or Karlos? :P
  7. 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.
  8. 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
  9. 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.
  10. 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
  11. 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)..
  12. Re: Thank a CE mccode Mod Developer Day Happy to help :)
  13. 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..
  14. 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
  15. 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.
  16. Re: GFX I see three :P And don't crop it, it looks better like that! :D
  17. Re: Energy bar Haha, nice fast work there BlueDevil ;) (post deletion) To Dimension: I'll keep it short and sweet.. Shut up, grow up ;)
  18. Re: [mccodes][V2]changable currency mod   Not my game, just the game I'm the "Chief Website Developer" of..
  19. Re: [mccodes][V2]changable currency mod I'll just use mine :P http://magictallguy.co.uk/screenshots/b ... ings-2.png
  20. Re: intergrate html layout into mccodes Resolved on my forum :P
  21. Re: [MCCODES v2] Attack restriction   Your code contained an error..
  22. Re: Function help   ... yes you can -.-
  23. 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
  24. 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*
  25. Re: SQL You need to end your INSERT query with the delimiter ";" INSERT INTO `settings` VALUES (NULL, 'steps_daily', 100);
×
×
  • Create New...