mIRC Home    About    Download    Register    News    Help

Print Thread
#149359 17/05/06 05:50 PM
Joined: May 2006
Posts: 6
J
JustasM Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
J
Joined: May 2006
Posts: 6
Just post this code to your alias section.

Some servers restrict number of queries at fixed interval, so use <delay> parameter.
If windows appear but don't close try to check Options->diplay->options->windows->[query] and [open windows on top by defaults]
if there are better mass query script(for example without opening windows, or any questions please post it here or mail to: JustasM@tut.by

This is a help forum, not a place to host scripts. For that, feel free to submit your snippets to www.mirc.net / www.mircscripts.org / www.hawkee.com / etc and let them evaluate it.

Last edited by Mentality; 18/05/06 05:07 AM.
#149360 17/05/06 06:24 PM
Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
Quote:
Just post this code to your alias section.
Use: /mass <#channel> <delay> <message>
e.g. /mass #loriendota 50 go dota! or e.g. /mass #lorien 50 have anybody copy of da vinchy code film?
[JustasM@tut.by


lame spammer?

illegal file sharing?

who was that masked xxxx?

#149361 17/05/06 06:42 PM
Joined: Apr 2005
Posts: 1,009
Hoopy frood
Offline
Hoopy frood
Joined: Apr 2005
Posts: 1,009
and in another post he requests new feature to mirc ignores person on certain words...

so why this post then :P ?


IceCapped
#149362 17/05/06 06:46 PM
Joined: May 2005
Posts: 449
Fjord artisan
Offline
Fjord artisan
Joined: May 2005
Posts: 449
Code:
/mass # 50 Kick me!

grin

Not that I'm an expert either, but that seemed like it used a poorly written loop too.

#149363 17/05/06 06:52 PM
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
Umm, just use the channel. Pming everyone makes no sense when you can just use the channel.

#149364 17/05/06 06:58 PM
Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
my guess is they only join long enough to get the names list
run that with a lame virus bearing website for the message, and leave

#149365 17/05/06 07:03 PM
Joined: May 2006
Posts: 6
J
JustasM Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
J
Joined: May 2006
Posts: 6
Quote:
and in another post he requests new feature to mirc ignores person on certain words...

In my homeLAN Lorien we use irc to communicate, but all use Visual IRC(except me ^_^). This client has default option to auto away on 20 min idle. And when at channel there are ~100 users I'm dazzled with message like this:
Code:
[21:42:47] * MONAX in mode "i'm away"  [reason: auto-away after 30 minutes of being idle] since 09:16:51 PM

So it's prefferable to add feature to ignore message containing specific words
Quote:
Not that I'm an expert either, but that seemed like it used a poorly written loop too.
Propose richly loop plz.
In many LAN chats(SEchat, Fchat, ichat, VyChat) there is possibility to send message(alert) to all users and it is considered as common feature(not spam and etc.). So I simple deside to add it to mirc.

Last edited by JustasM; 17/05/06 07:19 PM.
#149366 17/05/06 07:33 PM
Joined: May 2005
Posts: 449
Fjord artisan
Offline
Fjord artisan
Joined: May 2005
Posts: 449
Code:
var %x = 1
while (%x &lt;= ($nick($$1,0)) {
do your stuff here with $nick($$1,%x)
inc %x
}

#149367 17/05/06 07:41 PM
Joined: May 2006
Posts: 6
J
JustasM Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
J
Joined: May 2006
Posts: 6
Quote:
illegal file sharing?

ROFL! What is legal file sharing? People, ask Mikechat to legalize your file sharing before send photo or video of your pet to friend! Also get license for such activity at microsoft.com! Sorry for offtoping.

#149368 17/05/06 07:54 PM
Joined: May 2005
Posts: 449
Fjord artisan
Offline
Fjord artisan
Joined: May 2005
Posts: 449
Quote:

e.g. /mass #loriendota 50 go dota! or e.g. /mass #lorien 50 have anybody copy of da vinchy code film?

I think you can figure out what illegal file sharing is. I also don't think you're interested in sharing pictures of your pets, and I don't think I'll post anymore on this thread.

#149369 17/05/06 11:07 PM
Joined: Sep 2003
Posts: 4,230
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Sep 2003
Posts: 4,230
Honestly your script is CRAP in so many ways it is just no funny, this doesnt even include the fact that the scripts purpose is LAME and does not make u look l33t

running by execution
(alias MASS)
1. you dont need / at the front of any of it
2. you create a local copy of %i (destroyed on alias MASS ending)
3. you named a timer "0" when that is a reserved value
4. you need only $$ on $$3- since this well enforce $1 and $2 to exist
(alias A)
5. you now attempt to access %i, its contents are initially unspecified (see 2 and 8)
6. you repeatedly use $$ when the script would halt apon the first instance
7. you use query them close the query rather than just using ***** [edited this out since im not telling him it]
8. only now does a global %i be brought into existence if it didnt already exist
9. becuase of all your bad coding with %i your having to call a fixup alias
(alias HALT0)
10. your whole while loop is a pointless and potentually unending loop, you should have just used set %i to 1

Quote:
If there are better mass query script(for example without opening windows, or any questions please post it here or mail to: JustasM@tut.by


yeah right!


Link Copied to Clipboard