Jump to content

IRCx


RayK

Recommended Posts

Hey all, sorry but I didn't see any IRCx boards, lol. Well, ok here's my issue. I need a code to add to remotes as an on *:JOIN:* command.

 

I need it to have 5 ranks on it, and you'll understand what I mean after reading.

Admin

Owner

Host

Allowed

Regular

 

I need the script to kick anyone NOT ASSIGNED to a rank (regular). Anyone assigned to Allowed, Host, Owner and Admin (me) I want it to just halt.

 

It's been a while since I've been with IRCx after taking a break so I apologize.

 

Here's what I have and it has nothing to do with the ranks, so they have to be added.

 

#onjoin off

on *:JOIN:* {

if ($nick != $me) {

ban $chan $nick

kick $chan $nick Permission Denied - You're not allowed in the host room without host access! Please contact Sysop_RayK for more information. }

}

#onjoin end

Link to comment
Share on other sites

  • 4 weeks later...

Out of curiosity, If you have people joining a host room.... Why not make it so no one can find it

 

ie: set modes on your host channel, +s / h / p and have +m as well incase of any intruders..... Then set up a voice list so any hosts u know are defo hosts, u can have on an autovoice /aop list so they can still speak in the hostroom?

 

Also, try this

on *:JOIN:#:{

if (Sysop isin $nick) | (Guide isin $nick) | (Admin isin $nick) | {

if ($nick == $me) halt

access $chan add deny $nick 1440

kick # $nick Channel Access denied $nick

}

}

 

Edit: Also make sure people cannot use Staff nicks UNLESS they register there nicks, Works on ircxpro for me wink.gif

Link to comment
Share on other sites

Out of curiosity, If you have people joining a host room.... Why not make it so no one can find it

 

ie: set modes on your host channel, +s / h / p and have +m as well incase of any intruders..... Then set up a voice list so any hosts u know are defo hosts, u can have on an autovoice /aop list so they can still speak in the hostroom?

 

Also, try this

on *:JOIN:#:{

if (Sysop isin $nick) | (Guide isin $nick) | (Admin isin $nick) | {

if ($nick == $me) halt

access $chan add deny $nick 1440

kick # $nick Channel Access denied $nick

}

}

 

Edit: Also make sure people cannot use Staff nicks UNLESS they register there nicks, Works on ircxpro for me wink.gif

Assuming your Admin/Sysop/Guides have ircop status why dont just put +M on room?

Link to comment
Share on other sites

Daemon

 

Assuming your Admin/Sysop/Guides have ircop status why dont just put +M on room?

 

Its not ness jus Irc op'd people on my server if u was replying to me.... Its hosts as well. and s or h or p is there to delist it (which is wot the modes do obv tongue.gif) lol

 

have +m as well incase of any intruders..... Then set up a voice list so any hosts u know are defo hosts, u can have on an autovoice /aop list so they can still speak in the hostroom?

 

Hence my comment on +m

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...