Jump to content
MakeWebGames

AlabamaHit

Members
  • Posts

    1,308
  • Joined

  • Last visited

Everything posted by AlabamaHit

  1. What? IP with no access to cPanel?.... You would have to ahve a Dedicated Server and Set that up yourself. That has nothing to do with a staff panel.
  2. Haha, Exactly what I'm thinking :P @Dom; Locking it with IPS isn't always a great idea, Hence if I needed to ban someone but was at a friends house then I wouldn't be able too, so the spammer would be able to keep going :P lol, jump into cPanel, allow the IP your at, and your good.. :)   Now on topic. If your adding in the header, there is no need for 'placing in fed jail'...that is just pointless SQL that have to run. Your already in the header, just send a die() or exit()...that is all..The efffect is the exact same as if in fed jail right??   if($ir['user_level'] > 1 && !in_array($userid, array('1','2','3'))) { echo 'Just type some crap here......'; exit($h->endpage()); }   That shouold give the same result without having to run sqls.
  3. True, I bought a custom layout for an adult site I "was" going to make, Never did. My layout was used.. Anyway, they didn't sell the "Exact" layout. But they used the exact same pattern, colors..Which IMO is reselling the same one again once they said it was custom. Basically they where 85% the same layout.. I'm not going to name their name... But I wish you the best of luck finding someone on here that makes layouts that is going to be trustworthy. Cause they guy that did that to me..Was supposedly one of if Not the "Most" trustworthy layout makes on here.
  4. I guess you didn't read my other post. That register DON'T have the information necesary to do it. You will have to FIND the information. And send that page. I said this a few post back.
  5. You shouldn't have to modify the VB Files. All you ahve to do is change mccodes encryption to match the VB. So when they register. they are same, insert into both. Now on login, they already match, just login both databases... I never said once I would be modifying VB Files.
  6. The register.php don't have the information there...There is no INSERT in the whole page.. Look through the files and find the page where it inserts the users into the databse.
  7. Must be a bug..I don't log out...And rarely close my browser..So cache isn't cleared..maybe that is why.
  8. I jsut got the file. I don't live on the site.
  9. PM me the register page..That should be enough to get it. Because that page should have all the information I need in it from the database. Just so you know..It will mess up a game that is running already. Cause you have to change the encryption. Meaning, everyones passwrods are going to be wrong... Now if you have a password reset..then you just implant that with new encryption...And everyone has to do a reset..but they will be good after that.
  10. If I had VB I would do it. Just to show how everyone is making this more complicated that is should be...But I don't have VB,
  11. I don't see this being that complicated... It is just opening a connection to anotehr database...insert user....close connection. open other database... sign in... close connection.... I'll do it...it is not that complicated. I think everyone is just over thinking this.
  12. This??   $lose_stat = mysql_query("SELECT userid FROM users WHERE laston < unix_timestamp() - 2592000");//This would be 30 days... $stat = mysql_fetch_assoc($lose_stat); mysql_query("UPDATE userstats SET strength = strength - 50, agility = agility - 50, guard = guard - 50, labour = labour - 50, IQ = IQ - 50 WHERE userid = ".$stat['userid']."");   Completely untested...
  13. lol @ Danny696. I think you like your post getting deleted lol :thumbup:
  14. Goodbye.. Don't let the world get to..It will tear you down man... Wish ya the best of luck :)
  15. I don't know the encryption of VB, but I remeber reading on that post before that it might already be the same (MD5). But I honestly don't know. I don't have VB.
  16. Yeah if misunderstood me, defently change the encryption of mccodes to match forum. And no one called you a f*ucking idiot like you said. IF I was I would have came out and said it. I'm no child. I'm 27 years old. I have 2 boys. 9 and 7 years old. If your life is so bad. Stop coding or STOP COMPLAINING!
  17. KDawg08, This is going to sound offensive and mean, but it's not really ment that way..but if you take it like that I don't care.. This is a LEARNING SITE!. Simple. If you can't take what someone has handed to you explainging HOW to do it, and go and learn how to do it.. Well, maybe your not smart enough, don't have enough time, or don't have interest in learning..Either way, this is a learning site, not a babysitting site. Or post code for my game site. Also, if you where really interested in learning youwould know that someone has posted a SMF Forum intergration. It would be SIMPLE to take their method and use it on vBullenton.. I mean honestly he told you exactly how to do it.."Why the heck would anyone code YOUR GAME FOR YOU!"...THat is what you want... You where explained how to do it.... YOU Connect to the database (OF forum)... YOU INSERT into the users table... NOW Find out what encyption. Change your Game encryption to that. md5, sha1 or what ever... Now you do the same on login... When you login for the game, Add the FORUM DATABASE and login them in... It it not that hard... Here is a Search that probarly will be VERY helpful.
  18. I'm not using any framework.... The code is from scratch. Minus the database. I found a good one online. EDIT: I edited the post, after I read it, it kinda sounded offensive.
  19. lol :D
  20. I've never seen that in a globals.php
  21. Yeah, you do have a point there.
  22. lol, there is no need to bump a post...... If someone wants it. They will search for it. If they like it they will post... If your looking for attention, you are on the wrong site. 90% of users here, don't ever post when they use your mod. So if your looking for stuff like that. I'm sorry to break the bad news to you.
  23. More than likely the host stopped your crons because of the cpu usage.
  24. Just trying to help out SolidSnake.. I didn't mean to offend. That isn't what I was trying to do. I appoligize if it came across like that.
  25. Ok, this might make me look like an idiot.. but shouldn't   $_GET['cmd'] == isset($_GET['cmd']) && is_string($_GET['cmd']) ? strtolower(trim($_GET['cmd'])) : FALSE;   Be   $_GET['cmd'] = isset($_GET['cmd']) && is_string($_GET['cmd']) ? strtolower(trim($_GET['cmd'])) : FALSE;   I don't think it works right with ==
×
×
  • Create New...