Jump to content
MakeWebGames

skooda

Members
  • Posts

    494
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by skooda

  1. @Lucky Yea I putted the captcha on the page so far so good.
  2. @Seker Dude wtf are you talking about. Read my got damn post clearly before posting. As clearly I said I bought it and im not selling it. Only people I will give it to is Dab or ColdBlooded. Maybe they can figure out how this could stop for users who dont have captcha on a mccode game. I only bought it because i was curious. So dude just stop trolling this thread. @Lucky His name is Demon im sure most of the game owners banned him from their games. As his username is always demon. @sniko yea but the 2k accounts screwed my game up. It took me awhile to delete all of them from the users table & userstats.
  3. It didnt have nothing to do with the ingame just the register. As he put his refer link in the bot im guessing and it made over 2k accounts. I actually bought the bot from him a hour ago. No dont msg me for it. But if dab or coldblood want to check it out I will send it to them. No I havent used it.
  4. @seker No im not saying that. Maybe your getting your facts wrong or maybe your database is screwed. Just dont start accusing me. Ask your self this why your game? I have nothing against you. If you ask me I think your pretty cool. I see many games online and I play many game owner games on here im sure they can verify that I dont make more than 2 accounts and thats only bc I forget the username sometimes.
  5. @seker what the hell are you talking about? I signed up one time for your game that was before you even presented it on MWG.
  6. Well it was a hacker( not really sure because he told me right after he did it.) I always kept the captcha off as I hate it. But a few members on here told me to have it on. I guess i learn my lesson. But the hacker said he did it through a bot.
  7. Got it thanks
  8. Didnt work nor ALTER TABLE `users` AUTO_INCREMENT = value;
  9. Someone just botted my site a hour ago. When I say botted I mean maade 2k accounts in a matter of a min. So I just got done deleting the site and I turned on the captcha. So now when a user sign up thier id is 3000+. Could someone tell me how to fix this.
  10. Well this is just a little discussion. What mobile payment gateways do you guys use and suggest to others such as myself.
  11. Im so lost? I didnt create that engine and its not gl.
  12. Try removing it.
  13. Heres a piece of the css [CSS]#body_container2{width:715px;margin-top:28px;} #body_container2 .left_container .menu_new2{width:715px; background:#141414; border:#1f1f1f solid 1px; padding:13px 0 15px 0; margin-top:0px;}[/CSS]
  14. Replace your index file with that.
  15. This should work <?php session_start(); require "global_func.php"; if ($_SESSION['loggedin'] == 0) { header("Location: login.php"); exit; } $userid = $_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is = mysql_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", $c) or die(mysql_error()); $ir = mysql_fetch_array($is); check_level(); $fm = money_formatter($ir['money']); $cm = money_formatter($ir['crystals'], ''); $lv = date('F j, Y, g:i a', $ir['laston']); $h->userdata($ir, $lv, $fm, $cm); $h->menuarea(); print "<h3>General Info:</h2>"; $exp = (int) ($ir['exp'] / $ir['exp_needed'] * 100); print "<table><tr><td><b>Name:</b> {$ir['username']}</td><td><b>Crystals:</b> {$cm}</td></tr><tr> <td><b>Level:</b> {$ir['level']}</td> <td><b>Exp:</b> {$exp}%</td></tr><tr> <td><b>Money:</b> $fm</td> <td><b>HP:</b> {$ir['hp']}/{$ir['maxhp']}</td></tr> <tr><td><b>Property:</b> {$ir['hNAME']}</td></tr></table>"; print "<hr><h3>Stats Info:</h3>"; $ts = $ir['strength'] + $ir['agility'] + $ir['guard'] + $ir['labour'] + $ir['IQ']; $ir['strank'] = get_rank($ir['strength'], 'strength'); $ir['agirank'] = get_rank($ir['agility'], 'agility'); $ir['guarank'] = get_rank($ir['guard'], 'guard'); $ir['labrank'] = get_rank($ir['labour'], 'labour'); $ir['IQrank'] = get_rank($ir['IQ'], 'IQ'); $tsrank = get_rank($ts, 'strength+agility+guard+labour+IQ'); $ir['strength'] = number_format($ir['strength']); $ir['agility'] = number_format($ir['agility']); $ir['guard'] = number_format($ir['guard']); $ir['labour'] = number_format($ir['labour']); $ir['IQ'] = number_format($ir['IQ']); $ts = number_format($ts); print "<table><tr><td><b>Strength:</b> {$ir['strength']} [Ranked: {$ir['strank']}]</td><td><b>Agility:</b> {$ir['agility']} [Ranked: {$ir['agirank']}]</td></tr> <tr><td><b>Guard:</b> {$ir['guard']} [Ranked: {$ir['guarank']}]</td><td><b>Labour:</b> {$ir['labour']} [Ranked: {$ir['labrank']}]</td></tr> <tr><td><b>IQ: </b> {$ir['IQ']} [Ranked: {$ir['IQrank']}]</td><td><b>Total stats:</b> {$ts} [Ranked: $tsrank]</td></tr></table>"; $h->endpage(); ?>
  16. I found your problem nothing is closing the file here try this.   <?php $housequery=1; include "globals.php"; print "<h2>General Info:</h2>"; $exp=(int)($ir['exp']/$ir['exp_needed']*100); print "<table><tr><td><b>Name:</b> {$ir['username']}</td><td><b>Crystals:</b> {$cm}</td></tr><tr> <td><b>Level:</b> {$ir['level']}</td> <td><b>Exp:</b> {$exp}%</td></tr><tr> <td><b>Money:</b> $fm</td> <td><b>HP:</b> {$ir['hp']}/{$ir['maxhp']}</td></tr> <tr><td><b>Property:</b> {$ir['hNAME']}</td></tr></table>"; print "<hr><h3>Stats Info:</h3>"; $ts=$ir['strength']+$ir['agility']+$ir['guard']+$ir['labour']+$ir['IQ']; $ir['strank']=get_rank($ir['strength'],'strength'); $ir['agirank']=get_rank($ir['agility'],'agility'); $ir['guarank']=get_rank($ir['guard'],'guard'); $ir['labrank']=get_rank($ir['labour'],'labour'); $ir['IQrank']=get_rank($ir['IQ'],'IQ'); $tsrank=get_rank($ts,'strength+agility+guard+labour+IQ'); $ir['strength']=number_format($ir['strength']); $ir['agility']=number_format($ir['agility']); $ir['guard']=number_format($ir['guard']); $ir['labour']=number_format($ir['labour']); $ir['IQ']=number_format($ir['IQ']); $ts=number_format($ts); print "<table><tr><td><b>Strength:</b> {$ir['strength']} [Ranked: {$ir['strank']}]</td><td><b>Agility:</b> {$ir['agility']} [Ranked: {$ir['agirank']}]</td></tr> <tr><td><b>Guard:</b> {$ir['guard']} [Ranked: {$ir['guarank']}]</td><td><b>Labour:</b> {$ir['labour']} [Ranked: {$ir['labrank']}]</td></tr> <tr><td><b>IQ: </b> {$ir['IQ']} [Ranked: {$ir['IQrank']}]</td><td><b>Total stats:</b> {$ts} [Ranked: $tsrank]</td></tr></table>"; if(isset($_POST['pn_update'])) { $db->query("UPDATE users SET user_notepad='{$_POST['pn_update']}' WHERE userid=$userid"); $ir['user_notepad']=stripslashes($_POST['pn_update']); print "<hr><b>Personal Notepad Updated!</b>"; } print "<hr>Your Personal Notepad:<form action='index.php' method='post'> <textarea rows='10' cols='50' name='pn_update'>".htmlspecialchars($ir['user_notepad'])."</textarea><br /> <input type='submit' value='Update Notes' /></form>"; $h->endpage(); ?>
  17. PM your url I will see if you installed iit right.
  18. It should be name index.php
  19. Do you mean the mod that let a user go in side his/her house?
  20. Do anyone know how to solve this.How do I keep my mainmenu to stay at the top? Example say if im on the mailbox and I have to many msgs the mainmenu will go down to the bottom. It do the same to announcement,explore,streets,etc The code is <div class="menu_new2"> <ul> <li><a class="link1" href="index.php">Home</a></li> <li><a class="link1" href="pets.php">Pets</a></li> <li><a class="link1" href="inventory.php">Inventory</a></li> <li><a class="link1" href="events.php">Events ('.$ec['new_events'].')</a></li> <li><a class="link1" href="mailbox.php">Mailbox ('.$mc['new_mail'].') </a></li> <li><a class="link1" href="kidnapped.php">View Ransom (0)</a></li> <li><a href="polling.php"><font color=yellow><b>Polls</b></font></a></li> <li><a class="link1" href="announcements.php">Announcements ('.$ann['new_announcements'].')</a></li> <li><a class="link1" href="explore.php">Explore</a></li> <li><a class="link1" href="crimes.php">Crimes</a></li> <li><a class="link1" href="job.php">Your Job</a></li> <li><a class="link1" href="properties.php">My Property</a></li> <li><a class="link1" href="business_home.php">Your Business</a></li> <li><a class="link1" href="education.php">Local School</a></li> <li><a class="link1" href="hospital.php">Hospital</a></li> <li><a class="link1" href="jail.php">Jail</a></li> <li><a class="link1" href="search.php">Search</a></li> <li><a class="link1" href="preferences.php">Settings</a></li> <li><a class="link1" href="encyclopedia.php">Item Guide</a></li> <li><a class="link1" href="voting.php"><font color=Turquoise ><b>Vote</b></font></a></li> <li><a href="iMpoRtAnT/staff.php"><font color=yellow><b>STAFF</b></font></a></li> </ul> </div> </div> </div> </td><td > </td> <td width="100%" valign="top"><div id="body_container2"> <div class="left_container"> <div class="menu_new2"> ';
  21. skooda

    ColdBlooded

    Happy birthday.I dont know why but I thought coldblooded would be older than 21.Enjoy your day :).
  22. Do anyone know how to make all users bank money 1,00$ with out doing it manually?
  23. Thanks Razor great mod.
  24. skooda

    DeaTH_RideR

    Happy birthday :D
  25. Yea mines show the gang id
×
×
  • Create New...