mIRC Home    About    Download    Register    News    Help

Print Thread
#126580 01/08/05 11:52 PM
B
Brianlan
Brianlan
B
Hi there,

Well, I'm still new to this mIRC stuff, I need a help here.

What am I supposed (Script to add?) to do in order to add an auto message whenever I login to my channel.

E.G:
When I login.

Channel sets mode: +oa mynick
<Channel> [mynick] My auto message here

Any clue?

Any help are much appreciated

Regards,
Brian

#126581 02/08/05 12:00 AM
K
Karas
Karas
K
on *:JOIN:#CHANNEL: {
if ($nick == $me) {
msg $chan MY MESSAGE TEXT
}
}

#126582 02/08/05 12:17 AM
B
Brianlan
Brianlan
B
Hi thanks for your response,

Well, is it possible to add my bot name infront then follow by my nick?

e.g: in the same format:-

<my bot> [my nick] MY MESSAGE

Thanks in advance.

Last edited by Brianlan; 02/08/05 12:20 AM.
#126583 02/08/05 03:33 AM
Joined: Sep 2004
Posts: 200
I
Fjord artisan
Offline
Fjord artisan
I
Joined: Sep 2004
Posts: 200
yes, as long as your bot is in the channel, i.e (in the bot's mIRC):
on *:join:#channel: {
if ($nick == your nick) msg # [your nick] your message
}

#126584 02/08/05 07:28 PM
B
Brianlan
Brianlan
B
Quote:
yes, as long as your bot is in the channel, i.e (in the bot's mIRC):
on *:join:#channel: {
if ($nick == your nick) msg # [your nick] your message
}


hmm.. So what must I do to add my bot name infront instead of my own nick?

Once again, many thanks in advance. smile

#126585 02/08/05 07:42 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
Only way is to have your BOT run this script (same as above:

Code:
on *:join:#channel: {
  if ($nick == your nick) msg # [your nick] your message
} 


Since your BOT will say the line, it will appear like this in the channel:

<bontnick> [yournick] Your message.

Or, with time stamps turned on:

[12:15pm] <bontnick> [yournick] Your message.

#126586 02/08/05 07:48 PM
B
Brianlan
Brianlan
B
Quote:
Only way is to have your BOT run this script (same as above:

Code:
on *:join:#channel: {
  if ($nick == your nick) msg # [your nick] your message
} 


Since your BOT will say the line, it will appear like this in the channel:

<bontnick> [yournick] Your message.

Or, with time stamps turned on:

[12:15pm] <bontnick> [yournick] Your message.


Hi there,

Thanks for your quick response, well the bot was actually added by one of my friend and that server is belong to him.

Anyway, is there a way that I could add a new bot to my channel by my own. ?

Thanks. smile

#126587 02/08/05 08:06 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
Yes, though perhaps you would want to first think about WHY you want it to have the bot's name in front of yours when you join the channel. Is there a reason?

Note that if you add a bot, it will be *that* bot's name in front of yours instead of the other bot's name.

Are you sure you need it? If so, I'll give more information, but I'd rather not type it up if you really don't need it. smile

#126588 02/08/05 08:15 PM
B
Brianlan
Brianlan
B
Quote:
Yes, though perhaps you would want to first think about WHY you want it to have the bot's name in front of yours when you join the channel. Is there a reason?

Ofcourse ther's a reason behind it. :P
Quote:

Note that if you add a bot, it will be *that* bot's name in front of yours instead of the other bot's name.
Are you sure you need it? If so, I'll give more information, but I'd rather not type it up if you really don't need it. smile


And YES! I need it. smile

Looking forward to hear from you soon.

Regards,
Brian

#126589 02/08/05 08:25 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
Ok, step 1. Find a bot script you like. Determine what you need from the bot. If you don't need anything other than this script, you can just install another copy of mIRC somewhere and run that with the script on it and you'll be set. If you need something else from it (channel protection, trivia, etc), then you need to find one you like from a scripting site like mircscripts.org.

