Top

Random JOIN message


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  1.0 (of 1 scores)
Date Added  Jun 13, 2009
Last Updated  Jun 13, 2009
Tags  chan  channel  join  random  script  snippet  welcome 

Introduction

Hi there, this is my first snippet.. very simple but its useful anyhow. hehe..
first, in able to work this snippet, you have to make a .txt file name welcome.txt and save it in your mirc rood folder..

example:
------------------

hi $nick $+ , welcome to $chan
Enjoy your stay @ $chan $+ , $nick $+ ! ^^

------------------

additional, it has auto voice.

Credit goes to Jethro_
Thanks

Grab the Code

on !@*:JOIN:#YourChannel: {
  .msg $chan $read(welcome.txt) $nick $+ , welcome to $chan
  pvoice 2 $chan $nick | .timer 1 3 .msg $chan $nick $+ , there is your auto-voice.
}

Comments

  (12)  RSS
blitzz
Comments: 122
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 2:38 am
/msg: insufficient parameters <--- You'll got this

Actually why make it more complicated.

Why not just:

on *:join:#yourchannel: {
timer 1 1 msg $chan Welcome
timer 1 2 mode $chan +v $nick
timer 1 3 msg $chan Here is your auto-voice $nick
}

Jethro_
Comments: 436
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 2:53 am
Don't miss out on the use of /pvoice command, and your script can simply be made as:
Code:
on !@*:JOIN:#YourChannel: {
  .msg $chan $read(welcome.txt) $nick $+ , welcome to $chan
  pvoice 2 $chan $nick | .timer 1 3 .msg $chan $nick $+ , there is your auto-voice.
}
Assuming the welcome text contains all the greeting messages. The ! and @ level prefix ensure that you don't greet yourself and the script that has this script installed is opped in channel. -Edit just realize the first timer is unneeded.
Marguerite
Comments: 1
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 3:24 am
blitzz, sorry, i just tried to make my own snippet. and your comment is so much appreciated. same to jethro_ is it ok to you? i will edit this snippet and place your suggested snippet..

thank you.
blitzz
Comments: 122
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 3:31 am
Oh my. We didn't say you need to replace it. That was just a suggestion. :)

Of course you can make it with your own style Marguerite. Just fix the error :)
TravisT
Comments: 19
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 3:33 am
This snippet needs the text file included.

Blitzz, the reason is that /pvoice will not give +v if they already have it or have left the room.
blitzz
Comments: 122
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 3:45 am
Yes. TravisT. But, actually what i meant, he didn't fix the error before. But directly took Jethro_'s comment then posted it.

In that case, he/she should give Jethro_ credits for that.
Lick_My_Brain
Comments: 1
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 6:50 am
This fails more than zipping your !@#$ into your flys :]
Weasel
Comments: 117
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 8:01 am
terrible, dont need the #YourChannelHere its the same thing and no txt file is needed plus
Code:
 alias /edit txt /run notepad welcome.txt
would make it rock P.S when does it voice people...
Jethro_
Comments: 436
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 11:53 am
Weasel, without #YourChannelHere, it will send to every room where you are. And what that alias does is to open the welcome.txt. It's not needed as well as it can be edited manually. Think before commenting on a snippet.
PATX
Comments: 390
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 1:40 pm
@Jethro_ i dont think weasel CAN think. as for me i rly dont see a good point in the join scripts. they are super annoying.
PATX
Comments: 390
 
mIRC Snippet:  Random JOIN message
Posted on Jun 13, 2009 1:41 pm
a sugestion: why not use rand and vars???
jonesy44
Comments: 1,856
 
mIRC Snippet:  Random JOIN message
Posted on Jun 16, 2009 7:25 am
Code:
on *:join:#YourChannel:var %s = Welcome to $chan,Come on in $nick $+ ! | msg # $gettok(%s,$r(1,$numtok(%s,44)),44) | mode # +v $nick

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom