Jump to content
MakeWebGames

lucky3809

Members
  • Posts

    1,115
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by lucky3809

  1. I poked his nose!! It is VERY POSSIBLE just have to be smart! :D Hint: Go up the center of the vid very slowly he wont swap at your mouse pointer lol.
  2. Same as someone ripping your ideas and stuff you created and opening it up to public, this seems the only way to communicate is open up a thread, because most people just won't talk to Peter, so yeah this thread is reasonable, and it wasn't made for others to interfere it was made for one come clean and at least talk, which happened. How hard was it for Modernmafia to message Peter and asked if it was ok if he used some of his images but not the whole template Peter created? There is only 2 answers Peter would have gave NO/YES... I'm on no sides here, but Peter has had this problem on this forum of people ripping his work and not asking, and in the end he has ALWAYS tried settling with them, and making threads about it for them to communicate because the other is not answering their emails,chat, and what not... So this thread validates his purpose. I would have done the same thing if I was being ignored in mails,chat, ect.... I wouldn't though want others interfering in the situation unless they had evidence they belonged in it.
  3. Really depending on your style and what kind of game/website your designing. And what colors your using and want.
  4. This should really be between Peter and ModernMafia, others should mind their own, and leave it to them to sort out. Unless you have evidence that includes yourself into this equation. Peter is a nice guy, and has dealt with the majority template creators who have stolen his work or ideas, ect... He probably would have no problem with you asking if you can use his work in a template your creating all you needed to do is message him, not hard to do or ask him, if he had said no respect that answer, and you will have more respect from him, and maybe later on down the road he will eventually say go ahead lol. It's just the idea people are ripping his work that he spent time in creating, and reproducing them without even trying to ask his permission. It's not about the image it's the respect you don't give to the creator who created it and the idea imo...
  5. yes it does have an event_add function, and that is what he should be using more easier.
  6. Only chrome works for me, for your login... If you look into firefox and click the source code the errors are in red and if you hover over them they will tell you your problem with your html but as others has said its that onload stuff probably causing it
  7. edit :nevermind... what i thought was not it lol Your php open and closing tags i thought was the problem, but may be wrong... this part does stick out in the input area when i test that script on my test hosting other then this there is no error ></td> <tr> <tr> <td><strong>Type:</strong></td> <td><select name=
  8. We all make spelling mistakes I do all the time,and I seen the very same ones bashing him for it on here do the same, for someone who says they don't are lying. And maybe prototype in not from an english speaking country, so this may be the reason his writing skills are not top notch. Just saying... Don't bash someone until you know the facts. This forum has started becoming a bashing forum, for such little things, that are avoidable.
  9. Yes it is different with a SESSION you can not have use the same name... However he just wanted to bash before even reading what was going on because obviously he didn't care to help... @modernmafia- your welcome. What was your problem, and how did you fix it? Please shed some light on the fix, so others who has the same problem can use your input to help them also fix this error.
  10. nvm my post if you know the problem then help, instead of bashing someone for trying to help.
  11. Your intentional error is $_SESSION["real_name"] The reasoning for your error, you are using: real_name already somewhere in your script, as a $var, and you can not have the same name as you are already using for a SESSION $var too. such as ['real_name'] and $real_name you need to change your $var to something else like what was mention by rulerofzu.
  12. echo '<img src="'.$equip[$ir['equip_secondary']]['itmname'].'">'; Should solve it...
  13. To be honest instead of: $mailBody = stripslashes(str_replace("\rn", "[br\]", $_POST['mailBody'])); Why not replace it with: $mailBody = mysql_real_escape_string(htmlentities($_POST['mailBody'])); It's securing the whole line and you don't have to worry about that error your getting... security is not that hard.It's the mind and thinking process that makes it seem like it is.... change $_request to $_GET or $_POST...$_REQUEST is bad all away around, easily for a hackers to grab cookies and rewrite your vars.
  14. You have the same $var maybe you are using such as: real_name . look for $real_name= in your script, if you have it change it. change $username=$_SESSION["real_name"]; maybe? Or change <? session_start(); if (!(isset($_SESSION["real_name"]))) { //echo "I'm not logged in"; header('Location: index.php'); } else { echo ""; }   ?> To: <? session_start(); if (!(isset($username))) { //echo "I'm not logged in"; header('Location: index.php'); } else { echo ""; }   ?>
  15. great coder? Warning: include_once(dead.php) [function.include-once]: failed to open stream: No such file or directory in /home/content/11/9085611/html/index.php on line 100 Warning: include_once() [function.include]: Failed opening 'dead.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/11/9085611/html/index.php on line 100 He would have fixed that error, also you lack in security...   Anyhow I agree it's a copy of bootleggers, it's quite obvious. I dislike those types of games, and well 500+ players signing up? ("we are looking to have 500+ sign ups the first 5 hours into"), not to discourage your gaming experience but that won't happen. Because there is already games like yours, especially bootleggers lol.... Not to bash anyone here but once you sign up to a hosting that has not been running for over 5 years, you will ALWAYS doubt their capabilities and honesty. That is why it's best to stick with the well known hosting, that do not scam,hack,delete accounts.
  16. have you tried looking through his threads on his pro on here? might help you find what your looking for.
  17. there is an advance drug mod on this forum. not sure about a pet one though, all you have to do is use the search feature.
  18. scroll bars ruins the game...IMO.
  19. I use firefox,chrome,ie but firefox is my default, but hating the new update of 10 because it hangs sometimes.
  20. If you type in bleach rpg you will bring up quite a couple of them, what is all your take on those games, using copyright pics from that anime show? Just wondering... I personally would say they were all illegal. However not one single one has been shut down. Edit: Same thing as typing in Pokemon rpg you will bring up hundreds, they seem to let you use their trademark.pics.names as long as you are crediting them by your own copyright on your site, if you look at those websites that uses them...
  21. It works for me, tested it where are you placing this part of the code? <script type="text/javascript"> <!-- function myPopup2() { window.open( "http:/description.php?ID={$i['itmid']}'", "myWindow", "status = 1, height = 300, width = 300, resizable = 0" ) } //--> </script> I added it under the query then changed it to...   echo <<<EOF <script type="text/javascript"> <!-- function myPopup2() { window.open( "iteminfo.php?ID={$i['itmid']}", "myWindow", "status = 1, height = 300, width = 300, resizable = 0" ) } //--> </script> EOF; and it worked just fine...
  22. is_null() how hard is it to use? Like any other function, really easy. is_null($var)...
  23. There is one on here that uses multiple armour/weapons someone just linked another user to it. Edit: Found the link... http://makewebgames.io/showthread.php/36573-Advanced-Attack-and-Inventory-Mod-One-Click I am sure you can change it a bit not hard.
  24. I would say trying to learn 3 at a time would not be a problem, depending if you can remember it all, it's best to study one at a time, because then you spend more time learning that one language, how you would know when it's time to move on to another, is by quizzing yourself on what you have learned, or look on Google for that language free quizzes or test, If you find yourself stuck on a question it means you need to go back and learn more, and if you miss any. (some people are multi-taskers and can take in everything at once, some needs to concentrate on one thing at a time.)
  25. BIGINT for cash FLOAT for stats.. And as DJ said there is no unlimited to the solution but what i said will help, just make sure in your game money is not easily to get, and stats aren t easily get balance them both out and you would not have a problem...
×
×
  • Create New...