Showing posts with label irc. Show all posts
Showing posts with label irc. Show all posts

Saturday, December 18, 2010

Chatspace SOP AOP VOP Add/del system

This is my room manager from my upcoming r00t` iRC
**Note***: Root asin linux admin not root asin skiddie compromizing machines
now that thats outta the way -.-
This system is simple to use click owner / mod / voice
then click add / delete
then type in the roomaname in the first Edit with the # < important Then the nick you wish to add / Delete the ownership / moderator / voice of and click execute and your will shall be done ^.^


Alias Rs { Dialog -m rs rs }
Dialog Rs {
Title "r00t` iRC Room System"
size -1 -1 120 64
Option dbu
Edit "Roomname",1, 4 4 110 10, autohs center
Edit "Nickname",2, 4 16 110 10, autohs center
Check "Owner",3, 12 27 25 10
Check "Mod",4, 45 27 25 10
Check "Voice",5, 75 27 25 10
Check "Add",6, 30 39 25 10
Check "Delete",7, 68 39 25 10
Button "Execute",8, 25 49 32 13
Button "Done",9, 63 49 32 13
}
On *:Dialog:Rs:*:*:{
If ($devent == Sclick) {
If ($did = 3) {
Set %x SOP
Did -u $dname 4
Did -u $dname 5
}
If ($did = 4) { Set %x AOP
Did -u $dname 3
Did -u $dname 5
}
If ($did = 5) {
Set %x VOP
Did -u $dname 3
Did -u $dname 4
}
If ($did = 6) {
Set %y Add
Did -u $dname 7
}
If ($did = 7) {
Set %y Del
Did -u $dname 6
}
If ($did = 8) {
Services %x $did(1) %y $did(2)
}
If ($did = 9) { Dialog -x $dname $dname }
}
}
Menu Channel {
r00t` iRC Room System: rs
}

r00t` iRC Kline Manager

Description

Another of my scripts that i think users would find helpful from my upcoming r00t` iRC
***Note*** r00t asin linux administration NOT skiddie rooting users for a botnet
anyways simple to use you click the type
Kline
Akill
Click
Add
Delete
Then click execute
If you choose kill there is no need for add / delete to be selected and having either selected will not effect the script
also this script is to be used for Chatspace servers
it will auto do a stats k so that the list can be filled with the klines \ akills on the server
If you have questions or comments post a comment on the script or get ahold of me on chat-central.no-ip.org:7001

Alias Kman { Dialog -m Kline Kline }
Menu Channel {
r00t` iRC Kline Manager:Kman
}
Dialog Kline {
Title "r00t` iRC Kill and Kline"
Size -1 -1 179 86
option dbu
Box "",1, 1 1 176 43
Edit "Ip\nick\host\ident",2, 4 6 120 10, autohs
Edit "",3, 4 20 120 10, autohs
Button "Execute",4, 130 6 45 36
Check "Kill",5, 4 32 20 12
Check "Kline",6, 29 32 20 12
Check "Akill",7, 57 32 20 12
Check "Add",8, 84 32 20 12
Check "Del",9, 110 32 20 12
List 10, 1 47 176 36, size vsbar hsbar
}
On *:Dialog:Kline:*:*:{
If ($Devent == Init) {
.stats k
Did -c $dname 6
Did -c $dname 8
Did -a $dname 3 No Reason Specified.
}
If ($Devent == Sclick) {
If ($did = 9) {
Set %llx Del
did -u $dname 8
}
If ($did = 8) {
Set %llx Add
did -u $dname 9
}
If ($did = 7) {
Set %type Akill
Did -u $dname 6
Did -u $dname 5
}
If ($did = 6) {
Set %Type Kline
Did -u $dname 7
Did -u $dname 5
}
If ($did = 5) {
Set %Type kill
Did -u $dname 7
Did -u $dname 6
}
If ($did = 4) {
If (%llx == Add) && (%Type == Kline) { Kline $did(2) $did(3) | did -r $dname 10 $1- | stats k }
If (%llx == Add) && (%Type == Akill) { Akill $did(2) $did(3) | did -r $dname 10 $1- | stats k }
If (%llx == Del) && (%Type == Kline) { Unkline $did(2) | did -r $dname 10 $1- | stats k }
If (%llx == Del) && (%Type == Akill) { rakill $did(2) | did -r $dname 10 $1- | stats k }
If (%Type == Kill) { Kill $did(2) $did(3) }
}
}
}
Raw 216:*:{ If ($Dialog(Kline)) { Did -a Kline 10 $1- } }


Thursday, December 16, 2010

Mass Sajoin Ircd

All it does if your an ircoper in Unrealircd is mass join someone to how many room you want :D If you think i should change something or a way to make it better let me know


####################################################################
####################################################################
######################### H3x-iRc By Malcolm #######################
####################################################################
####################################################################
menu channel {
mass:/mass_sajoin
}

alias mass_sajoin {
var %x $$?="how many rooms?:"
var %y $$?="name of victim:"
var %i 1
while (%i <= %x) {
sajoin %y #H3x-irc $+ $rand(1,9999)
}
}