Jump to content
MakeWebGames

CrazyT

Members
  • Posts

    708
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by CrazyT

  1. Re: [v2] custom txt colors   Np :)
  2. Re: [Mccodes V2] [bIG MOD] Trading Card Game [$15] Or.. simply just do INSERT INTO `settings` ( `conf_id` , `conf_name` , `conf_value` ) VALUES (NULL, 'tcnews', 'Read the tutorial! Also hover over blue links because they have a tooltip!')
  3. Re: how do you do a drop down menu? huh?.... You mean something like this?... Donor Pack?: <select name="donator_pack"> <option value="donor1">Donor pack 1</option> <option value="donor2">Donor pack 2</option> </select>';
  4. CrazyT

    Replace

    Re: Replace   LOL!!! 1 guests viewing now. XD
  5. Re: Has anyone got a email validation mod for V1 for sale will pay $$$   What, problem's are you having?..
  6. Re: Avatar Page - My first mod For register, you could store the images, in a array(), then use foreach().. Example <?php //for colors easier to read $avatars = array('image1.png', 'image2.png', 'image3.png'); //more in here of course $avatar_image_location = '/images/avatars/'; //image location for avatars stored in.. foreach($avatars as $avatar) { echo "[img][/img] "; //show the image echo "<input type='radio' name='avatar' value='". $avatar ."' />"; //show the radio button } //Then on submit.. check if its in the array.. if(!in_array($_POST['avatar'], $avatars)) //check if there in the array if not show error { echo "Invalid Avatar. > [url='register.php']Back[/url]"; exit; }   If you need anyhelp on it PM me.
  7. Re: Admin Content Manager mod I would like to see a demo....
  8. Re: Total Time Logged In! * Total time logged in: 6 days, 11 hours and 18 minutes.
  9. Re: Has anyone got a email validation mod for V1 for sale will pay $$$ Then add something to users table.. token tinyint(1) not null default 0; if(!$ir['token']) { echo 'You have to validate your email address before you can play.'; exit; } Then just make a script to send them a code to validate it.. simple Or just simply buy someones.. Cronus has one.
  10. Re: [Mccodes V2] [bIG MOD] Trading Card Game [$15] Nice mod Joel. Keep up the good work :) Probably the best mod out now..(is) XD
  11. Re: Has anyone got a email validation mod for V1 for sale will pay $$$ Well i googled found 6,560,000 for email validation script. http://www.google.co.uk/search?hl=en&q= ... =&aq=0&oq= :D
  12. CrazyT

    Hes Back

    Re: Hes Back Welcome Back!
  13. Re: Epilogue Engine For the template, engine. I would use Smarty. You can have a look at it Here Yeah like POG1 said, so much easier.
  14. Re: [v2] Viewuser Visual Update Might wan't to stripslashes, on gang name....
  15. Re: Good Bug Report Means you haven't looked then because there is quite a few bug report mod's on here.
  16. Re: installer question Also before you install, you might want to check if config.php is writeable.
  17. Re: please help   Whats the difference from the other one posted? lol btw..you should sanitize the $_POST. values with mysql_real_escape_string(). To the OP, you could try this:   <?php /* Mccode V1, authenticate.php recode by PHP Scene. */ session_start(); include ('mysql.php'); $username = mysql_real_escape_string($_POST['username']); $password = mysql_real_escape_string($_POST['password']); if ($username == '' || $password == ''){ exit('Please make sure you fill the username and password fields in. [url="login.php"]Back[/url]'); } $check = mysql_query("SELECT `userid` FROM `users` WHERE `login_name` = '{$username}' AND `userpass` = md5('$password') LIMIT 1;", $c) or die(mysql_error()); if(!mysql_num_rows($check)){ exit('Account cannot be found with that username and password.'); }else{ $_SESSION['loggedin'] = 1; $user = mysql_fetch_object($check); $_SESSION['userid'] = $user->userid; header('Location: index.php'); } ?>   (recode from scratch) You don't need to use "mysql_real_escape_string" on a password, if it's beening hashed.. with md5/sha1/ ect
  18. Re: High-Low game, need a lil help please. mysql_query will work with v2 also.... no need to change it
  19. Re: Tournaments Mod Updated (Fixed) Hey canibalstew sup, haven't spoke to you for month's :D were you been XD
  20. Re: How much bandwidth does your game use? This month already 5.65gb
  21. Re: Need help on gym,   May as close down your game, stats are to high if you want more lol
  22. CrazyT

    Crimes

    Re: Crimes   You the "Search", you'll find some :D
  23. CrazyT

    Crimes

    Re: Crimes On Mccodes V2 if you haven't added any crimes/crime_groups it will show that LOL
  24. Re: [mccode v2] Multiple Houses   Then fix the glitches..
  25. Re: Wanted email verification mod v1   Looking to pay?.. theres a few on this forum for free also..
×
×
  • Create New...