blackhand101
Members-
Content Count
6 -
Joined
-
Last visited
About blackhand101
-
Rank
Newbie
-
use these scripts with MIRC assuming all MIRC versions work the same/mode #channel <mode> <nick> modes: (+o operator) (+q owner) different modes avalibe/cs owner; if channel owner (log in required)to login: /ns identify pass/hop (reconnects to channel without loging out)/ns register <pass> <email> (registers your nickname with the server)/cs register #channel <pass> <description of channel> (registers channel with server)/list (lists the current channels on the server)i dont know if these work on any other server but they do on irc.mp-gaming.com----------------------------------------------------------------------------------Thanks Blackhand101FH mod Leader
-
Avoid Flash Disk Viruses This ruins a lot of Windows PC
blackhand101 replied to x2envi's topic in Websites and Web Designing
that sounds bad...glad i dont have that prob anyway some peoplez computers i work on get the infected .exe files is there any way i can fix thatthanks -
this next one is not really js but php sendmail code <?php // Set this to your email address. $EMailAddress = "youremail@domain.com"; if (!isset($_POST["Submit"])) { Submit_Screen(); } else { $Value = Check_Submit(); if ($Value > 0) Submit_Screen($Value); else { Post_Submit(); Display_Thankyou(); } } function Submit_Screen() { echo 'You can contact us via the following contact form:<br><br><form method=post>'; echo '<table border=1 cellpadding=0 cellspacing=0><tr><td><table width=500 border=0 cellpadding=3 cellspacing=0><tr><td>Your Email Address: <input type=text size=50 name=Email value="'.@$_POST['Email'].'"></td></tr>'; echo '<tr><td >Message:</td></tr><tr><td><textarea cols=60 rows=10 name=Notes>'.@$_POST['Notes'].'</textarea></td></tr>'; echo '<tr><td align=center ><input name=Submit type=submit value="Contact Us"></td></tr></table></td></tr></table></form>'; } function Display_Thankyou() { echo "<center><br><br><font class=\"p14\">Thank you for your feedback!</font></center>"; } function Post_Submit() { global $EMailAddress; $Now = date("Y-m-d"); $Email = addslashes($_POST["Email"]); $Notes = addslashes($_POST["Notes"]); $Message = "Contact Feedback\n$Email\n\n$Notes"; @mail($EMailAddress, "Contact ", $Message, "From: ".$_POST['Email']); } function Check_Submit() { $Wrong = 0; if (!isset($_POST['Email']) || empty($_POST['Email'])) $Wrong |= 2; if (!isset($_POST["Notes"]) || empty($_POST["Notes"])) $Wrong |= 1; return ($Wrong); }?> replace your email in the quotation marks like this: "youremail@domain.com"
-
here is one code i will post another <script LANGUAGE="JavaScript"><!--// Use these three variables to set the message, scroll speed and start positionvar msg = "Your Message Here" //This is the message that will appear in the status bar.var delay = 128 //increase to slow down movementvar startPos = 130 //increase to move start position to the right// Don't touch these variables:var timerID = nullvar timerRunning = falsevar pos = 0// Make it all workScrollit()function Scrollit(){ // Make sure the clock is stopped StopTheClock() // Pad the message with spaces to get the "start" position for (var i = 0; i < startPos; i++) msg = " " + msg // Off we go... DoTheScroll()}function StopTheClock(){ if(timerRunning) clearTimeout(timerID) timerRunning = false}function DoTheScroll(){ if (pos < msg.length) self.status = msg.substring(pos, msg.length); else pos=-1; ++pos timerRunning = true timerID = self.setTimeout("DoTheScroll()", delay)}//--></SCRIPT> this makes a message scroll down in the status bar replace a message in the quotation marks like this: "Your Message Here"