Jump to content
MakeWebGames

Blade Maker

Members
  • Posts

    518
  • Joined

  • Last visited

Everything posted by Blade Maker

  1. Sweet man, but do you have it coded at all?
  2. Nice but the password input needs to be equal with the user input.
  3. Yeah that is exactly how I wanted/want to make it. I have learned about different codes and there speeds so I think this will be a good mod, not to hard, but not to simple.
  4. Umm you fixed it?
  5. I told him to check if the variables have values, I am waiting for his response, once we find out then we can help.
  6. Read your private message I think I found out a solution.
  7. Try to echo each variable where the return king is to see each value and see if it works just try it.
  8. Maybe...
  9. Man I feel stupid today.....
  10. I am guessing he has gobals.php on the page, he just did not include it when he showed us the code.
  11. Dang, I did not know that that mattered?
  12. Editv: nvm
  13. Edit: nvm
  14. Then I am sorry I am probebly not good enough to figure this out I will try though.
  15. Just to make it easy on you this code: if ( $tp = 500 & $sapphire >= 150 & $amber >= 150 & $diamond >= 150 & $garnet >= 150 & $jade >= 150 ) { return " Emperor"; }   Should be this:   if ( $tp == 500 & $sapphire >= 150 & $amber >= 150 & $diamond >= 150 & $garnet >= 150 & $jade >= 150 ) { return " Emperor"; }   And I think you are using the return function wrong...could be wrong about that one though.
  16. I found one problem, I believe its suppose to be if( 1 == 1 ){ Not if ( 1 = 1 ){ btw those were examples, you use just 1 = in your code. I might find more, but let me check the whole thing.
  17. Yeah I do not know, I just thought this was a good idea.
  18. Well I think I will make this if anyone would buy it?
  19. Just wondering if I were to make a trap system where a player can buy a claymore or something and sets it on a certain page, the next person to go there dies from the claymore, or some robbery trap. If this was well made how many of you would buy this for $2?
  20. No....do not call me BM that just sounds not right. Anyways where are you starting northwest southeast what? And whats your username.
  21. I play world 48 and was on world 23 until I became inactive due to not having a laptop. So I might join world 53 if you want.
  22. Ever here of clearing cookies?
  23. Here is a simple contact us form, one thing I should edit later is to check if the email is valid but I don't have the time to edit this at the moment.. This was a old code I used for an old website, but I modified it to do version 2 of mccodes. Enjoy and please give tips so I can get better, thanks. Edit the email so it sends it to your email.   contact_us.php: <?php include "globals.php"; ?> <table align="center" width="45%" height="35%"><tr><td align="center" valign="top"> <center> <font size="5" face="Arial Black">Contact Us</font> <?php $emailaddress = strip_tags($_POST['emailaddress']); $message = strip_tags($_POST['message']); $submit = $_POST['submit']; if($submit) { if(strlen($emailaddress) < 5) { die(" Please enter your email address. Email address must be more than 5 characters. <meta http-equiv='refresh' content='2; url=contact_us.php'>"); } else if(strlen($message) < 10) { die(" Please enter your message. Message must be more than 10 characters. <meta http-equiv='refresh' content='2; url=contact_us.php'>"); } else //send activation email $to = "[email protected]"; $subject = "Contact Form"; $headers = "From: $emailaddress"; $body = $message; //function to send email if(mail($to, $subject, $body, $headers)){ echo " [b]Message sent.[/b] <meta http-equiv='refresh' content='2; url=index.php'>"; } else die(" Error sending message"); } ?> <form method='POST'> <table align="center"> <tr> <td> Enter your email address: <input style='width:50%;' type='text' name='emailaddress'> </td></tr> <tr><td> Enter Your Message: <textarea name='message' rows='15' cols='60'></textarea> <input type='submit' name='submit' style='margin-left:50%;' value='Send Message' /></form> </td> </tr> </table> </center> <?php echo "</table>"; $h->endpage(); ?>   Don't say anything about me using die, as I like to use it for things like this. Thanks for reading and I hope you enjoy, for the critics please hit me with all you have, that is how I learn.
  24. Okay thanks for all the tips!
  25. Put the space before the WHERE
×
×
  • Create New...