ovelayer

ovelayer

Joined
Nov 19, 2005

Activity Stream

ovelayer liked a Comment, A simple IP to Country  -  Dec 03, 2019
ovelayer commented on a Comment, Weather script for mIRC  -  Oct 31, 2019
ovelayer commented on a Comment, Weather script for mIRC  -  Aug 21, 2019
ovelayer liked a Comment, Weather script for mIRC  -  Jul 31, 2019
ovelayer commented on a Page, Weather script for mIRC  -  Apr 05, 2019

https://www.apixu.com/api.aspx

provides a free api..
wondering if you could use this?

ovelayer commented on a Page, Hotlink Query  -  Mar 06, 2019

if i click an ip .. it gives me the ip inside of square brackets ie [123.23.23.123]
I want to be to able to echo "just " the ip firstly
try:

on *:hotlink:*:@connecting: { //echo -a $remove($+($strip($1)),$chr(91),$chr(93)) }

to create a ban type..find which $ targets the nick..like $4

on *:hotlink:*:@connecting: { //echo -a bannning $address($4,2) }

or if you have oper

on *:hotlink:*:@connecting: { //echo -a gline $+(*,$chr(64),$remove($+($strip($1)),$chr(91),$chr(93))) 1d because i can. }
ovelayer commented on a Page, Weather script for mIRC  -  Mar 06, 2019

Wunderground seems to have removed the free api's again..stopped working

 Respond  
ovelayer commented on a Page, Youtube Script (Parse Vids and Search) v6.5  -  Jan 07, 2019

could you..would you...consider doin a !google search..
most are non-working and i dont want to use a module to use a script..
your's are allways great and stand-alone!
=)

ovelayer liked a Page, Oper Control Dialog   -  Dec 17, 2018
ovelayer liked a Page, VoiceDelay For Freenode Spambots  -  Nov 29, 2018
ovelayer commented on a Page, Nick Change Kicker  -  Nov 02, 2018

there are quite a few posted
try the search function
http://hawkee.com/search/nick+flood/
enjoy

 Respond  
ovelayer commented on a Page, A simple IP to Country  -  Oct 18, 2018

seems to have stopped working

ovelayer commented on a Page, RAW Code  -  Oct 11, 2018

if your just checking if a nick is registered or not or the status of identification i would use /ns status
then you can use notice events instead of raws.and collecting a bunch of unnecessary information

 Respond  
ovelayer commented on a Page, mINFO - System info  -  Aug 04, 2018

link to download dll no longer works

 Respond  
ovelayer commented on a Page, Weather script for mIRC  -  Jul 31, 2018

was wondering if there was a way to make it so when you do !weather/!forecast . if there are any alerts it will display "2 alerts"
only way now to know if there are alerts is !alerts

 Respond  
ovelayer commented on a Page, TVMaze-Search  -  Jun 22, 2018

i like your module..however..is there anyway to make the colors changeable? you hardcode in the colors and sometimes...wow..lol
would be a nice feature..
keep up the good work

also showtimes are a good idea to add.
i use this as a layout..
(Fri 3:12 pm)- &Brains Westworld (US/HBO) - Sunday @ 9:00pm EST - (Running)
(Fri 3:12 pm)- &Brains www.tvmaze.com/shows/1371/westworld
(Fri 3:12 pm)- &Brains Last Episode: Jun/17/2018 S02E09 "Vanishing Point"
(Fri 3:12 pm)- &Brains Next Episode: Jun/24/2018 S02E10 "The Passenger" - Airing in: 2days 2hrs 48mins

ovelayer commented on a Comment, !IMDB Movie Search  -  Jun 17, 2018
ovelayer commented on a Page, PreDB.org mIRC Announcer v0.5  -  Mar 07, 2018

stopped working

ovelayer commented on a Comment, Nick tracking Script help  -  Feb 02, 2018
ovelayer commented on a Page, mIRC - Modified Nicklist - Sorted By Idle and Colored  -  Feb 02, 2018

Prolcons lol you still gonna do an update to this?

 Respond  
ovelayer commented on a Page, My script.  -  Jan 31, 2018

cool looks decent nice use of dcx maybe a dcc/network bandwith useage bar/graph with current useage would make a nice addition

 Respond  
ovelayer commented on a Page, My script.  -  Jan 22, 2018

was there supposed to be an attachment?

ovelayer liked a Comment, Current Crypto-Currency Prices. New Revision.  -  Jan 14, 2018
ovelayer commented on a Comment, Current Crypto-Currency Prices. New Revision.  -  Jan 14, 2018
ovelayer commented on a Comment, Current Crypto-Currency Prices. New Revision.  -  Jan 11, 2018
ovelayer commented on a Comment, Nick tracking Script help  -  Jan 05, 2018
ovelayer commented on a Page, Nick tracking Script help  -  Jan 04, 2018

change

on :JOIN:#: {
if ($hget(trackusers,$address($nick,2))) {
var %n = $ifmatch
if ($istok(%n,$nick,32)) { var %d = $deltok(%n,$findtok(%n,$nick,1,32),32) }
else { var %d = %n }
if (!%d) { return }
msg # $nick has entered $chan and been seen before with the nickname $+ $iif($numtok(%d,32) > 1,s:,:) %d
;this is the original line but changed it with the one above to be larger font with color
; echo $colour(info) -ti2 $chan $nick has also used the nickname $+ $iif($numtok(%d,32) > 1,s:,:) %d
if (!$istok(%n,$nick,32)) {
hadd trackusers $address($nick,2) %n $nick
}
}
else {
hadd trackusers $address($nick,2) $nick
}
}

to

on :JOIN:#: {
if ($hget(trackusers,$address($nick,2))) {
var %n = $ifmatch
if ($istok(%n,$nick,32)) { var %d = $deltok(%n,$findtok(%n,$nick,1,32),32) }
else { var %d = %n }
if (!%d) { return }
echo -t # $nick has entered $chan and been seen before with the nickname $+ $iif($numtok(%d,32) > 1,s:,:) %d
;this is the original line but changed it with the one above to be larger font with color
; echo $colour(info) -ti2 $chan $nick has also used the nickname $+ $iif($numtok(%d,32) > 1,s:,:) %d
if (!$istok(%n,$nick,32)) {
hadd trackusers $address($nick,2) %n $nick
}
}
else {
hadd trackusers $address($nick,2) $nick
}
}

looking through the code you provided the fix was allready there but was excluded?
;this is the original line but changed it with the one above to be larger font with color
; echo $colour(info) -ti2 $chan $nick has also used the nickname $+ $iif($numtok(%d,32) > 1,s:,:) %d
this would have it echo to the correct chan and not your active window...

ovelayer commented on a Page, WESTOR Module Manager  -  Nov 06, 2017

with the update to 4.3 it does not show any modules in the list...when i manually download and install them they do not show up in the manager and they do not work..i have the script loaded from the mirc/scripts/wmm its is running on windows xp

ovelayer commented on a Comment, A simple IP to Country  -  Nov 04, 2017
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.