mIRC Snippets | | Pagina Riepilogo Notizie | subscribe | contact | Torna a chattialiano.com  |
Saturday, September 4th  
 | shuffle | list | rss | 
random topic
on *:START:{
  /timer -o 0 21600 //Topic # %topic 8 Topic: $read(topic.txt)
}

menu channel,status,nicklist {  
  .Topic
  ..Random Topic: /Topic # %topic 8 Topic: $read(topic.txt)
  ..Enable Random Topic:.enable #Autotopic on on | msg $chan You can now type !Topic To set A random TOpic and !addtopic to addon so you can use !topic
  ..Disable Random Topic:.disable #autotopic off | msg $chan !Topic And !AddTopic are now disabled.
  ..View Topics In File:run $findfile($mircdir,Topic.txt,1)
  ..Add A topic: var %newtopic $$?='What is your topic?' | write Topic.txt %newTopic | msg $chan Topic Added: %newtopic
}

#autoTopic on
on *:text:!topic*:#: {
  if ($nick isop $chan) {
    .topic $chan %topic 8 Topic: $read(topic.txt)
  }
  else {
 &n... more

November 24th, 2009 - 02:13 am | permalink | comments  

mirc channel mode

MENU channel {
  Current modes
  .Moderation
  ..$style(2) The channel is $iif(m !isincs $chan(#).mode,not)} Moderated : noop
  ..Change?:{
    if $me isop $chan {
      if (m isincs $chan(#).mode)} { mode $chan -m }
      if (m !isincs $chan(#).mode)} { mode $chan +m }
    }
    else { echo Sorry you can't change this }
  }

  .Invite only
  ..$style(2) The channel is $iif(i !isincs $chan(#).mode,not)} Set to invite only : noop
  ..Change?:{
    if $me isop $chan {
      if (i isincs $chan(#).mode)} { mode $chan -i }
      if (i !isincs $chan(#).mode)} { mode $chan +i }
    }
    else { ec... more

November 24th, 2009 - 02:12 am | permalink | comments  

AutoOpScript
on *:Load:{
  echo -a Ty For Loading AutoOpScript By Eternal/DragonFlare
  echo -a An Eternal-Networking Script
  echo -a To activate in a channel right click in the channel highlight AutoOpScript and click on/off
}
;AutoOpScript
Menu Channel {
  -
  AutoOpScript ( $+ $Active $+ ):
  .on: .Enable #AutoOpScript | Writeini AutoOpScript.ini $chan active yes | msg $chan 14,1 AutoOpScript Has Been Activated in $active
  .off: .Disable #AutoOpScript | Writeini AutoOpScript.ini $chan active no | msg $chan 14,1 AutoOpScript has been Disabled in $active
}
#AutoOpScript on
on *:join:#:{
  %var = $readini(AutoOpScript.ini,$chan,active)
  if %var = yes { mode $chan +o $nick }
  else { halt }
}

November 24th, 2009 - 02:07 am | permalink | comments  

 
1.
November 24th, 2009 - 02:13 am

2.
November 24th, 2009 - 02:12 am

3.
November 24th, 2009 - 02:07 am

 
 
 | shuffle | list | rss |