X-Fusion
Historical / Guest
Does it have the nohost while away? If it does, open up your remotes file (press alt+R) then go to the tab labeled 'users' and remove their name from something called snoops, or noops, or something like that.
Does it have the nohost while away? If it does, open up your remotes file (press alt+R) then go to the tab labeled 'users' and remove their name from something called snoops, or noops, or something like that.
i haven't seen that but i will have a look. if your on about when they go in there cup then i know that one but this is when they join the room the bot takes it away from them & say something like i say who has the op not you or something like that anyway so all i need to know really is how do i stop the bot from doing that just as soon as they come in the room?
thanx
x-fusion
Edited Aug 15, 2006 10:05 AM by djnaughty
X-Fusion
Historical / Guest
Well, not only that, but, if they do go away, then leave or quit, it could keep their name on the snoops list. Heres a code to remove them:
on *:START:clearsnoops
alias clearsnoops {
var %x $ulist(*,snoop,0)
while (%x > 0) { ruser snoop $ulist(*,snoop,%x) | dec %x }
echo -a All NoHost Levels removed!
}
Credits to [ice][Angel]
Lynx
Historical / Guest
Well, not only that, but, if they do go away, then leave or quit, it could keep their name on the snoops list. Heres a code to remove them:
on *:START:clearsnoops
alias clearsnoops {
var %x $ulist(*,snoop,0)
while (%x > 0) { ruser snoop $ulist(*,snoop,%x) | dec %x }
echo -a All NoHost Levels removed!
}
Credits to [ice][Angel]
X-Fusion .. where do I put that code in remote ? or deowner ?
Edited Aug 15, 2006 3:58 PM by Lynx
X-Fusion
Historical / Guest
You can put that in the remote. Or, remove the alias and put it in the alias section. Then type /clearsnoops. Or, restart it.
daska
Historical / Guest
CODE IF YOU WANT TO PUT IT IN REMOTE
on *:START:clearsnoops
alias clearsnoops {
var %x $ulist(*,snoop,0)
while (%x > 0) { ruser snoop $ulist(*,snoop,%x) | dec %x }
echo -a All NoHost Levels removed!
}
CODE IF YOU WANT TO PUT IT IN ALIAS
alias clearsnoops {
var %x $ulist(*,snoop,0)
while (%x > 0) { ruser snoop $ulist(*,snoop,%x) | dec %x }
echo -a All NoHost Levels removed!
}
Credits to [ice][Angel]
Edited Aug 16, 2006 10:17 AM by daska
X-Fusion
Historical / Guest
CODE IF YOU WANT TO PUT IT IN REMOTE
on *:START:clearsnoops
alias clearsnoops {
var %x $ulist(*,snoop,0)
while (%x > 0) { ruser snoop $ulist(*,snoop,%x) | dec %x }
echo -a All NoHost Levels removed!
}
CODE IF YOU WANT TO PUT IT IN ALIAS
alias clearsnoops {
var %x $ulist(*,snoop,0)
while (%x > 0) { ruser snoop $ulist(*,snoop,%x) | dec %x }
echo -a All NoHost Levels removed!
}
Credits to [ice][Angel]
Still did it wrong, should be:
Remote:
alias clearsnoops {
var %x $ulist(*,snoop,0)
while (%x > 0) { ruser snoop $ulist(*,snoop,%x) | dec %x }
echo -a All NoHost Levels removed!
Alias:
clearsnoops {
var %x $ulist(*,snoop,0)
while (%x > 0) { ruser snoop $ulist(*,snoop,%x) | dec %x }
echo -a All NoHost Levels removed!