mIRC Home    About    Download    Register    News    Help

Active Threads | Unanswered Past 24 hours | Past 48 hours | Past Week | Past Month | Past Year
Feature Suggestions Jump to new posts
Indentation size in the script editor goblin58 Yesterday at 09:19 PM
Would it be possible to add a user option to adjust the tab/indentation size in the script editor. I use a vs code for editing and I have my tab/indentation size set to 4 spaces, however loading/saving scripts reformats the indentation/tab size to 2 spaces.
0 17 Read More
mIRC Help Jump to new posts
mIRC v7.83 FiSH hamal Yesterday at 05:46 PM
Seems mIRC v7.83 cant compile FiSH DLLs
Anyone else having this issue?
0 15 Read More
mIRC Help Jump to new posts
Re: Suddenly Can't connect to Undernet Khaled Yesterday at 08:23 AM
The error message seems to indicate that your security software is blocking connections to Undernet. You can find a post that covers this question here.
1 193 Read More
Scripts & Popups Jump to new posts
Ban enforcer with kick limit Simo 24/11/25 01:56 PM
Hey there,

i was trying out this ban enforcer and couldnt get it to halt when the amount of nicks the banmask matched exceeds 2

the : if (%kick) { kick $chan %kick «-Banned-» } still executes anuway to halt that as well when $numtok(%kick,44) > 2.


Code

ON *:ban:#test:{ 
  if ($nick(#,$me,~&@%)  || o isin $usermode ) { 
    var %ixz = 1 
    while ($ialchan($banmask,$chan,%ixz).nick != $null)  { 
      var %user =  $v1
      if (!$nick($chan, %user ,@&%+) && !$istok( $me , %user ,32)  && %user ison $chan) { var %kick = $addtok(%kick,%user,44) }
      if ($numtok(%kick,44) > 2) { break | mode $chan -b $banmask | unset %kick }
      if ($numtok(%kick,44) == 4) { kick $chan  %kick «-Banned-» | unset %kick }
      inc %ixz 
    }
    if (%kick) { kick $chan  %kick «-Banned-» }
  }
}



0 54 Read More
Bug Reports Jump to new posts
Re: $urlget Khaled 24/11/25 08:23 AM
Thanks for your bug report. WinINet is reporting a decode error when "deflate" is specified in the Accept-Encoding header on this particular website. It looks like the implementation of deflate on this server is different from WinINet's version (see here for an explanation). I have changed $urlget() so that in the case of a decode error, it will retry the connection without compression, which resolves the issue in this case. This change will be in the next version.
1 138 Read More
Scripts & Popups Jump to new posts
website text script NewzNZ 23/11/25 08:36 AM
Hi there

I have some scripts to pull headlines etc from various news feeds.

Am currently using:
if (some-text-here isin %temp) {

to identify the line of text I want to use, but some of the sites have more of an RSS format and don't have unique lines or codes to identify them.

Just wondering if there's a way to pull a specific line number from a page? e.g. in a tcl script used on an eggdrop bot, it's [lindex [split $data \n] 6] where line 6 is the number.

Thanks in advance for any help...
0 62 Read More