PurpleCow

PurpleCow

Joined
Jun 13, 2013
Occupation
Grazing & Scripting
Location
The Lawn
Interests
mIRC Scripting

Activity Stream

PurpleCow commented on a Page, save nick save ident save ip  -  Jul 01, 2020

Your question is not very clear, but from what I understand, you might want something like this:

on *:TEXT:*something*:#channel:{
  mode # +b $+($nick,!*@*)
  kick # $nick Add reason here...
  write scripts\bans.txt $replace($address($nick,5),!,$chr(32),@,$chr(32))
}
on *:JOIN:#channel:{
  var %ident $remove($gettok($address($nick,5),1,64),$nick $+ !)
  var %host $gettok($address($nick,5),2,64)
  var %c 1, %l $lines(scripts\bans.txt)
  while (%c <= %l) {
    var %line $read(scripts\bans.txt,%c)
    if ($findtok(%line,$nick,0,32) || $findtok(%line,%ident,0,32) || $findtok(%line,%host,0,32)) {
      mode # +b $+($nick,!*@*)
      kick # $nick Add reason here...
    }
    inc %c 1
  }
}

NOTE: It is just a concept. It may or may not work as you want it. Feel free to modify the code to suit your needs.
UPDATE (04.07.2020): script is rewritten

 Respond  
PurpleCow commented on a Page, Convert Hex IP to Dec  -  Apr 30, 2020

Or you can make it shorter this way:

alias hex2ip { return $longip($base($1,16,10)) }
alias ip2hex { return $base($longip($1),10,16) } 
 Respond  
PurpleCow commented on a Page, mIRC Proxy Problem  -  Jan 03, 2020

You need to open a secure socket to the website.
Replace this line:

sockopen $+(_proxy02,%::rand) www.proxy-list.download 80

with this one:

sockopen -e $+(_proxy02,%::rand) www.proxy-list.download 443
PurpleCow commented on a Page, RSS IRC Newstracker bot script v4 with gui by wazer  -  Jun 28, 2013

Little bug; if the title contains $ for example a price $250, the script does not show it.
Can anyone fix it please?

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.