Jump to content
MakeWebGames

Spudinski

Members
  • Posts

    1,731
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Spudinski

  1. Stop quoting ten year old stuff. 2001 was the time of PHP 4.1.0, again... RTFM.
  2. Two words, test it.
  3. Just for everyone's information, I'm not American nor fat. To get the thread on topic Test the script I produced, and tell me what you people get.
  4. Personally, this would be a great waste of time. There are thousands if not millions of scammers out there. We should just be aware of what is actually going on out there, more than that - logic comes into play. Ask your friends if they have any experiance with the person who doing something for you. Try and do a Google search on the persons name, and see what comes up. As the person for references that they have worked for in the past.
  5. Wow, you only found one? :P Noted, thanks.
  6. If I remember correctly it's two text boxes, so yea. It doesn't revert back though, but it does save the previous screen dimensions. Edit: bah, it uses the windows class to set the resolution. So only known resolutions I shall think.
  7. If statements for the simplest. Another way, yet I don't want to admit that programmers use is also below;   // if statement if ($foo == 'bar') fooFTW(); // "other" method $bar = array('blah', 'bleh', 'gah'); $getVar = (key_exists($foo, $bar)) ? $foo : null; $getVar(); // messy.. very
  8. I've yet to see the MCCodes v2 secured version, so I have no say it that. Also, ravan has some sort of afiliate to GO3(need info, more than a whois). @OP, I'm sorry about locking down your thread. But as you can see I have my reasons. Oh, and about the 5% chance; you were the one in a million that made it to birth, so don't count on being one of the 95%. ;) wow, now that sounded awkward
  9. Bah... a simple command prevents all uploads. chmod 0755 * chmod 0755 */* chmod 0755 */*/* --- aka. only the user should be able to read, write and execute In addition, permit no execution within the uploads dir.   Not really efficient, as some requires more permissions; but this is the most solid permission set that is widely used. In addition, you can run Apache in a chrooted state and chown the files to Apache.
  10. PHP5 already supports IPv6.
  11. Just to let everyone know... jQuery is a framework and basically a useful tool for a lazyman. I prefer MooTools, yet jQuery is what I would have to admit easier to use.
  12. It's already set to scroll vertically by the stylesheet.
  13. Why jQuery? It's only one framework. And re-making something like that wouldn't be free, it's hard work for most people.
  14. I know... and on top of that; Try writing Delphi programs(on play teeworlds) on a screen resolution at 800x600. It sucks. It's like, you write this form that fills up the whole screen, and when you do the homework at home it's this tiny little blup on the screen. And then... the teacher goes off at you for making the program fullscreen 'cus it actually looks better.
  15. Browsers default height property for div element is null, this is equal to 100%. All of it's contents are displayed. Also, I wonder if you ever hear about the "max-height" property? It's CSS 2 if I'm not wrong. This means... if the height is more than 500 pixels, it's cut off. And to my ingenious thinking, I added an overflow property. The overflow property defines what should be done with the contents that are cut off - I set it to scroll.
  16. Bah, the hell with CAPTCHAs. There are many bots that can read the MCCodes CAPTCHA. Though, the attacking thingy you spoke about; there is a session defined when attacking(can be located in attack.php) and also a check to see if your on the actual attacking page(located in header.php). In theory, opening any other page while attacking, would set the players experience points to zero, null - nada. And you will never stop anyone who wants to browse in multiple tabs, or who wants to refresh their page. The user is making use of the new web technologies, why don't you adapt your game to it as well?
  17. Some technical data that may count.; Defining a string a literal 'string', may cause a problem with the case the word is defined as(CAPS or not). Try low-case names, it might just help.
  18. People who try to act like smart pants... :P Look at the CSS stylesheet for each of those, they don't have a height property. Now, try to prove me wrong. ;)
  19. Refreshing a page, doesn't enable cheating. Why would you want to take the ability to refresh a page away from a user? Please explain.
  20. @Danny: I'd like to see that. I've also created my open-source game engine with O.O.P. and everything, pretty much the most solid and secure available. But guess what, it's not getting nearly as much attention(even though it was just created as a very dynamic base that can adapt to anything). I love MCCodes, and I have sufficient believe in it. It's come a very far way. If most of you people who flames at MCCodes for every little thing was there in the beginning, about four to five years ago you would actually respect it for what it is.
  21. Well, nothing is 100% secure in this world... Anyways, to the point; your use of colour is awkward to say the least. I'd suggest using another colour scheme for your game.
  22. A crontab is a file that specifies what commands should be run at certain times, much like Window's Scheduled tasks. A file on your server that is run repetedly every few minutes or hours, or days can be set within a crontab file. To do this, you can either insert the command via the cPanel, or by command shell(this would require SSH access to the server). In cPanel, there should be a action for crontabs on the default page, you can manually set the crons here via a user interface. In a command shell, enter "EDITOR=nano"(unsure?) and then just type "crontab -e". It will display all the crons currently active. You can then insert a new line at the bottom, "* * * * * php /home/(username)/public_html/(cronfile.php)". There are allot of tutorials for this, just Google.
  23. It's once a month, but if you do so that post is also deleted. :\
  24. Haha, still we can not delete it or anything. :P
  25. Nope, but have you been to the panel lately? 219 .... So yea.
×
×
  • Create New...