mIRC Home    About    Download    Register    News    Help

Print Thread
#244499 05/03/14 12:54 AM
Joined: Jun 2013
Posts: 24
B
BMX50 Offline OP
Ameglian cow
OP Offline
Ameglian cow
B
Joined: Jun 2013
Posts: 24
hi

how do i add this line for when i enter channels please

PLease wait Until my player Starts Before Requesting, Thank You.

i'm not sure where to put it or how to write the code for it or where to put it this line in the code. please help, Thank You.

BMX50 #244501 05/03/14 03:28 AM
Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
Code:
 on me:*:join:#: { msg # PLease wait Until my player Starts Before Requesting, Thank You. } 


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net
Nillen #244506 05/03/14 09:35 AM
Joined: Jun 2013
Posts: 24
B
BMX50 Offline OP
Ameglian cow
OP Offline
Ameglian cow
B
Joined: Jun 2013
Posts: 24
Nillen, Thank You

where do i place command at in alais, popup, remotes or variables?

BMX50 #244507 05/03/14 10:45 AM
Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
Remote


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net
BMX50 #244509 05/03/14 06:08 PM
Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Press ALT + R in mirc, then paste it in there..


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
sparta #244513 05/03/14 11:09 PM
Joined: Jun 2013
Posts: 24
B
BMX50 Offline OP
Ameglian cow
OP Offline
Ameglian cow
B
Joined: Jun 2013
Posts: 24
Thanks again. will this show up each i log into a channel. i'm no programmer so i ned lots of help LOL.

BMX50 #244516 06/03/14 03:25 AM
Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
Yep, each and every channel. If you want it to be channel specific, change the :#: to :#yourchannel: etc


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net
Nillen #244517 06/03/14 09:39 AM
Joined: Jun 2013
Posts: 24
B
BMX50 Offline OP
Ameglian cow
OP Offline
Ameglian cow
B
Joined: Jun 2013
Posts: 24
ok well i put in remotes and when i logon it doesn't show when i enter into a channel. am i missing something in the line by chance?

BMX50 #244518 06/03/14 10:17 AM
Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Code:
on me:join:#: { msg # PLease wait Until my player Starts Before Requesting, Thank You. }

Try this one. Nillen had a * to many. on me:*:join:#:


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
sparta #244523 06/03/14 11:12 PM
Joined: Jun 2013
Posts: 24
B
BMX50 Offline OP
Ameglian cow
OP Offline
Ameglian cow
B
Joined: Jun 2013
Posts: 24
Again thanks but neither code works. msg doesn't popup after i enter a channel room, any idea why?

BMX50 #244524 07/03/14 01:01 AM
Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
Do you have this in the same script as other join events?

sparta #244534 08/03/14 12:26 AM
Joined: Jul 2006
Posts: 4,146
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Jul 2006
Posts: 4,146
No, he had it correct, even the mIRC help file documents it, read /help event prefixes


#mircscripting @ irc.swiftirc.net == the best mIRC help channel
Wims #244552 08/03/14 09:49 PM
Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
The * prefix

You can allow any user to trigger an event regardless of their access level by using the * prefix.

on *:TEXT:help:#:/msg $nick you have accessed a * level event

And i cant find anywhere where the * is used together with somthing else combined? And in this case it was me that should be the trigger, not me:*: ?


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
sparta #244554 09/03/14 01:13 AM
Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
Originally Posted By: sparta
The * prefix

You can allow any user to trigger an event regardless of their access level by using the * prefix.

on *:TEXT:help:#:/msg $nick you have accessed a * level event

And i cant find anywhere where the * is used together with somthing else combined? And in this case it was me that should be the trigger, not me:*: ?


The me prefix

You can limit an event to trigger only to your actions by using the me prefix. For example, the following event will only trigger when you join a channel:



on me:*:JOIN:#:/msg # Hello to one and all!


Link Copied to Clipboard