Lucyfero

Lucyfero

Joined
Jan 12, 2014
Occupation
Network Architect
Location
Pescara
Interests
Computers, Girls, Books

Activity Stream

Lucyfero commented on a Page, mIRC Korona - 14.8 version SOON!  -  Jul 14, 2017

AVAST consider the program a malware. Better to pack the script in a zip archive.

Lucyfero commented on a Page, Need help with a Define and Explain script  -  May 05, 2015

Hi, just 2 issues:
first use alias so that you can check the script; second you should consider an anti-flood mechanism otherwise you will get kicked.
This code works: (to check it use: !define love nature's way of tricking people into reproducing. )

on *:INPUT:#: {
if ($1 == !define) { define $me $2- | haltdef }
elseif ($1 == !explain) { explain $2 | haltdef }
}

on 1:TEXT:!define :#: define $nick $2-
on 1:TEXT:!explain
:#: explain $2

alias -l define {
if (%noflood) { halt }
; Silently exits
set -u10 %noflood $true
.writeini Worddata.ini Define-Explain $2- ::: Last Modified by $1 @ $date - $time
msg $chan The Definition Of ( $2 ) Has Been Set by $1 $+ .
}

alias -l explain {
if (%noflood) { halt }
; Silently exits
set -u10 %noflood $true
if ($readini(Worddata.ini,Define-Explain,$1) == $null) {
msg $chan $1 --->> Undefined.
}
else {
msg $chan $1 --->> $readini(Worddata.ini,Define-Explain,$1)
}
}

Lucyfero created a Page  -  Jan 20, 2015
338 

Little script that allows to capture all dialogues among a selected number of users. Use: to add a new member select a user in the 'user list' then either use the right mouse key menu or press the F8 key. To delete a user from the list, select the user in the 'user list' then press CF8. The selected users will have their nick yellow colored. To stop capturing dialogues use the right mouse key menu.

  1 Thread   mIRC  
Lucyfero commented on a Page, AKA Nick Tracker  -  Aug 29, 2014

Wonderful script. Just a typo (I think): in clear and cleanup should be hdel instead of hadd.
I also added an alias to display all the users in a room at once:

alias akaall {
var %max = $nick(#,0)
var %c = 1
while (%c <= %max) {
var %nick = $nick(#,%c)
if ($gettok($hget(NickNames,$+($network,$address(%nick,2))),0,126) > 1) {
NickNames.display %nick $active $network $address(%nick,2)
}
inc %c 1
}
}

Thanks a lot Ford, you are a very good scripter.

 Respond  
Lucyfero commented on a Page, My theme (WIP)  -  Jul 11, 2014

Why do you claim this is your work ?
Have a look at http://hawkee.com/snippet/8438/

Lucyfero commented on a Page, mIRC nicklist  -  Jun 22, 2014

Perhaps you missed a beginning line saying:
menu * {

 Respond  
Lucyfero created a Page  -  Apr 25, 2014
642 

Some users take a nick that is similar to an existing one and try to cheat the others. This script will track their actions.

  1 Thread   mIRC  
Lucyfero commented on a Page, Another IP tracker  -  Jan 16, 2014

A note on geolocation.
The user's geolocation is derived from public database of ISPs, so actually it is the geolocation of user's ISP.
For those who might be interested, the error is very high and is related to the precision of Lat/Long numbers
(i.e.: how many decimal digit you have after the dot) according to the following table

dec. degrees distance
0 1 111 km
1 0.1 11.1 km
2 0.01 1.11 km
3 0.001 111 m
4 0.0001 11.1 m
5 0.00001 1.11 m
6 0.000001 0.111 m
7 0.0000001 1.11 cm
8 0.00000001 1.11 mm

Regards

Lucyfero

 Respond  
Lucyfero created a Page  -  Jan 12, 2014

IP Tracker Script by Sky Walker A.K.A. Lucyfero Checks users IP @ http://clientn.free-hideip.com/map/whatismyip.php based on DNS query and POST method The original IDEA was @ http://www.hawkee.com/snippet/9927/. THANKS Kaj

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.