mIRC Home    About    Download    Register    News    Help

Print Thread
#245922 14/05/14 07:15 AM
Joined: May 2014
Posts: 5
P
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
P
Joined: May 2014
Posts: 5
Is there variable I can add so that only I can used certain commands as a channel owner? I can't seem to find one. The "OP" command gives mods the ability to use it as well, and I don't want that.

Any help would be much appreciated.

Joined: May 2014
Posts: 5
P
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
P
Joined: May 2014
Posts: 5
I think I found it.

(if $nick == persephone325)

Which is my account username. Unless I'm mistaken?

Joined: Apr 2014
Posts: 191
B
Vogon poet
Offline
Vogon poet
B
Joined: Apr 2014
Posts: 191
Originally Posted By: persephone325
I think I found it.

(if $nick == persephone325)

Which is my account username. Unless I'm mistaken?

brackets () is not correct.
It should be
Code:
if ($nick == persephone325) { do stuff here }

Joined: May 2014
Posts: 5
P
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
P
Joined: May 2014
Posts: 5
I had it right in the actual coding box. I just didn't transfer it to here the right way. lol

Another quick question though. How can I make it so that only certain usernames can use a command? I have a few commands that only I can use, but there is one that I would like a specific viewer of mine to have. She's a good friend of mine. ^^

This is the code, but it won't work when she types in the command.

on *:TEXT:!nova:#: {
if ($nick == persephone325) || ($nick ==novanashi_kitsune) {
msg $chan Nova, my favorite Kitsune!! *pats her lovely head* <3 }
}

Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
Some easy ways to do it is to read off of a string, compare the value of $nick and see if the value is true.
If you're gonna have multiple users, you can use $read/$istok, they're very simple to deal with.

If you're just gonna have 2 users, your way works as well, you just need to add a space -
Quote:
($nick ==novanashi_kitsune)


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net
Joined: May 2014
Posts: 5
P
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
P
Joined: May 2014
Posts: 5
Oh! Gotcha. I totally didn't notice there wasn't a space there. Thank you! ^^


Link Copied to Clipboard