Jump to content
MakeWebGames

iseeyou94056

Members
  • Posts

    691
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by iseeyou94056

  1. Re: [FREE] Bodyguard V2.0 i did try and i cant i can do it with alot of stuff but i cant with this
  2. Re: [FREE]Music system works good thanks +1
  3. Re: [v1 & LITE] Crime Item Mod what realy does this do does it make it so the user gets a item when passin a crime
  4. Re: [mccode] User Verification Mod for V2 no lol sry all that i dont know how to do is the   //User activity verifcation (are you there) $current_time = mktime(); $current_time = $current_time - 7200; if ($current_time > $_SESSION[last_login]){ if($AYT <> 1){ if(!isset($_SESSION[ayt_count])){ $_SESSION[ayt_count] = 0; } if($_SESSION[ayt_count] >=6){ header("Location: logout.php"); } else { header("Location: areyouthere.php"); } } }
  5. Re: [mccode] User Verification Mod for V2 lol i got it
  6. Re: [mccode] User Verification Mod for V2 if someone tells me how to do the <? session_start(); $md5=md5(microtime()*mktime()); $string=substr($md5,0,5); $captcha=imagecreate(55,25); imagefill($captcha, 0, 0, $background_color); $background_color = imagecolorallocate($captcha, 22, 42, 64); $text_color = imagecolorallocate($captcha, 233, 14, 91); imagefill($captcha, 0, 0, $background_color); imagestring($captcha, 5, 5, 5, $string, $text_color);   $_SESSION['ayt_key']=md5($string); header("Content-type:image/png"); imagepng($captcha); ?>     then i think i can do the rest
  7. Re: [mccode] User Verification Mod for V2 i know that but i cant do it will everything just some i am just learning and this i cant is there a way that you could convert it for me plz
  8. Re: [FREE] Bodyguard V2.0 i dont know how 2 make this v1 plz someone help me
  9. Re: [FREE] Bodyguard V2.0 i will try but if i cant i am gona ask agin i am a noob i am no0t that good i am sorry i would not still b askin if he would not have said he was gona make it v1
  10. Re: [mccode] Close page system +2 respect
  11. Re: [FREE] Bodyguard V2.0 can anyone post this for v1
  12. Re: [FREE] Bodyguard V2.0 still no v1 lol
  13. Re: HELP NEEDED put it in sql
  14. Re: [Free] [v1] BB Gun / Shoot Someone in Back! Error SQL query: ALTER TABLE `users` ADD `bbgun` INT( 11 ) NOT NULL DEFAULT '0'; MySQL said: Documentation #1060 - Duplicate column name 'bbgun'
  15. Re: [Free] [v1] BB Gun / Shoot Someone in Back! lol kk o and   ALTER TABLE `users` ADD `bbgun` INT( 11 ) NOT NULL DEFAULT '0'; ADD `bbdamage` INT( 11 ) NOT NULL DEFAULT '0', ADD `bbfired` INT( 11 ) NOT NULL DEFAULT '0';   dont work
  16. Re: [Free] [v1] Calculator Mod i think this is v2 but im not sure my first time converting v1 to v2 correct me if i am wrong     <?php include "globals.php"; $numbera=$_POST['numbera']; $numberb=$_POST['numberb']; $do=$_POST['do']; print "<h1>Calculation Wizard</h1>"; if ($numbera=="" || $numberb=="" || $calculation="") { print "You approach the wise old wizard, he tells you he can work out any sort of sum... Work this out then smart ass: "; print "<form action=calculator.php method=POST> <input type=number name=numbera style='width:50px;'> <select name=do> <option value=times>x</option> <option value=plus>+</option> <option value=minus>-</option> <option value=divide>/</option> </select> <input type=number name=numberb style='width:50px;'> <input type=submit value=Calculate></form> (Dont try typing in letters i'll just give you the answer 0)"; } else { if ($do=="times") { $answertimes=$numbera*$numberb; print "Oh..Thats an easy one, the answer is: "; print "$numbera x $numberb = $answertimes"; print " <a href=calculator.php>Back</a>"; } if ($do=="plus") { $answerplus=$numbera+$numberb; print "Oh..Thats an easy one, the answer is: "; print "$numbera + $numberb = $answerplus"; print " <a href=calculator.php>Back</a>"; } if ($do=="minus") { $answerminus=$numbera-$numberb; print "Oh..Thats an easy one, the answer is: "; print "$numbera - $numberb = $answerminus"; print " <a href=calculator.php>Back</a>"; } if ($do=="divide") { $answerdivide=$numbera/$numberb; print "Oh..Thats an easy one, the answer is: "; print "$numbera / $numberb = $answerdivide"; print " <a href=calculator.php>Back</a>"; } } ?> <? $h->endpage(); ?>
  17. Re: [mccode] Register Page i took your register game and changed it a little if you like it please give me +1 <?php session_start(); print "<html> <head> <title>your game name</title> <style> body { font-family:Verdana;font-size:9pt;color: white; background-color:#000000; scrollbar-base-color: #005B70; scrollbar-arrow-color: #F3960B; scrollbar-DarkShadow-Color: #000000; } a:visited,a:active,a:hover,a:link { color: blue;text-decoration: none; } table,tr,td { font-size:9pt; } img { border:none; } </style> </head> <body> <tr> <th scope='col'><center></center></th> </tr> </table> <center> "; $ip = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; if(file_exists('ipbans/'.$ip)) { die("<font color=red size=+1>Your IP has been banned, there is no way around this.</font></body></html>"); } require "mysql.php"; global $c; if($_POST['username']) { $sm=100; if($_POST['promo'] == "your promo here") { $sm+=100; } $username=$_POST['username']; $username=str_replace(array("<", ">"), array("<", ">"), $username); $q=mysql_query("SELECT * FROM users WHERE username='{$username}'",$c); if(mysql_num_rows($q)) { print "Username already in use. Choose another."; } else if($_POST['password'] != $_POST['cpassword']) { print "The passwords did not match, go back and try again."; } else { $_POST['ref'] = abs((int) $_POST['ref']); $ip = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; $q=mysql_query("SELECT * FROM users WHERE lastip='$ip' AND userid={$_POST['ref']}",$c); $a=mysql_query("SELECT * FROM users WHERE lastip='$ip'",$c); if(mysql_num_rows($a) > 0) { die("No multi's! Your not trying to make another account are you! Sorry! Not Allowed!"); } if(mysql_num_rows($q)) { die("Creating Referral Multies Is Not Aloud."); } if($_POST['ref']) { $q=mysql_query("SELECT * FROM users WHERE userid={$_POST['ref']}",$c); $r=mysql_fetch_array($q); } mysql_query("INSERT INTO users (username, login_name, userpass, level, money, user_level, energy, maxenergy, will, maxwill, brave, maxbrave, hp, maxhp, location, gender, signedup, email, lastip) VALUES( '{$username}', '{$username}', md5('{$_POST['password']}'), 1, $sm, 1, 12, 12, 100, 100, 5, 5, 100, 100, 1, '{$_POST['gender']}', unix_timestamp(), '{$_POST['email']}', '$ip')", $c); $i=mysql_insert_id($c); mysql_query("INSERT INTO userstats VALUES($i, 10, 10, 10, 10, 10)", $c); if($_POST['ref']) { require "global_func.php"; mysql_query("UPDATE users SET crystals=crystals+2 WHERE userid={$_POST['ref']}",$c); event_add($_POST['ref'],"For refering $username to the game, you have earnt 2 valuable crystals!",$c); mysql_query("INSERT INTO referals VALUES('', {$_POST['ref']}, $i, unix_timestamp(),'{$r['lastip']}','$ip')", $c); } print "Thank You For Registering! Please Login. > Login"; } } else { print "<style type='text/css'> <!-- #Layer2 { position:absolute; width:200px; height:115px; z-index:1; left: 354px; top: 356px; } #Layer6 { position:absolute; width:182px; height:202px; z-index:2; left: 10px; top: 204px; } #Layer7 { position:absolute; width:200px; height:115px; z-index:3; left: 350px; top: 201px; } #Layer8 { position:absolute; width:1081px; height:33px; z-index:4; left: 71px; top: 590px; } --> </style> <body bgcolor='#000000'> <div id='Layer7'> <table width='530' border='0'> <tr> <th scope='col'> your game name Registration</th> </tr> <td> <form action=register.php method=post> <table width='530' height='109' border='0' bgcolor='#000000'> <td>Username:</div> <input type='text' name='username' /></td> <td><div align='center'> </td> </div></td> </tr> <tr> <td>Password:</div> <align='right'><input type='password' name='password' /></td> <td>Confirm Password: </div> <align='center'><input type='password' name='cpassword' /> </td> </div></td> </tr> <tr> <td>First Name: </div> <input type=text name=first name /></td> <td>Last Name: </div> <input type=text name=last name /></td> </td> </div></td> </tr> <tr> <td>Email Address: </div> <input type='text' name='email' /><td>Confirm Email: </div> <align='center'><input type='email' name='cemail' /> </td></td> <td><div align='center'> </div></td> </tr> <tr> </tr> </tr> <tr> <td> Age: </div> <input type=text name=age /></td> <td>Gender: <select type='dropdown' name='gender'><option value='male'>Male</option><option value='female'>Female</option></select></td> <td><div align='center'> </div></td> </tr> <tr> </tr> </table> <input type=hidden name=ref value='"; if($_GET['REF']) { print $_GET['REF']; } print "'> <center><input type=submit value=Submit></center></form><form name=tos> <input type='checkbox' name=mybox value='0'>I Agree To The Terms Of Service </form> </tr> </table> </div> <div id='Layer6'> <table width='181' height='203' border='0' bgcolor='#000000'> <tr> <th height='39' scope='col'>Navigation</th> </tr> <tr> <td height='30'>Login</td> </tr> <tr> <td height='30'>Lost Password?</td> </tr> <tr> <td height='30'>Screenshots</td> </tr> <tr> <td height='30'>Terms Of Service</td> </tr> </table> </div> </center></td> </tr> </table> </div> <div id='Layer8'> <table width='98%' border='0' bgcolor='#000000'> <tr> <th scope='col'><center> This Game Is Brought To You By your name </center>"; } print "</body></html>"; ?>
  18. Re: [mccode] User Verification Mod for V2 kk
  19. Re: [mccode] User Verification Mod for V2 if i cant find no one 2 teach then i ask i dont know ow 2do it thats y and i try as hard as i can
  20. Re: [mccode] User Verification Mod for V2 i a tryin 2 learn no need 2 cuss but i am teachin my self beacuse no one has time 2 teach me so iam tryin if any in here could tesch me 2 code mail me on msn [email protected] then i will stop but they got 2 teach free i have no money
  21. Re: [Free] [v1] Find Random Money While Exploring Game thanks +1
  22. Re: [v1][FREE] Gang Welcome Message cadoes any ne know how to make it into a decline mess
  23. Re: [mccode] validation mod this dont work for me
  24. Re: [mccode] User Verification Mod for V2 can you post this for v1 please
  25. Re: [FREE] Bodyguard V2.0 please post for v1
×
×
  • Create New...