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 - Hamo

Pages: [1]
1
Moderator Applications / Re: Moderator Application!
« on: February 16, 2011, 07:22:30 pm »
i dont know you but seems that ur a good scripter
so +1 :)

2
Off topic / Re: Count to 5000
« on: February 12, 2011, 08:11:40 pm »
12

3
Off topic / Re: Count to 5000
« on: February 12, 2011, 01:02:49 pm »
4

4
Moderator Applications / Re: PL0X ADMEN
« on: February 11, 2011, 10:29:08 pm »
NO :D

5
like it :D

6
Off topic / Re: I Spy
« on: February 11, 2011, 11:02:55 am »
hm Crane?

7
Off topic / Re: I Spy
« on: February 10, 2011, 09:17:29 pm »
that building?

8
mIRC Code Snippets / uptime script
« on: February 09, 2011, 08:58:42 pm »
heres uptime script its small but helpful :)
Code: [Select]
on *:text:!uptime:*: {
      /msg $chan 5I have been Connected to 12 $+ $server for 11,1[ 4,1***15,1 $uptime(server, 1) 4,1*** 11,1]
      /msg $chan 12My system have been online 5using mIRC v $+ $version for 11,1[ 4,1***15,1 $uptime(mirc, 1) 4,1*** 11,1]
}

9
mIRC Code Snippets / auto ban and unban script :D
« on: February 09, 2011, 08:56:44 pm »
heres an auto ban script for channel control bots
Code: [Select]
on *:text:!addban *:#: {
    if ( $me isop $chan ) {
      if ($nick isop $chan)) {
        set %ban. [ $+ [ $2 ] ] 1
        msg $chan 5 $2 have been added to the Autoban List
        mode # +b $address($2,2)
        kick # $2 You Have been Banned From This Channel
      }
      else {
        msg $chan You are not allowed to use this Command
     }
   }
 }

on *:text:!delban *:#: {
    if ( $me isop $chan ) {
      if ($nick isop $chan)) {
        unset %ban. [ $+ [ $2 ] ]
        msg $chan 5 $2 have been deleted from The Autoban list
        mode # -b $address($2,2)
      }
      else {
        msg $chan You are Not allowed to use this command
     }
   }
 }

on *:join:#: {
    if ( %ban. [ $+ [ $nick ] ] == 1 ) {
      mode # +b $address($nick,2)
      kick # $nick You Are Banned From This Channel
}
 

its beter that you delete
Code: [Select]
  if ($nick isop $chan)) and add your own owner system or your nick
thats all :)

10
Member's Introduction / Re: Hello here intruduction time for me anyways
« on: February 09, 2011, 08:50:40 pm »
hi there :p

11
Off topic / Re: Let's write the story!
« on: February 09, 2011, 02:55:12 pm »
spoon and said ..

12
mIRC Code Snippets / Re: Greet Message
« on: February 09, 2011, 02:53:31 pm »
nice and simple :)


(changed Topic name to "greet Message") to make it more clear

13
mIRC Code Snippets / mute and unmute
« on: February 08, 2011, 02:54:59 pm »
full mute and unmute script was made by me ( used some help from [MM]IKKE )

note: i deleted the owners code from it so u can add urs :)

Code: [Select]
on *:text:!mute*:#:{
      if ( $me isop $chan ) {
        if ( $2 == $null ) { msg $chan 4usage:5!mute <nick>
        halt }
        if ( %mute [ $+ [ $2 ]  ] == 1 ) { msg $chan 12 $+ $2 5is already Muted
        halt }
        if ( $2 !ison $chan ) { msg $chan 12 $+ $2 5isn't in 12 $+ $chan 5Right Now
        Halt }
        /mode $chan +b  ~q: $+ $address($2,2)
        set %mute [ $+ [ $2 ]  ] 1
        if ($chr(38) isin $nick($chan,$2).pnick) { set %Prot [ $+ [ $2 ]  ] 1
        }
        if ( $2 isop $chan ) { set %op [ $+ [ $2 ]  ] 1
        }
        if ( $2 ishop $chan ) { set %hop [ $+ [ $2 ]  ] 1   
        }
        mode $chan -qaohv $2 $2 $2 $2 $2
        /msg $chan 12 $+ $2 5have been muted by 12 $+ $nick
      }
    }
  }
}
on *:text:!unmute*:#:{
      if ( $me isop $chan ) {
        if ( $2 == $null ) { msg $chan 4 usage: 5!unmute <nick> 
          halt
        }
        if ( %mute [ $+ [ $2 ]  ] == $null ) { msg $chan 12$2 12isn't Muted
        halt }
        /mode $chan -b ~q: $+ $address($2,2)
        unset %mute [ $+ [ $2 ]  ]
        /msg $chan 12 $+ $2 5have been unmuted by 12 $+ $nick
        if ( %prot [ $+ [ $2 ]  ] == 1 ) {
          mode $chan +voa $2 $2 $2
          unset %Prot [ $+ [ $2 ]  ]
        }
        if ( %op [ $+ [ $2 ]  ] == 1 ) {
          mode $chan +vo $2 $2
          unset %op [ $+ [ $2 ]  ]
        }
        if ( %hop [ $+ [ $2 ]  ] == 1 ) {
          mode $chan +vh $2 $2
          unset %hop [ $+ [ $2 ]  ]
        }
      }
    }
  }
}

14
Off topic / Re: Let's write the story!
« on: February 08, 2011, 02:46:56 pm »
do you have a girlfriend?

15
Moderator Applications / [ACCEPTED] hamo mod apply
« on: February 08, 2011, 02:32:43 pm »
Real Name: mohamed
IRC Name: Hamo (second. ILM )
What do you script ? MIRC
How old are you ? 18
Your Language: arabic
Extra:

Pages: [1]