mIRC Home    About    Download    Register    News    Help

Active Threads | Unanswered Past 24 hours | Past 48 hours | Past Week | Past Month | Past Year
General Discussion Jump to new posts
Re: mIRC Servers list KindOne Yesterday at 03:43 PM
Mibbit shutdown - https://mibbit.com/
16 21,432 Read More
Scripts & Popups
Re: Join flood protection Fernet Yesterday at 02:43 PM
Originally Posted by Simo
this part gets the times joined in 10 seconds :

Code
    if ($($+(%,JoinPartFlood_,$site,_,$chan),2) == 3) { 

Where is 10 seconds? Is maybe here----> { set -u10 $+(%,JoinPartFlood_,$site,_,$chan) 1 } ?
My rules should has to be 3 joins allowed in 30 minutes (1800 sec).
So maybe I can write this?

Code


on !*:JOIN:#:{
  if ($nick($chan,$me,~&@%)) { 
    if ($+(%,JoinPartFlood_,$site,_,$chan) == $null ) { set -u1800 $+(%,JoinPartFlood_,$site,_,$chan) 1   }
    else { inc $+(%,JoinPartFlood_,$site,_,$chan)  }
    if ($($+(%,JoinPartFlood_,$site,_,$chan),2) == 3) {
      if ($wildsite !isban $chan) {  ban -u $+ $duration(10h)  $chan $nick 2   }
      if ($nick ison $chan) { kick $chan $nick Join-Part-Flood }
      unset $+(%,JoinPartFlood_,$site,_,$chan)
    }
  }
}


19 30,670 Read More
Bug Reports Jump to new posts
$urlget crash when URL contains credentials ThiefMaster Yesterday at 11:20 AM
Simple example:

Code
alias crashtest {
  var %url http://hello:world@example.com
  echo -a urlget sent: $urlget(%url,bg,&reqtestresp,noop)
}

This used to work fine in the past, but at some point it started crashing mIRC.

Still happens in v7.81, I don't know when it started.

As a workaround I can of course pass the authorization header directly, like this:

Code
bset -t &reqtesthdr 1 Authorization:Basic .......

But it's less pleasant since it requires base64 encoding it etc.

In any case, whatever I put in the URL, it should never crash mIRC.
0 30 Read More