Jump to content
MakeWebGames

sniko

Members
  • Posts

    2,210
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by sniko

  1. Welcome to Panther Skeleton Version 0.1 I got a few days off work, and I decided to set myself a task - to create a simple skeleton game 'engine' within a set time-frame, I gave myself 10 hours. (The Easter clocks set me back a bit, but I somewhat achieved it :)). I hope some people can add to it; modules, re-code, whatever :) I made it for fun, nothing 'serious'.   Technologies I developed it using; Apache Version Apache/2.2.17 PHP Version PHP/5.3.4   Brief overview It uses a smart file structure, which allows very easy templating, and module handling. .htaccess for nice URLs As it being a skeleton version, only a few modules have been created Login Signup Character creation Home Logout Gym ( 01/04/2013 )   [*]Everything is 'handled' through 1 page - index.php [*]Ability to disable modules (Add disabled.panther file to the module directory of said module) [*]Easy-add avatars (public/avatars) [*]Uses mysqli predefined statements [*]It's FREE   Classes I've started writing a class to ensure making modules is easy - it's not quite finished. userclass.php __construct (Stores the users session id) getStat (Gets the stat value) getStatId (Gets the stat id - for stat creation) setStat (Sets a stat to a specific value)     How to get the code Go to my GitHub respiratory Go to my site   Donations I accept donations for this 'engine' :) If you'd like to make a donation, please go here GitTip PayPal     Preview it Thanks for your time in reading, and I look forward to the future with Panther Skeleton :)
  2. Mind testing your script with the following as a users e-mail; [email protected]%0ACc:harry@sniko,net%0ABcc:[email protected],[email protected]   And check the recipient, and carbon copy values. From the screenshots, looks good!
  3. .....why mug me, Kyle? :p I wanna look at the source when I have a chance, if I may, Kyle?
  4. Your demo site is defaced. http://breakdowncity.elementfx.com/ http://tpcodes.x10.mx/viewforum.php?f=34&sid=ff4375cecd6f85eafad366ad44e51360 Your customize game layout 'mod' looks quite familiar: http://makewebgames.io/showthread.php/32521-MCCODES-V2-Fully-Customise-your-game-layout?p=193758&viewfull=1#post193758 ... I didn't bother looking up the human vs zombie one. All your variables are the same as McCodes, which is a little suspect.   Also, stop spamming the forums :) THAAAANKKKS
  5. I may do the 3rd idea :) I've just finished it for one of my projects, I could possibly port it over :)
  6. "my beta members".... We're property of the Tall Guy now? What magic do you possess? :p
  7. What type of ugly IDE/TE are you using? Those yellow arrows are off putting :p
  8. Here's my input, Spudinski. History of Cryptography(Early stages, how it came into being, etc) I'd look into the World War(s), when sending secret information was a 'buzz' and allowed spied to send their findings back to HQ. So, with this information, I'd look into understanding how the Enigma Machine worked and was put together, it's quite fascinating really (I touched on it at college). Here's a good site for information on World War machines. Practical applications of it(where, what, how) I'd have a look at Troy Hunts blog, a Microsoft MVP, and he blogs about security flaws in modern applications - it's worth a read. GCHQ released a puzzle last year, which was quite intriguing on how cryptography was used, but it was cracked a few hours/days from it being released. They've also got a four-part puzzle going on here. I hope that helps :)
  9. sniko

    Php?

    More of a personal opinion than anything. Before I started programming, I went into the bookshop, bought his book, and it explains things in very good details (IMO).
  10. sniko

    Php?

    As you're going to take the time in learning it, do it the proper way. PHP Manual Codecademy Treehouse PHP Security Larry Ullman's books ...and of course; DIY trial and error If you're not already familiar with; The Big-O notation, basic computer concepts Mysqli / PDO (Optional) A framework; Yii, Zend. PEAR
  11. Perhaps it's a private server for mudamage. Inspector sniko strikes back
  12. Say I search for a "login" script. Will it be something like the following? <?php session_start(); if( array_key_exists('username', $_POST) ) { /* Filter and sanitize input */ /* Display relative messages */ /* Assign sessions if needed */ } ?> <form action="" method="post"> <label for="username">Username</label> <input type="text" name="username" /> <label for="passcode">Passcode</label> <input type="password" name="passcode" /> <input type="submit" value="Login" /> </form>   Or will we see alternatives, ones for the YiiFramework, or codeignitor, or zend, or cakePHP, ect.
  13. Are you looking for any specific engine? Are you looking for a minimum user base?
  14. And what frameworks are you supporting? Or is it just random codes?
  15. What's your budget?
  16. I completed the survey a few days/weeks back, but I forgot to post back here telling you so.
  17. Free Form Builder What technologies are you going to use? Have you evaluated the current 'competition' to see what standard you are competing against What can they do with these forms? What would your site provide that others wouldn't?   Image host site What technologies are you going to use? Have you evaluated the current 'competition' to see what standard you are competing against Who's (or how) are you going to cover the costs? Let's take a random picture off imgur. This image stands currently at 5GB bandwidth. [*]What would your site provide that others wouldn't?   Freelancer Reviews What technologies are you going to use? Have you evaluated the current 'competition' to see what standard you are competing against What would your site provide that others wouldn't?   Other free sites Free form builder Image host site Freelancer reviwes
  18. javascript:void(0) is used with the href attribute of the HTML <a> tag. Usually, clicking on a hyperlink reloads or redirects to another webpage. This may not be feasible every time. Many times, clicking a hyperlink requires performing some client side script operation instead of reloading or redirecting. This can be achieved by placing “javascript:void(0)” in the tag’s href attribute. Example <a href="JavaScript:void(0);"ondblclick="alert('Good example!')">Example</a> source
  19. Same one written here. I won't pick at the grammar issues, overall nice tutorial.
  20. I've windows8, here's what I did; - Configure it to boot into desktop - Download my favourite IDE/TE - Download a third-party modification to get start bar back
  21. It could be that you're editing their maxwill back to 100. Post code, please.
  22. Debatable :p
  23. My favorite integrated development environment (IDE); Netbeans
  24. You could just release a new attack module, with these things included, and just check to see if they have X module installed and enabled before they can run the script. For example; Module Name Attack w/ clans incorporated Modules Needed Clans if[! module_installed(clans) OR ! module_enabled(clans) ] print "Please install and enable the clan module. <a href="">download.</a>";   Something like that would be easier to create, would it not?
×
×
  • Create New...