Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Glow

Pages: [1] 2 3 ... 5
1
Off topic / Re: Say something about the user above you.
« on: March 01, 2011, 06:41:52 pm »
Meh maybe.. Well the person above me is unbanned on Foco^^

2
Off topic / Re: Say something about the user above you.
« on: March 01, 2011, 07:30:55 am »
The person above me..................................... is Jane! :D

3
mIRC Code Snippets / Re: Alias ASCII's
« on: February 27, 2011, 10:24:44 am »
Im too lazy to unload it if I dont like it ^-^

4
mIRC Code Snippets / Re: Auto level on join.
« on: February 26, 2011, 03:15:25 pm »
Sure I will. Im planning to make my own channel bot(like Whale)^^.

5
mIRC Code Snippets / Auto level on join.
« 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^^

6
mIRC Code Snippets / Re: Alias ASCII's
« on: February 26, 2011, 07:53:56 am »
Im just suggesting something keep that in your mind.

7
mIRC Code Snippets / Re: Alias ASCII's
« on: February 24, 2011, 08:38:20 pm »
What morbid said was exactly what I ment.

Next time think about other ways and not only about the easiest.

8
Off topic / Re: Ranting
« on: February 24, 2011, 08:27:50 pm »
Yup I get it :p

Thats really sad :/

9
Off topic / Re: Let's write the story!
« on: February 24, 2011, 03:24:25 pm »
but then Jane would be beautifull (L)

10
Off topic / Re: Let's write the story!
« on: February 24, 2011, 10:33:18 am »
Im fuckin ugly :o

11
Off topic / Re: Ranting
« on: February 24, 2011, 10:31:41 am »
Ehh you only save the files on a USB stick?

12
Off topic / Re: Ranting
« on: February 24, 2011, 06:33:05 am »
But its still usefull enough to save all your scripted files(if you put them in a txt file) and keep them saved.

13
Off topic / Re: Ranting
« on: February 23, 2011, 09:11:51 pm »
Thats why you always need a back up on a USB stick.

14
Off topic / Re: Let's write the story!
« on: February 23, 2011, 08:51:38 pm »
into 10000 pieces of

15
Off topic / Re: Count to 5000
« on: February 23, 2011, 06:36:28 am »
39^^
Just 4961 left to touch the 5000!!

Pages: [1] 2 3 ... 5