mIRC Home    About    Download    Register    News    Help

Print Thread
#131241 27/09/05 04:55 PM
Joined: Sep 2005
Posts: 44
R
Ameglian cow
OP Offline
Ameglian cow
R
Joined: Sep 2005
Posts: 44
whats does the ^ mean where the userlevel goes?

like

on ^1:TEXT:*:# { blah blah

the ^1 is confusing me

#131242 27/09/05 05:06 PM
Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
/help /haltdef

^ is used when you want to use halt/haltdef.

Example:

This will make all text appear twice (once in the original form, once colored greed).
Code:
on *:text:*:*: {
  echo -a 03 $+ $strip($1-)
}


If you wanted only your green version to be displayed:
Code:
on ^*:text:*:*: {
  haltdef
  echo -a 03 $+ $strip($1-)
}


To see some other prefixes:
/help prefixes


Invision Support
#Invision on irc.irchighway.net
#131243 27/09/05 11:25 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
This question was also answered here but in a different thread. smile

-Andy


Link Copied to Clipboard