Jump to content
MakeWebGames

SHAD

Members
  • Posts

    264
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by SHAD

  1. What about Paul, aka crimegame?
  2. Cheer up buddy, it happens. I've also learnt from my mistake long ago, but with a smaller amount.
  3. No offence, but just reading this would put me off registering.  
  4. Remove the die() from register page.
  5. I agree with a_bertrand, it's totally dull and empty website, it doesn't even look like a game. It has some sort of a wikipedia feel to it.
  6. still wondering what kind of difference it would make?
  7. lol so mccodes did pay paul to do the engine XD, well atleast it's done properly this time.
  8. These aren't really issues,they're just simple things you'll be able to fix once you have the basic knowledge of programming. The real isses with any engine is security and stability/performance, I think redux stilll has some performance issues.
  9. I poker has become free then what about that protection that was placed in? will it allow people to use the mod?
  10. Then it wouldn't be grey/blue. What if mccodes was a low profile project by bill gates under the name of DBS/CB?
  11. Hi All, I've realized that in mccodes forum, specifically the quote function, it uses the $_GET to get all the quoted text. Now the problem with this is, if you quote large data, it all appears in the url and the url becomes really lenghty, then i get the message "Request-URI Too Large".   Any alternatives to this? Mabye use an id or something? I'm not sure. Thanks
  12. Well... It's not my habit to be negitive, but you need to step a bit further then straight forward colours and shapes. But better then the last one :)
  13. Any news on this?
  14. Thanks for your replys guys, personally i hate the use of sprintf, it's why i asked this question about it been needed.
  15. Yes sniko is correct :)
  16. I have looked through some files containing awful alot of sprinf everywhere and not just querys but eveylline of code they're echoing sprinf, like on money, name level displays ect.. So my question is, is it really needed? And if we filter the input before the query, do we have to format the query using sprinf? Thanks
  17. They probally killed him before anyway, now using him as an escape goat for votes.
  18. I agree, multiple login should be prevented, otherwise it will just open doors to more exploites.
  19. Once you post in the forums, reply or start a topic, refreshing on the same screen/page will continue to create more posts/topics identical. hope this will be fixed. Also the topics don't have a page 2 or greator, all topics get listed on one page (Page: 1), this is not a good idea for any active game, as the topics list will get very long. you should make it after 7 topicson 1 page, you can click page 2.
  20. SHAD

    Ninja Killaz

    @rulerofzu, Wow this gzip works really well, just tried it. is their any downside to it?
  21. WHy is raven still up? http://www.ravan.info/
  22. SHAD

    Login Page

    Well we all got to start somewhere, well-done, and not too bad for first ever attempt.
  23. What would you say about this method to stop multiple log ins? So when a user logs in, he is assigned a new session id, once logged in sucessfully, the sessionid get stored in the DB For any requested pages, check the session id matches, otherwise the the session is destroyed with a message 'You cannot be logged in twice. This way only one person can be logged in at one time from one browser on one machine.
  24. http://redux.mccodes.com/index.php?page=attacklost   QUERY ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 Query was SELECT * FROM users WHERE userid= Please report this to a admin as soon as possible.
  25. I was thinking, this mccodes global query seems pretty big and selects alot of stuff, so would it not be better to get rid of the global query and only select stuff which is needed on each file, or am i missing something?   global $jobquery, $housequery; if($jobquery) { $is=$db->query("SELECT u.*,us.*,j.*,jr.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN jobs j ON j.jID=u.job LEFT JOIN jobranks jr ON jr.jrID=u.jobrank WHERE u.userid=$userid"); } else if($housequery) { $is=$db->query("SELECT u.*,us.*,h.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN houses h ON h.hWILL=u.maxwill WHERE u.userid=$userid"); } else { $is=$db->query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid"); } $ir=$db->fetch_row($is);
×
×
  • Create New...