Welcome Script for Your Bot
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 1.6 |
| Scores Submitted | 5 |
| Date Added | Oct 23, 2005 |
| Last Updated | Oct 23, 2005 |
| Tags | bot for my script welcome |
|
|
Introduction
**Just past in your remotes**
mIRC Snippet:
Welcome Script for Your Bot
Posted on Oct 23, 2005 4:39 pm
Posted on Oct 23, 2005 4:39 pm
Just put in what u think here
mIRC Snippet:
Welcome Script for Your Bot
Posted on Oct 23, 2005 4:49 pm
Posted on Oct 23, 2005 4:49 pm
Sucks, man. Truly sucks... Ive seen better though... You forgot to SET the date, and SET The time.. *shakes his head*
mIRC Snippet:
Welcome Script for Your Bot
Posted on Oct 23, 2005 4:53 pm
Posted on Oct 23, 2005 4:53 pm
LoLz, I'm kidding, it is good, buttttttttt... you forgot to set the time, and set the date. Mehip.
mIRC Snippet:
Welcome Script for Your Bot
Posted on Oct 23, 2005 5:42 pm
Posted on Oct 23, 2005 5:42 pm
@ Sasuke, If you meant setting a variable for the date & time, no need since $time & $date will give those results.
mIRC Snippet:
Welcome Script for Your Bot
Posted on Oct 24, 2005 12:31 am
Posted on Oct 24, 2005 12:31 am
;(Welcome script for your bot by: darkmark1021@yahoo.com)
on:load:.notify $nick thank you for choosing this script, you may change this script around everywhere except the credit line, please leave that there.
on 1:JOIN:#:{
/msg $nick Welcome $nick .::. It Is $Time And today is: $date .::.
/notice $chan $nick has joined the conversation- $time .::. $date
/notice $nick you have joined the conversation sucsessfully
}
For the rest of the stuff if that is what you call it above youre code it will conflict with mirc because of the ( ) you need to have it so it wont trigger or want to trigger anything,also kinda cleaned it up a bit so it looks better .
on:load:.notify $nick thank you for choosing this script, you may change this script around everywhere except the credit line, please leave that there.
on 1:JOIN:#:{
/msg $nick Welcome $nick .::. It Is $Time And today is: $date .::.
/notice $chan $nick has joined the conversation- $time .::. $date
/notice $nick you have joined the conversation sucsessfully
}
For the rest of the stuff if that is what you call it above youre code it will conflict with mirc because of the ( ) you need to have it so it wont trigger or want to trigger anything,also kinda cleaned it up a bit so it looks better .
mIRC Snippet:
Welcome Script for Your Bot
Posted on Feb 20, 2006 3:33 am
Posted on Feb 20, 2006 3:33 am
on 1:JOIN:#:{ /msg $nick Welcome $nick .::.It Is $Time And today is: $date .::. } { /notice $chan $nick has joined the conversation- $time .::. $date } { /notice $nick you have joined the conversation sucsessfully }
A couple things... first off, I think $asctime would be better used here than $time. Most users don't want to read a 24 hour format... $asctime(hh:nntt) would return a 12 hour format with am/pm at the end. (and the date could be the same way, but that too is personal prefrence)
Secondly, I'm not sure too many people would stay in the channel this script is running if everytime someone joins they get a notice. I don't know about you, but if I'm in a channel that gets more than one notice a day, I usually part because it's really annoying. Notices are meant for important things unless it's an on join notice to the person who just joined. Don't do channel-wide notices.
Thirdly, if your "bot" joins the channel, it will welcome itself. At the very beginning you should put "if ($nick == $me) halt" and put everything else in an "else" statement.
A couple things... first off, I think $asctime would be better used here than $time. Most users don't want to read a 24 hour format... $asctime(hh:nntt) would return a 12 hour format with am/pm at the end. (and the date could be the same way, but that too is personal prefrence)
Secondly, I'm not sure too many people would stay in the channel this script is running if everytime someone joins they get a notice. I don't know about you, but if I'm in a channel that gets more than one notice a day, I usually part because it's really annoying. Notices are meant for important things unless it's an on join notice to the person who just joined. Don't do channel-wide notices.
Thirdly, if your "bot" joins the channel, it will welcome itself. At the very beginning you should put "if ($nick == $me) halt" and put everything else in an "else" statement.





