Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Name:
Email:
Subject:
Message icon:

Verification:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Jane
« on: May 11, 2011, 12:21:21 pm »

Here is another one for you i just made, report bugs here!


In your bot chat do /auser owner YourNICKhere

In your remote add:-

Code: [Select]
on owner:TEXT:!aop *:#:{
mode $chan +o $2
/auser op $2
msg $chan Added $2 to the Auto Op List!
}
on op:JOIN:#:{
mode $chan +ao $nick
}
on owner:TEXT:!admin *:#:{
mode $chan +ao $2
msg $chan Added $2 to the auto Admin list!
/auser admin $2
}
on Admin:JOIN:#:{
mode $chan +ao $nick
}
on owner:TEXT:!aowner *:#:{
mode $chan +qo $2
msg $chan Added $2 to the Auto owner list!
/auser own $2
}
on own:JOIN:#:{
mode $chan +qo $nick
}
on owner:TEXT:!deowner *:{
/ruser own $2
msg $chan Removed $2 from the auto owner list!
mode $chan -qo $2
}
on owner:TEXT:!deaop *:#:{
/ruser op $2
msg $chan Removed $2 from the auto op list!
mode $chan -ao $2
}
on owner:TEXT:!deadmin *:#:{
/ruser admin $2
mode $chan -ao $2
msg $chan Removed $2 from the auto admin list !
}

Commands are !aop, !aowner, !admin, !deaop, !deowner, and !deadmin.

Credits to me :)
Posted by: [TW]Flix
« on: May 07, 2011, 09:01:42 pm »

it doesn't work for me D:
Posted by: Jane
« on: March 01, 2011, 05:38:43 am »

I Really want to learn PHP but if soneone gives me the first stips instructions I would learn.
Posted by: King_Hual
« on: February 27, 2011, 12:21:44 pm »

Well I thought that when he said
(like Whale)
He meant a service bot, because Whale is a service bot in the network we're on :p
Posted by: morbid
« on: February 27, 2011, 06:57:43 am »

Sure I will. Im planning to make my own channel bot(like Whale)^^.

Channel bots are PHP :>

Eh not necessarily..Service BOTS are PHP.
My bot CRIm (mIRC backwards)
Was a chatspace/Irc-d bot. And it was all Irc coding
Posted by: King_Hual
« on: February 26, 2011, 07:37:23 pm »

Sure I will. Im planning to make my own channel bot(like Whale)^^.

Channel bots are PHP :>
Posted by: Glow
« on: February 26, 2011, 03:15:25 pm »

Sure I will. Im planning to make my own channel bot(like Whale)^^.
Posted by: Jane
« on: February 26, 2011, 02:47:41 pm »

Nice & good useful script, Keep it up!
Posted by: Glow
« on: February 26, 2011, 01:50:25 pm »

This script gives people(when you assign them) the levels you assigned them!

Fill at yournick your IRC nick in(duh).

Commands to promote:
Code: [Select]
-!addvoice
-!addhalfop
-!addop
-!addprotect
-!addowner

Commands to demote:
Code: [Select]
-!delvoice
-!delhalfop
-!delop
-!delprotect
-!delowner

Code: [Select]
on *:TEXT:*:#: {
  if ($1 == !addvoice) && ($nick == Yournick) {
    msg $chan Added $2 to the auto voice list!
    set % [ $+ [ $2 ] ] voice
  }
  elseif ($1 == !delvoice) && ($nick == Yournick) {
    msg $chan Deleted $2 from the auto voice list!
    unset % [ $+ [ $2] ]
  }
  if ($1 == !addhalfop) && ($nick == Yournick) {
    msg $chan Added $2 to the auto halfop list!
    set % [ $+ [ $2 ] ] halfop
  }
  if ($1 == !delhalfop) && ($nick == Yournick) {
    msg $chan Deleted $2 from the auto halfop list!
    unset % [ $+ [ $2] ]
  }
  if ($1 == !addop) && ($nick == Yournick) {
    msg $chan Added $2 to the auto op list!
    set % [ $+ [ $2 ] ] op
  }
  if ($1 == !delop) && ($nick == Yournick) {
    msg $chan Deleted $2 from the auto op list!
    unset % [ $+ [ $2] ]
  }
  if ($1 == !addprotect) && ($nick == Yournick) {
    msg $chan Added $2 to the auto protect list!
    set % [ $+ [ $2 ] ] protect
  }
  if ($1 == !delprotect) && ($nick == Yournick) {
    msg $chan Deleted $2 from the auto protect list!
    unset % [ $+ [ $2] ]
  }
  if ($1 == !addowner) && ($nick == Yournick) {
    msg $chan Added $2 to the auto owner list!
    set % [ $+ [ $2 ] ] owner
  }
  if ($1 == !delowner) && ($nick == Yournick) {
    msg $chan Deleted $2 from the auto owner list!
    unset % [ $+ [ $2] ]
  }
}
on *:JOIN:#: {
  if (% [ $+ [ $nick ] ] == voice) {
    mode $chan +v $nick
  }
  if (% [ $+ [ $nick ] ] == halfop) {
    mode $chan +h $nick
  }
  if (% [ $+ [ $nick ] ] == op) {
    mode $chan +o $nick
  }
  if (% [ $+ [ $nick ] ] == protect) {
    mode $chan +a $nick
  }
  if (% [ $+ [ $nick ] ] == owner) {
    mode $chan +q $nick
  }
}

Usage:
Code: [Select]
<~[Ask]Goblo> !addprotect Fabian
<~Amy> Added Fabian to the auto protect list!
* Fabian (Nishe@Fabian.Noezz.users) has left #Gobz
* Fabian (Nishe@Fabian.Noezz.users) has joined #Gobz
* Amy sets mode: +a Fabian
or
Code: [Select]
<~[Ask]Goblo> !delprotect Fabian
<~Amy> Deleted Fabian from the auto protect list!
* Fabian (Nishe@Fabian.Noezz.users) has left #Gobz
* Fabian (Nishe@Fabian.Noezz.users) has joined #Gobz

Got a little help from some friends but I scripted over 90% by myself^^