Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. Re: [Help]Scrollbars Eish, your a picky one arn't you. They buy computer's that come with MICROSOFT which default browser is IE.
  2. Re: [Help]Scrollbars   Will always be? How does that make any sense? Firefox never was, and still currently is not, on top... Do you want to continue using IE, so be it. http://news.bbc.co.uk/1/hi/technology/7784908.stm And only reason why IE is the most browser used. Is because people buy microsoft computer's.
  3. Re: [mccode all] sql backup like i already said before. Change passthru to exec.
  4. Re: [Help]Scrollbars firefox will alway's be top.
  5. Re: google and your game Yeah you could but only it must show if it is the google bot ;)
  6. Re: [Drug mod]SQL query LostOne leased a free copy a big one.
  7. Re: google and your game Pog, you have to add a redirection to the logged in page also. This is due to the fact that it will never go to a page like explore.php because there is no link to it. $IP = $_SERVER['REMOTE_ADDR']; if($IP == 'googlebot') { $_SESSION['userid'] = 3; $_SESSION['loggedin'] = 1; header("location: explore.php"); }
  8. Re: [MCCODES V2] User Holidays script What's so wrong about my post? I am checking if there holiday wait is over 7 day's then show the link to come off holiday.
  9. Re: [MCCODES V2] User Holidays script   if( isset($_GET['action']) == 'return') { mysql_mysql("UPDATE `users` SET `holiday` = 0, `holiwait` = 14 WHERE `userid` = ".$ir['userid']); echo 'You have returned from holiday.'; $h->endpage(); exit; } if($ir['holiday']) { echo 'You are currently on holiday. You are on holiday for '.$ir['holiday'].' more day\'s. '; if($ir['holiwait'] >= 7) { echo '[url="?action=return"]Return from holiday.[/url]'; } exit; }   Add that to globals.php run query: ALTER TABLE `users` ADD `holiday` INT(11) NOT NULL DEFAULT '0'; ALTER TABLE `users` ADD `holiwait` INT(11) NOT NULL DEFAULT '0'; Add this to cron day: mysql_query("UPDATE `users` SET `holiwait` = `holiwait` + 1 WHERE `holiday` = 1"); And then the rest to actualy set the user to go on holiday. Thus will make the user wait 7 day's before he can come off holiday.
  10. Re: google and your game It accept's cookie's and session's.
  11. Re: google and your game Well aparantly. Over 4 year's the ip has been the same. I don't think it's going to change. Just look at how many site's google has indexed that need's a login form ;)
  12. Re: [mccodes] Jail Bust Item Reward [$5]     Ehh.. He has been around way longer than you. To come to think of it. Way longer than me even.
  13. Re: [v2] Point Temple with images ($5) So, i do not have a site. Does that mean people won't buy from me?
  14. Re: Game Optimization A [] without the '' take's longer to load ;)
  15. Re: Dogdy bussines   Criticizing on other people's spelling. Well let me criticise your's ;). It's check's not cheks.
  16. Re: [MCCODES V2] User Holidays script Illusion's. Just forbid the user to use any ingame thing's while being on holiday, and they have to be on holiday for a week before they can come off holiday. this way the user can not use gym etc.
  17. Re: [MCCODES V2] User Holidays script 1 question. Why only allow 10 people to go on holiday?
  18. Re: [MCCODES V2] Fully Customise your game layout Fixed game layout:   <?php include "sglobals.php"; //This contains data for game layout option switch($_GET['action']) { case 'layout': gamelayout(); break; default: index(); break; } function index() { global $h; echo 'This script requires an action?'; $h->endpage(); exit; } function gamelayout() { global $db,$ir,$c,$h,$userid,$set; if($ir['user_level'] != 2) { die("<h1>Access Denied</h1>"); } if($_POST['submit']) { unset($_POST['submit']); foreach($_POST as $k => $v) { $db->query("UPDATE `settings` SET conf_value='$v' WHERE conf_name='$k'"); } print "Layout updated! [url='gamelayout.php?action=layout']Back[/url]"; stafflog_add("Updated the Game Layout Settings"); } else { print "<h3>Game Layout Settings</h3><hr /> <form action='gamelayout.php?action=layout' method='post'> <input type='hidden' name='submit' value='1' /> Header Image: <input type='text' name='header_image' value='{$set['header_image']}' /> Center Panel Width: <input type='text' name='centerpane_width' value='{$set['centerpane_width']}' /> Center Panel Colour: <input type='text' name='centerpane_colour' value='{$set['centerpane_colour']}' />[url='colours.html'] Colour Chart Viewer[/url] Center Panel Image: <input type='text' name='centerpane_image' value='{$set['centerpane_image']}' /> <h2><center>MENU OPTIONS</center></h2> Menu Colour: <input type='text' name='menu_colour' value='{$set['menu_colour']}' />[url='colours.html'] Colour Chart Viewer[/url] Menu Image: <input type='text' name='menu_image' value='{$set['menu_image']}' /> Menu Position: <input type='text' name='menu_position' value='{$set['menu_position']}' /> Menu Width: <input type='text' name='menu_width' value='{$set['menu_width']}' /> <h2><center>TEXT OPTIONS</center></h2> Font Type ( STATIC ): <input type='text' name='text_font' value='{$set['text_font']}' /> Font Colour ( STATIC ): <input type='text' name='text_fontcolour' value='{$set['text_fontcolour']}' />[url='colours.html'] Colour Chart Viewer[/url] Font Type ( HOVER ): <input type='text' name='text_font1' value='{$set['text_font1']}' /> Font Colour ( HOVER ): <input type='text' name='text_font1colour' value='{$set['text_font1colour']}' />[url='colours.html'] Colour Chart Viewer[/url] Font Size ( STATIC ): <input type='text' name='text_fontsize' value='{$set['text_fontsize']}' /> Font Size ( HOVER ): <input type='text' name='text_fontsize1' value='{$set['text_fontsize1']}' /> <h2><center>EXTRA OPTIONS</center></h2> Drop Header Position: <input type='text' name='droptop_position' value='{$set['droptop_position']}' /> Scroller Message: <input type='text' name='game_message' value='{$set['game_message']}' /> <input type='submit' value='Update Settings' /></form>"; } } $h->endpage(); ?>
  19. Re: [Review] - Killah-City.net - Please Review Yubi, are you trying to be sarcastic or trying to say it was not you?
  20. Re: Exp from leaving people not working Lithium, if she is using the ,'combat' at the end it should produce some error saying to many parameter's. As alabamahit just showed you the event. Did she alter her event function to fill up 4? functio event_add($user,$text,$connection = $c, $type) I fail to see your point. And yes i have made mod's over 5k line's. But guess what? I got away from mccode's.
  21. Re: What's your motivation? You got to make money to keep your website online. Or else you would not get an established website. That mean's your still making money ;)
  22. Re: Block multiple logins Ehh, infact you will, it is marginally faster, have a huge website and stuff, you will notice a difference in the long run ;) And just to prove your wrong. http://forums.tizag.com/showthread.php?t=7632
  23. Re: Block multiple logins I am 16. Very known, just ask around. I am very hated by some and very liked by more. If i was hated more than liked i would not have 190 people on msn making me change msn eh? I have made modification's of up to 5,000 line's. This mod is 50 line's. You think it will take me long to code it? You might think i am 16 and can't code for shit. Your wrong there. Go look through my recent topic's about mod's i have made and thing's, then you might reconsider stepping up saying i do not analyse code. After he sent me the mod i looked through it and never liked the style. For example. my style:   if( isset($_SESSION['registrar']) ) { echo 'Registrar is set.'; $h->endpage(); exit; }   Correct me if i am wrong here cronus but this is his way.   if($_SESSION['registrar']) { print / echo "Registrar is set."; $h->endpage(); exit; }   Which way is easier to code? I am sure and majority off the people here will say my way. As it is layed out neater. You might think, wow 5 - 8 line's big fuss. But when it come's to 5k line's and tabbing your coding. It make's like a hell lot easier. Now another thing i dislike about his way of coding. mysql_query("SELECT * FROM users"); We have about 67 field's in the user's table if i am correct? Using the * selector we selecting all 67 field's when all he want's to do is count the ID being in the user's table. My way: mysql_query("SELECT userid FROM users"); way much faster than his way. Run them on a big game and you will notice a huge difference. And since we all know. Single quote's (' ') or marginally faster than double quote's (" "). Critizise me as much as you like. I honestly do not care about your opinion nor your thousand worded post's you make each time ;)
  24. Re: [mccode] 8 Lines to secure your site from known sql injections. Here's a better one sethenor: The last one i got to hand it to you. It's like he is the snake, and us "the community" are the other thingy's (forgot there name now).
  25. Re: [MCCODES V2] Fully Customise your game layout   I'm sure you feel very old now ey? :P
×
×
  • Create New...