Jump to content
MakeWebGames

sniko

Members
  • Posts

    2,210
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by sniko

  1. I'll re-upload tonight, or if you add me on Skype I'll send it to you through there. Also please read this.
  2. These are probably actual people registering, btw (not bots) They use an actual human name rather than a handle because it makes their hosting look more legit and professional... until you see their Twitter feed.
  3. Start with reading What is SQL injection, then read OWASP #1 and OWASP #2. I'm not giving you every answer, sorry.
  4. Last I tested it - about 2 years ago - it was. Unsure about now.
  5. Sorry to hear that. Side note: If you cannot afford the script + domain + decent hosting, perhaps it's the wrong time to open a game? http://makewebgames.io/showthread.php/45311-Secure-your-game http://teachthe.net/?cat=59
  6. sniko

    Viking Era

    It's text-based, yes. But not "like" McCodes (ie: the generic games that form from the McCode base)   Yup, that's correct :)
  7. sniko

    McNodes????

    The excessive amount of question marks in the title is weird and distracting. Cool idea. I'll support where I can :D (Plus, I love the name, please keep it)
  8. sniko

    Viking Era

    To pre-register, please visit http://vikingera.com and enter your e-mail address. When we open for BETA testing, you'll be the first to know! To pre-register, please visit http://vikingera.com and enter your e-mail address. When we open for BETA testing, you'll be the first to know!
  9. eregi_replace should be preg_replace eregi should be preg_match split should be explode (maybe) Aaaaaand, if you RTFM
  10. Buy the license and bind it to your domain via http://mccodes.com/myproducts.php
  11. Raven script actually has some of my free systems in it :D (Mom, I'm famous!) Announcements on previous attempts at taking Raven down http://makewebgames.io/showthread.php/36505-MCCodes-Copyright-Information?p=228297&viewfull=1#post228297 http://makewebgames.io/showthread.php/36505-MCCodes-Copyright-Information?p=229991&viewfull=1#post229991 http://makewebgames.io/showthread.php/36505-MCCodes-Copyright-Information?p=304558&viewfull=1#post304558 and probably more...   From what I've heard, it was a straight clone with a new template and encrypted source. Unsure what it's like 3 years later...
  12. Oh I see. My bad. Though, using a broken encryption method for passwords, should you consider all passwords insecure/leaked and force a change? I would.
  13. To finish this off, you'd do;   hash('SHA512', md5($password))   You'd then needed to do the same elsewhere (my interpretation was pure SHA512 hash algo, and not a SHA512 of the md5 password)
  14. Yes. Add a new column to the users table to indicate they're using the old password encryption method. ALTER TABLE `users` ADD COLUMN `encryption` varchar(8) NOT NULL DEFAULT 'md5' AFTER `userpass`;   On globals.php, check they're using the old encryption method and send them to change their password if( $ir['encryption'] == 'md5' AND $_SERVER['REQUEST_URI'] != '/preferences.php') { ob_clean(); //You might this and ob_start(); header('Location: preferences.php?action=change_password'); die; }   Then, when they've changed their password, update the encryption value to SHA-512
  15. Choosing a license doesn't need to be scary Have a read of: http://choosealicense.com/ :D Though, my personal favourite: http://www.dbad-license.org/
  16. You sure are getting EXP for your necromancy skill, recently.   if($ir['crimesdone'] < 10000) { print "You must complete at-least 10,000 crimes to access this area. You have completed ". number_format($ir["crimesdone"]) ." crimes"; print "<a href='honorawards.php'>Go Back to Honor Awards</a>"; $h->endpage(); exit; }
  17. Start by not copy and pasting and reading the code.
  18. It depends on the contract that would be agreed upon before starting the job. If all parties agree the work will be licensed under "LICENSE XXX", then both parties need to adhere to the licensing agreements.
  19. There is a class (Pusher). Either you can overwrite the entire class by issuing another namespace, or extend the class and overwrite functions as none are marked as final. Throughout the class, I inject dependancies (db object and $ir) rather than bringing them into the scope via global. The div's used are marked individually with nice names so you can easily override styling for a specific aspect (ie: change user mentions background color)
  20. They are listed here: http://harrydenley.com/integrate-pusher-with-mccodes/ though I'll probably be using that wiki MTG has set up
  21. You will also need the .htaccess file (git hates dot files, sorry!)   RewriteEngine On RewriteRule ^chat$ lib/pusher/chat.php [L,QSA]   I'll be updating the zip tomorrow evening
  22. Thanks. I'm re-uploading the ZIP now to make it a "normal" zip.
  23. I've attached the code. I believe that's everything :) Enjoy. Donation goals $11 / $150
  24. Code released See thread: http://makewebgames.io/showthread.php/45856-Free-real-time-chat Dropping the code when countdown hits 0.
  25. WIN! - 150$ Pusher credit: http://makewebgames.io/showthre...l=1#post311226 The FREE real-time chat module for your game is finally here! See the original thread. Read the docs: http://harrydenley.com/integrate-pusher-with-mccodes/ Official wiki: http://magictallguy.tk/wiki/pmwiki.p...n.MWGSnikoChat Code Drop In See post attachments Donate to the project Special thanks to the sponsors and @Phantomist for the graphics. See him for custom emote packs! Code released under the DBAD license. Add-ons Staff panel by Magictallguy: http://makewebgames.io/showthre...l=1#post311092 Alternative chat solutions BlueImp integration by Magictallguy & Zettieee - http://makewebgames.io/showthre...l=1#post311180 chat.zip
×
×
  • Create New...