mIRC Home    About    Download    Register    News    Help

Print Thread
#44724 29/08/03 04:51 AM
Joined: Feb 2003
Posts: 79
A
Ancyker Offline OP
Babel fish
OP Offline
Babel fish
A
Joined: Feb 2003
Posts: 79
.:00:50:23.Ancyker is now a room moderator in Xeronic (Issued by Xeronic):.
[00:50:42] * Ancyker sets mode: +q Ancyker

+q is like an owner thing, so how do i make it say what its doing?

#44725 29/08/03 04:59 AM
Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
Quote:
so how do i make it say what its doing?

what do you mean?


new username: tidy_trax
#44726 29/08/03 05:12 AM
Joined: Feb 2003
Posts: 79
A
Ancyker Offline OP
Babel fish
OP Offline
Babel fish
A
Joined: Feb 2003
Posts: 79
.:00:50:23.Ancyker is now a room moderator in Xeronic (Issued by Xeronic):.
[00:50:42] * Ancyker sets mode: +q Ancyker

see how +o says room mod...ect, i want +q to do that to

#44727 29/08/03 05:16 AM
Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
on ^*:OWNER:#:{
echo $chan .: $+ $time(hh:nn:ss) $+ . $+ $opnick is now a room owner in $remove($chan,$chr(35)) (Issued By: $nick $+ ):.
haltdef
}


new username: tidy_trax
#44728 29/08/03 05:21 AM
Joined: Feb 2003
Posts: 79
A
Ancyker Offline OP
Babel fish
OP Offline
Babel fish
A
Joined: Feb 2003
Posts: 79
Hmm that worked, why wasnt it defined in the help file?

Edit
-------------------------------------------------------
[01:23:43] * Ancyker sets mode: -a Ancyker
[01:23:44] * Ancyker sets mode: +a Ancyker

What about that?

Last edited by Ancyker; 29/08/03 05:24 AM.
#44729 29/08/03 05:28 AM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
+q is owner, a is not specified in the mirc events unfortunatly. It was said at one point in time i blieve, perhaps in a versions.txt file. Thats why its always a good idea to look through versions.txt when u get mirc >:D


-KingTomato
#44730 29/08/03 09:18 AM
Joined: Aug 2003
Posts: 136
Vogon poet
Offline
Vogon poet
Joined: Aug 2003
Posts: 136
Quote:
What about that?

+a Usualy means protected
-a unprotected
Means only the owner of the room or if you have access levels, only the owner and a user with a higher access level.


In Virginia, chickens cannot lay eggs before 8:00 a.m., and must be done before 4:00 p.m.
#44731 30/08/03 03:41 PM
Joined: Dec 2002
Posts: 2,985
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2002
Posts: 2,985
Code:
ON ^*:RAWMODE:#: {
  if ($1 == +a) {
    echo $colour(mode) # <Your custom mode message for mode +a here>
  }
  if ($1 == -a) {
    echo $colour(mode) # <Your custom mode message for mode -a here>
  }
  haltdef
}


Link Copied to Clipboard