Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. Re: Sick & Tired HaHa, me too im soon going to bed...
  2. Re: Sick & Tired Decepti0n, i know you can code better than me, you been in the coding game longer than what i have.
  3. I am sick and tired of people adding me to msn to ask me this:   Well i can tell you this, i will admit i dont like the form that isomerizer code's but i would say he would be the only person that stands at my standards of php. Theres your answers to those who want to know!
  4. Re: game colours I would go for dark but bright theme stands out
  5. Re: ADDON For Burn Down Users House Vr1 Ive got to say, but the code's look very similar to the one i coded into finalassassins.com about a year and half ago.
  6. Re: Activation code and cron V.2 At the top of activation.php you got $c; shouldnt it be global $c; :roll:
  7. Re: Script For Header Umm, the whorehouse of mine there is 2 versions, the free one and the one i made and is paid modification. 2 Different mods.
  8. Re: Script For Header Yh, umm atleast i use original ideas. Unlike you majority of your code's has already been made. And look i recoded my own brothel, and people say mine is better and umm, lets say brothel was created lets see 2 years ago! So please m8, come up with your own original idea.
  9. Re: Script For Header Why not? So in everypage it just tell's you what page you on? pretty stupid. Why not have a description for it. And easily you could add it into a new file and just call it into header.php wow not very dificult, tho when on streets.php it wont say streets it will say Searching Streets
  10. Re: New Unified Staff Panel w/ Staff Logs [v1] Yes z-e-r-o but your code will be lets say, insecure & the normal coding on all games EG:   if($ir['userid'] != 1) { echo "You are not aloud here."; $h->endpage(); exit; }
  11. Re: My forgot password. [v2] & [v1] It inspired you to make a mod? Let me see, what mod? change some code of mine and done?
  12. Re: Script For Header Forget what z-e-r-o is saying, in matter of fact all his script is doing is removing the / and the .php. Now why that when you can have your own descriptions, For example Searching Streets. So z-e-r-o dont try and act clever.
  13. Re: An introduction to security Well yes what this does is if they have no email set it blocks them from game gives them an input and then once they input it changes there email and redirects them to ?donem=emailinputed. So befor it changes the email it has been secured.
  14. Re: An introduction to security Nyna just a question, how would i get rid of this error_report:   if($_GET['donem']) { echo '<script language="javascript">alert("Your email has been changed to '.$_GET['donem'].'");</script>'; }
  15. Re: An introduction to security heres what i only got for errors Notice: Undefined index: donem in /home/rapidri1/public_html/header.php on line 211 Maybe because i have coded my header.php from scratch and mainly other files.
  16. Re: An introduction to security Ok nyna is a good person at redirecting to site's not me but ok say you have a $n that is not being called out for example:   if($ir['userid'] == 1) { $n = "BOO"; }   By putting error_reporting(E_ALL); on it will say unexpected something some thing $n blah blah. Now you will need to forget about those error's and rather fix the other's. Thats all i got to say on error_reporting(E_ALL);
  17. Re: An introduction to security error_reporting(E_ALL); will display error's but majority of the time you will not be able to get rid of those error's.
  18. Re: Script For Header I will be making a different script and selling it for $10. Totaly different to this one. By the way pog-one, i went to your game. You might want to check up for the security on it.
  19. Re: Script For Header Anyone here cared to post a screen shot?
  20. Re: Script For Header What it does it ads a text next to your title saying what you are doing. Like if you are on explore.php it says Exploring
  21. Re: New Unified Staff Panel w/ Staff Logs [v1] $100 for a v1 staff panel is pretty expensive huh?
  22. Re: Need some help. Then again the while was just to random up the count. But i got it fixed.
  23. Thanks to nyna for helping me on this. $table = array ( "explore" => "Exploring", "index" => "Home", "inventory" => "Items", "mailbox" => "Checking Mail", "events" => "Checking Events", "gym" => "Training", "gym2" => "Training Donator", "criminal" => "Criminal Grounds", "docrime" => "Doing Crime", "streets" => "Searching Streets", "announcements" => "Checking Announcements", "job" => "At Your Job", "education" => "At School", "hospital" => "At The Hospital", "jail" => "At The Jail", "forums" => "At The Forums", "newspaper" => "Reading Newspaper" ); $key = substr($key = basename($_SERVER['PHP_SELF']), 0, strpos($key, ".")); $page = isset($table[$key]) ? $table[$key] : " "; Add that to header under function start headers. Next to display go to where the title is displayed and put {$page} next to {$set['game_name']}. Thanks
  24. Re: Need some help. Im not that familiar with php function's, so i just use what i know to try and make it work. Thanks.
  25. Re: Need some help. Oh yeah, forgot to mention what i want this script to do. What i want it to do is that if you are on that certain page it will display the proper one. For example. If i am on explore.php it should say Exploring as here it is provied:   "explore.php" => "Exploring",   Thanks
×
×
  • Create New...