mIRC Home    About    Download    Register    News    Help

Print Thread
#153453 16/07/06 09:20 PM
Joined: Jul 2006
Posts: 13
A
Pikka bird
OP Offline
Pikka bird
A
Joined: Jul 2006
Posts: 13
Could someone post a link script?

Like..

When someone write !forum in a channel,
I will automaticly write the link he is after..

Like..

[13:00:00]<Test1> !forum
[13:00:01]<Owner> *writes the link*

Very appreciated if someone could give me the script wink

#153454 16/07/06 09:27 PM
Joined: Apr 2006
Posts: 464
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Apr 2006
Posts: 464
Just copy and paste this code in one of your remote files (ALT + R).

Code:
on *:TEXT:!forum*:*:{
  msg $chan You can find our forums at: 12http://www.forum.com
}


Have fun-ish grin

#153455 16/07/06 11:48 PM
Joined: Apr 2006
Posts: 400
K
Fjord artisan
Offline
Fjord artisan
K
Joined: Apr 2006
Posts: 400
Quote:
Just copy and paste this code in one of your remote files (ALT + R).

Code:
on *:TEXT:!forum*:*:{
  msg $chan You can find our forums at: 12http://www.forum.com
}


Have fun-ish grin

hey OrionsBelt! laugh, just one thing wrong with this, when you put "on *:TEXT:!forum*:*: {" you'll get an error if it's msg $chan, I would do this:
Code:
on *:TEXT:!forum:#: {
code
}


-Kurdish_Assass1n
#153456 17/07/06 05:45 AM
Joined: Apr 2006
Posts: 464
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Apr 2006
Posts: 464
Hmm, alright.

Well I was close :tongue:

#153457 17/07/06 08:31 AM
Joined: Jul 2006
Posts: 13
A
Pikka bird
OP Offline
Pikka bird
A
Joined: Jul 2006
Posts: 13
Whoow laugh

Thanks guys

Working perfectly wink

#153458 22/07/06 11:55 AM
Joined: Nov 2004
Posts: 21
D
Ameglian cow
Offline
Ameglian cow
D
Joined: Nov 2004
Posts: 21
If you wanted to make it work with a channel and in a PM you could use:

Code:
on *:TEXT:!forum*:*:{
msg $iif($chan,$chan,$nick) Visit our forums at www.randomlink.com 
}


Link Copied to Clipboard