mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Sep 2006
Posts: 71
O
Babel fish
OP Offline
Babel fish
O
Joined: Sep 2006
Posts: 71
I am trying to find script of my liking..

something like: • Thanks for the @ • would like to be able to change the color of the text and the bullets also..if someone could do this for me..I would appreciate it..I am still trying to learn.

Joined: Dec 2005
Posts: 58
S
Babel fish
Offline
Babel fish
S
Joined: Dec 2005
Posts: 58
/help on op
/help on help
/help on voice
/help on rawmode


i like that
Joined: Aug 2005
Posts: 1,052
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Aug 2005
Posts: 1,052
Quote:
I am trying to find script of my liking..

something like: • Thanks for the @ • would like to be able to change the color of the text and the bullets also..if someone could do this for me..I would appreciate it..I am still trying to learn.


Code:
ON *:OP:#:{ if $opnick == $me msg # • Thanks for the @ • }
ON *:VOICE:#:{ if $vnick == $me msg # • Thanks for the + • }
ON *:HELP:#:{ if $hnick == $me msg # • Thanks for the % • }


after the MSG # change to whatever CTRL +K for color codes and for bullets use whatever


Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }
Joined: Sep 2006
Posts: 71
O
Babel fish
OP Offline
Babel fish
O
Joined: Sep 2006
Posts: 71
HELP? whats the help command for?

Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
Help (Helper) is % (often called half op).


Invision Support
#Invision on irc.irchighway.net
Joined: Sep 2006
Posts: 71
O
Babel fish
OP Offline
Babel fish
O
Joined: Sep 2006
Posts: 71
ok thanks for the info Riamus..this isn't working for me though....not sure why...

Joined: Sep 2006
Posts: 71
O
Babel fish
OP Offline
Babel fish
O
Joined: Sep 2006
Posts: 71
ahhh NVM it works...I had it in aliases instead of Remotes!


Thanks guys! big help!

Joined: Aug 2005
Posts: 1,052
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Aug 2005
Posts: 1,052
I thought so :P because theres no way of a conflict with these kind of scripts.


Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }
Joined: Sep 2006
Posts: 71
O
Babel fish
OP Offline
Babel fish
O
Joined: Sep 2006
Posts: 71
hehe thanks

Joined: Sep 2006
Posts: 71
O
Babel fish
OP Offline
Babel fish
O
Joined: Sep 2006
Posts: 71
hmmm ok..I added some color and stuff to this..but everything else is working except the help status % it says "Thanks for the" I don't understand why? can someone figure this out?

Code:
 ON *:OP:#:{ if $opnick == $me msg # 11«11 12Thanks for the @12 11» }
ON *:VOICE:#:{ if $vnick == $me msg # 11«11 12Thanks for the +12 11» }
ON *:HELP:#:{ if $hnick == $me msg # 11«11 12Thanks for the %12 11» } 

Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
Code:
ON *:OP:#:{ if $opnick == $me msg # 11«  12Thanks for the @ 11» }
ON *:VOICE:#:{ if $vnick == $me msg # 11« 12Thanks for the + 11» }
ON *:HELP:#:{ if $hnick == $me msg # 11« 12Thanks for the % 11» } 


No need for all the extra color codes that you had. As for why it didn't work, it won't let you put %followed by something. It thinks you're trying to do a variable. Ways to work around that are to put a space before the ctrl-k, or put a $+ between them (% $+ 12), or use $chr(37) instead of % and include $+ with it as well... $chr(37) $+ 12.


Invision Support
#Invision on irc.irchighway.net
Joined: Sep 2006
Posts: 71
O
Babel fish
OP Offline
Babel fish
O
Joined: Sep 2006
Posts: 71
alright, that worked! Thanks Riamus!

Joined: Sep 2006
Posts: 71
O
Babel fish
OP Offline
Babel fish
O
Joined: Sep 2006
Posts: 71
I am just curious is there a cmd for a system admin or protected op?

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Not built in, since there's no standard for them, like for op, half-op and voice.
If you know what the sequence is to set that level, then you could code it with the ON RAWMODE event

Joined: Sep 2006
Posts: 71
O
Babel fish
OP Offline
Babel fish
O
Joined: Sep 2006
Posts: 71
oh ok, I see

Joined: Oct 2006
Posts: 5
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
Joined: Oct 2006
Posts: 5
Thought I'd bump this, since it's a good topic and helped me out. wink


Link Copied to Clipboard