home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Online
/
StrICQ
/
Src
/
rexx
/
ICQWeed.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2000-01-24
|
436b
|
26 lines
/*
ICQWeed.rexx - Weeds out old contacts:
Wed Dec 31 15:00:00 1969
*/
baddate = 'Wed Dec 31 15:00:00 1969'
options results
address STRICQ.1
getcontact total 'var=tot_users'
do i = tot_users - 1 to 0 by -1
getcontact 'entry='i 'var=user'
if user.last_online = baddate & user.message_to = baddate & user.message_from = baddate then do
say '('user.nick') Deleted...'
deleteuin 'uin='user.uin
end
end
exit(0)