Step 2, install the bot and load it up. Change the bot's nicks to whatever you want them to be (obviously not the same nicks as yours).

Step 3, add that script into the bot in a new file (Alt-R > File > New).

Step 4, connect the bot to the channel.

Step 5, connect you to the channel and it should work.

Step 6, if you want the bot to be auto-op'd , set it up with /chanserv (if available), or with yours and the other ops' auto-op settings.

Since you aren't saying why you want this script, I'll just point this out in case it matters... Anyone who sees the bot's nick in front of yours will know the bot said it. Not really sure why you want it there, so that may not matter... just mentioning it.

#126590 02/08/05 08:34 PM
B
Brianlan
Brianlan
B
Quote:
Ok, step 1. Find a bot script you like. Determine what you need from the bot. If you don't need anything other than this script, you can just install another copy of mIRC somewhere and run that with the script on it and you'll be set. If you need something else from it (channel protection, trivia, etc), then you need to find one you like from a scripting site like mircscripts.org.

Step 2, install the bot and load it up. Change the bot's nicks to whatever you want them to be (obviously not the same nicks as yours).

Step 3, add that script into the bot in a new file (Alt-R > File > New).

Step 4, connect the bot to the channel.

Step 5, connect you to the channel and it should work.

Step 6, if you want the bot to be auto-op'd , set it up with /chanserv (if available), or with yours and the other ops' auto-op settings.

Since you aren't saying why you want this script, I'll just point this out in case it matters... Anyone who sees the bot's nick in front of yours will know the bot said it. Not really sure why you want it there, so that may not matter... just mentioning it.


Hi, I'm sorry as I'm still new to all this mIRC stuff and am have no ideal where am I supposed to start off.

I wonder if you could help me though?

I will provide u my IRC server details.

Once again, sorry to trouble you.

#126591 02/08/05 09:27 PM
B
Brianlan
Brianlan
B
Quote:
[quote]Only way is to have your BOT run this script (same as above:

Code:
on *:join:#channel: {
  if ($nick == your nick) msg # [your nick] your message
} 


Since your BOT will say the line, it will appear like this in the channel:

<bontnick> [yournick] Your message.

Or, with time stamps turned on:

[12:15pm] <bontnick> [yournick] Your message.


Hi there,

I'm sorry to ask as I'm still very new to all this IRC stuffy.

I've no ideal how am I supposed to run that script from?
Any help are much appreciated


Thanks. smile

#126592 02/08/05 09:49 PM
B
Brianlan
Brianlan
B
Quote:
Quote:
[quote]Only way is to have your BOT run this script (same as above:

Code:
on *:join:#channel: {
  if ($nick == your nick) msg # [your nick] your message
} 


Since your BOT will say the line, it will appear like this in the channel:

<bontnick> [yournick] Your message.

Or, with time stamps turned on:

[12:15pm] <bontnick> [yournick] Your message.


Hi there,

I'm sorry to ask as I'm still very new to all this IRC stuffy.

I've no ideal how am I supposed to run that script from?
Any help are much appreciated


Thanks. smile


*Bump*

#126593 02/08/05 10:08 PM
Joined: Mar 2005
Posts: 420
X
Fjord artisan
Offline
Fjord artisan
X
Joined: Mar 2005
Posts: 420
Please be patient. You don't have to keep bumping it.

#126594 02/08/05 10:43 PM
B
Brianlan
Brianlan
B
Bumping? you sure I'm bumping?

Please read the message that I quoted.

Thank you.

P.S: No offence though

#126595 02/08/05 10:54 PM
Joined: Mar 2005
Posts: 420
X
Fjord artisan
Offline
Fjord artisan
X
Joined: Mar 2005
Posts: 420
Well, yeah you did. You quoted the same one after 20 mins & also wrote "*bump*".

#126596 02/08/05 10:58 PM
B
Brianlan
Brianlan
B
Hey you sure I quoted the same message? PLEASE READ THE MESSAGE CAREFULLY before replying to my post.

--Off topic anyway--


Link Copied to Clipboard