mIRC Home    About    Download    Register    News    Help

Print Thread
#196050 08/03/08 06:27 PM
Joined: Jan 2008
Posts: 44
J
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Jan 2008
Posts: 44
Just making a little notify admin help script for people,
Code:
on *:text:!Admin:#plesh11: {
  notice $nick An Admin has been notified that you need one of us, please wait patiently.
  notice (command to msg ops) $nick Has requested an admin, please look.
}

I have been trying to figure out how to msg ops in the certain chan, no idea tho.
if somebody would be kind enought to tell me, cheers.


#Plesh on QuaKenet
Jake Randall
Need help?
#Plesh - QuakeNet
Private Message Me Here!
jakerandall #196051 08/03/08 07:09 PM
Joined: Feb 2006
Posts: 181
C
Vogon poet
Offline
Vogon poet
C
Joined: Feb 2006
Posts: 181
Code:
on *:text:!Admin:#plesh11: {
  notice $nick An Admin has been notified that you need one of us, please wait patiently.
  notice @#plesh11 $nick Has requested an admin, please look.
}


notice @#plesh11 ... == notice to all Ops in #plesh11

Crinul #196052 08/03/08 07:14 PM
Joined: Jan 2008
Posts: 44
J
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Jan 2008
Posts: 44
ok i done it :P
Code:
on *:text:!Admin:#eQm: {
  notice $nick An Admin has been notified that you need one of us, please wait patiently.
  /omsg $chan $nick Has requested an admin, please look in the main channel (This Has Also Been Notified To All Ops).
}

Now just need a floodprotection script so nobody spams me, could any1 fit this in cheers.


#Plesh on QuaKenet
Jake Randall
Need help?
#Plesh - QuakeNet
Private Message Me Here!
jakerandall #196054 08/03/08 07:39 PM
Joined: Feb 2006
Posts: 181
C
Vogon poet
Offline
Vogon poet
C
Joined: Feb 2006
Posts: 181
Code:
on *:text:!Admin:#eQm: {
  if ($hget($+(flood.pro.,$cid),admin) > 5) return
  if (!$hget($+(flood.pro.,$cid),admin)) {
    notice $nick An Admin has been notified that you need one of us, please wait patiently.
    omsg $chan $nick Has requested an admin, please look in the main channel (This Has Also Been Notified To All Ops)
    hadd -m $+(flood.pro.,$cid) admin 1
  }
  else hinc -u20 $+(flood.pro.,$cid) admin
}


No replies after 5 within 20 seconds

Crinul #196055 08/03/08 07:56 PM
Joined: Jan 2008
Posts: 44
J
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Jan 2008
Posts: 44
Cheers man, appreciate it wink


#Plesh on QuaKenet
Jake Randall
Need help?
#Plesh - QuakeNet
Private Message Me Here!

Link Copied to Clipboard