Jump to content
MakeWebGames

Redeye

Members
  • Posts

    213
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Redeye

  1. Re: Mods from v1 to v2 hasn't that already been posted by 04lacey
  2. Re: Email change for preferences.php goto preferences.php find [url='preferences.php?action=namechange']Name Change[/url]   after this add <a href='preference.php?action=emailchange'>Email Adress Change   Then find $h->endpage(); ?>   Before it add function email_change() { global $ir,$c,$userid,$h; print "<h3>Email Change</h3> <form action='preferences.php?action=emailchange2' method='post'> New Email adress: <input type='text' name='newemail' /> <input type='submit' value='Change Email' /></form>"; } function do_email_change() { global $ir,$c,$userid,$h; if($_POST['newname'] == "") { print "You did not enter a new email. [url='preferences.php?action=emailchange']> Back[/url]"; } else { $_POST['newemail']=str_replace(array("<", ">", "\\\'"), array("<", ">", "'"), $_POST['newemail']); mysql_query("UPDATE users SET email='{$_POST['newemail']}' WHERE userid=$userid",$c); print "Email changed!"; } }
  3. Re: Email change for preferences.php oppps my mistake, I will post the right one now
  4. Re: [Free] [v1] Help Bot wow +1
  5. Re: ILLEAGAL CODES!!! I think so
  6. Re: Email change for preferences.php I don't have a v.1 to experiment it on so if it don't work then tell me. p.s. I am not a very good modder and have learnt php just from CE
  7. Re: Email change for preferences.php goto preferences.php find [url='preferences.php?action=namechange']Name Change[/url]   after this add <a href='preference.php?action=emailchange'>Email Adress Change   Then find $h->endpage(); ?>   Before it add function email_change() { global $ir,$c,$userid,$h; print "<h3>Email Change</h3> <form action='preferences.php?action=emailchange2' method='post'> New Email adress: <input type='text' name='newemail' /> <input type='submit' value='Change Email' /></form>"; } function do_email_change() { global $ir,$c,$userid,$h; if($_POST['newname'] == "") { print "You did not enter a new email. [url='preferences.php?action=emailchange']> Back[/url]"; } else { $_POST['email']=str_replace(array("<", ">", "\\\'"), array("<", ">", "'"), $_POST['newemail']); mysql_query("UPDATE users SET email='{$_POST['email']}' WHERE userid=$userid",$c); print "Email changed!"; } }
  8. Re: [v1][FREE] Gang Welcome Message Well done kraig, nice, +1 karma to you ,however I do it :?, can anyone help me give him +1 karma,I am a noob :-o lol :mrgreen:
  9. Re: [FREE] Bodyguard V2.0 Any chance of a V.1 of this Josh ??? Please, lol
  10. Re: Getting Rid of the 2.147 bil cap in MCcode Goto PHP MyAdmin and goto the mySQL database which you games SQL is written in and goto table 'users'. Edit the type catagory of level, money, christals (and any other things you want to take the 2.1 bill cap off) from 'INT' to 'BIGINT' . :-D
×
×
  • Create New...