Session Start: Tue Aug 05 00:00:00 2008
Session Ident: #mirc
[01:02] <N0S> hi all... about registration... is it lifetime if I pay $20 ?
[01:02] <N0S> if not. how long ?
[01:02] <etotheipi> http://www.mirc.com/register.html
[01:02] <etotheipi> "Your one time registration will work with current and future versions of
[01:10] <N0S> thx
[01:10] <N0S> I think im a bit tired
[01:18] <Slatka_Cu> cao svima jasam AIDA STAJEVO
[01:38] <onizuka> is there any way to get window name ?
[01:38] <Boryambo> Spy++ ?)
[01:43] <onizuka> wtf ??
[02:16] <Bekar> onizuka: $window() not enough for you?
[02:21] <Boryambo> does anyone have a plugin to send/recv files via mirc (not DCC)?
[02:23] <onizuka> $window would get the window name ?
[02:24] <Boryambo> $window(N/@name)
[02:24] <Boryambo> Returns properties for a window.
[02:25] <onizuka> yes but what if i currently have an active window
[02:25] <onizuka> and want to get its name
[02:25] <Boryambo> $activewid
[02:25] <Boryambo> :)
[02:26] <Boryambo> or $active
[02:27] <onizuka> so $window($activewid) should return the properties, but it does nothing
[02:27] <onizuka> $active does the job. tnx
[02:28] <Boryambo> you are welcome
[02:28] <Boryambo> ;)
[03:55] <deanc> Is there a limit to what the value of an ini entry can be
[03:55] <deanc> In length
[03:56] <deanc> The only thing I can find about size in the manual is: If the -n switch is sp
[03:56] <Boryambo> deanc: see GetPrivateProfileString limits
[03:56] <Boryambo> and WritePrivateProfileString
[03:56] <deanc> :o
[03:57] <deanc> I hav ea value which is 898 chars
[03:58] <deanc> and it appears i cannot append to it
[04:01] <deanc> ah i see an error now: /writeini: line too long
[04:02] <Boryambo> why not to use notepad?)
[04:03] <deanc> Because i have a gui to add values to my ini
[04:03] <deanc> to make it simple to edit the values
[04:03] <Boryambo> hm..
[04:05] <Boryambo> and what happen if values is less then 898 chars?
[04:05] <deanc> it appears to work
[04:05] <deanc> i can manually edit in notepad, and it will read it fine
[04:05] <Boryambo> hm..
[04:05] <Boryambo> )
[04:05] <deanc> but soon as i write longer than around 898 chars, it fails
[04:06] <Boryambo> why not -n? or it fails too?
[04:07] <deanc> The file is no way near 64kb
[04:07] <Boryambo> yes, but who knows.. )
[04:08] <deanc> same problem
[04:09] <Boryambo> mIRC 6.33?
[04:10] <deanc> yes
[04:11] <Boryambo> hm.. what is the last char in value? maybe replace them..
[04:12] <Boryambo> (sorry, english is not my native language:)
[04:12] <deanc> the last char can be any ascii char
[04:12] <deanc> normally a letter or number though
[04:14] <Boryambo> nor less nor larger than 898? or larger too?
[04:14] <deanc> basicaly the current length of my string is 898
[04:14] <deanc> when i try and add the string "moo" to it, it fails
[04:15] <deanc> so im guessing the limit is around 900 chars
[04:15] <Boryambo> 900..
[04:15] <Boryambo> hm..
[04:17] <Boryambo> maybe only 900 chars for every command?
[04:17] <Boryambo> hah, thats more then 900
[04:18] <deanc> Well I need to do it. There has to be a way around it
[04:18] <Boryambo> external DLL?
[04:18] <deanc> urgh lol
[04:19] <deanc> without using a new dll :>
[04:19] <Boryambo> )
[04:22] <Boryambo> what if use /write instead of /writeini?
[04:22] <Boryambo> -s section
[04:22] <deanc> Because the section might not always be on that line
[04:22] <deanc> the ini might have other sections added above it
[04:23] <deanc> which will mean i'll eventually end up writing the wrong line
[04:23] <deanc> and i have the same key names under different sections
[04:24] <Boryambo> bpx WritePrivateProfileStringA
[04:24] <Boryambo> )
[04:24] <deanc> in english please :>
[04:24] <Boryambo> give me part of your code, please
[04:27] <deanc> writeini -n inifile.ini Section Key long ass value $+ ; moo
[04:27] <deanc> change "long ass value" with something around 900 chars
[04:27] <Boryambo> ok
[04:29] <deanc> ignore the ;
[04:29] <deanc> dont know where that came from
[04:29] <Boryambo> i see)
[04:30] <Boryambo> $+
[04:30] <Boryambo> var?
[04:31] <Boryambo> $+moo
[04:34] <deanc> $+ means append
[04:34] <deanc> to the string
[04:34] <Boryambo> deanc: hm.. seems like it works
[04:34] <deanc> :/
[04:34] <Boryambo> i have see file 988 bytes len
[04:34] <deanc> let me write you a test case
[04:35] <Boryambo> on *:start: {
[04:35] <Boryambo> writeini -n inifile.ini Section Key 900 z
[04:35] <Boryambo> }
[04:35] <deanc> lol, that is not 900cahracters
[04:35] <Boryambo> yes
[04:35] <Boryambo> 1 959 áàéò
[04:36] <Boryambo> 1959 bytes
[04:36] <Boryambo> no problems
[04:36] <deanc> okay i replicated it
[04:37] <deanc> http://pastebin.com/m767e58f3
[04:37] <deanc> create that as inifile.ini
[04:37] <deanc> //writeini -n inifile.ini $readini(inifile.ini, Section, Key) $+ moo
[04:37] <deanc> then type that
[04:37] <deanc> you will see the error message
[04:37] <Boryambo> wait awhile
[04:38] <Boryambo> heh
[04:38] <Boryambo> i have 3 947 byte long file
[04:39] <deanc> yes, but that is what i am dealing with
[04:39] <deanc> a value that long
[04:39] <deanc> so you get the error message now too yes?
[04:39] <Boryambo> no
[04:40] <deanc> wtf lol
[04:40] <deanc> * Line too long: $+
[04:40] <deanc> i get it
[04:40] <deanc> Btw, I am using 6.31, not 6.33
[04:40] <deanc> I was wrong
[04:43] <Kollektiv> 6.32 increased the command length limit to ~4096
[04:44] <Boryambo> hm..
[04:44] <Boryambo> seems like true)
[04:45] <deanc> So that is the problem?
[04:45] <deanc> I have been running a little version of mIRC that runs off usb stick for a wh
[04:45] <deanc> I think I even patched the exe =(
[04:45] <Boryambo> i think problem in other place
[04:49] <Boryambo> deanc: maybe wrong sintax somewhere in the script?
[04:50] <deanc> nope heh
[04:50] <deanc> it must be the command length limit like Kollektiv suggested
[04:50] <deanc> guess i'll have to install a new copy of mirc and see if copying over the mir
[04:50] <dHianH> hy...
[05:38] <ANG3L> hi guys anyone knows how can i copy ascii art from a website and post it in i
[05:38] <ANG3L> coz everytime i paste one it gets messed up because mirc strips leading space
[05:39] <Kollektiv> That suggests you're running a script
[05:40] <ANG3L> yes i have nnScript
[05:40] <Kollektiv> You'd have to turn it off
[05:46] <ANG3L_1> sorry my connection droped how can i turn it off Kollektiv?
[05:48] <slakker> ANG3L_1: refer to nnscript's documentation (if any) for unloading
[05:48] <slakker> I'm assuming there's an uninstall option
[05:49] <ANG3L_1> k i'll check if there a way to unload it
[06:07] <ANG3L_1> cool it worked thanks guys
[06:07] <slakker> you're welcome
[06:21] * Mentalitt is now known as Mentality
[06:58] <deckard> What is working code?
[06:59] <Boryambo> ?
[07:00] <deckard> topic
[07:00] <Boryambo> :)
[07:01] <Boryambo> joke:)
[07:01] <deckard> What is a joke?
[07:01] <deckard> I'll take bad topics for 100 alex!
[07:03] <Era> hi
[07:04] <Boryambo> hi!
[07:05] <Era> someone keeps evading the ban.. but using: adsl-209-30-229-10.dsl.ksc2mo.swbell
[07:05] <Era> and dsl.hstntx.swbell.net
[07:05] <Era> how do i ban him?
[07:06] <Era> set a ban that will match this
[07:06] <Boryambo> maybe *.swbell.net :P
[07:06] <Kollektiv> ban America
[07:07] <Era> is there something better
[07:07] <Kollektiv> better than banning america? impossible
[07:07] <Era> cause this will ban everyone from swbell
[07:07] <Kollektiv> Does his ident stay the same?
[07:07] <Era> i mean the one Boryambo told me
[07:07] <Era> his ident is karen
[07:07] <Era> wait
[07:07] <Kollektiv> Then ban by ident
[07:07] <Era> EightiesG is ~Karen@adsl-209-30-229-10.dsl.ksc2mo.swbell.net * Karen
[07:07] <Boryambo> *!karen@*
[07:08] <Kollektiv> *!*karen@*
[07:08] <Boryambo> :)
[07:09] <Era> ty
[07:22] <Boryambo> who know - DCC is "Direct Client Connect" or "Direct Client to Client"? )
[07:23] <Kollektiv> Direct Client to Client
[07:23] <Boryambo> ok. thanks
[07:29] <Boryambo> Kollektiv: maybe you know... i need mirc-plugin, that allow send and recei
[07:29] <Boryambo> mmm... russian?
[07:31] <Kollektiv> Why do you need that?
[07:31] <Boryambo> Kollektiv: do you speek russian?
[07:32] <Kollektiv> no
[07:32] <tomalak> that bold is gonna get you in trouble
[07:32] <Boryambo> that is some LAN with own irc-server, i just connected from Internet and n
[07:33] <tomalak> why can't you DCC it
[07:33] <tomalak> with proper NAT config you should be fine
[07:33] <tomalak> certainly no other solution is going to magically get around network addres
[07:33] <Boryambo> tomalak: i'm not a network administrator
[07:34] <Boryambo> why?
[07:34] <Boryambo> just..
[07:34] <Boryambo> m..
[07:34] <qwerty-> which isn't even an issue if you're *sending*
[07:34] <tomalak> right
[07:34] <Boryambo> translate bytes to ascii
[07:34] <tomalak> Boryambo: explain again what you want to do what DCC can't accomplish?
[07:35] <tomalak> qwerty-: well it is if his local config is messed up :) but that's nothing
[07:35] <Boryambo> tomalak: i have no DCC support, because this is LAN
[07:35] <Boryambo> stop
[07:35] <tomalak> Boryambo: and you don't have access to your LAN router?
[07:35] <tomalak> sounds like you need /dccserver
[07:36] <Kollektiv> Try passive DCC
[07:36] <Boryambo> tomalak: yes, i havent
[07:36] <Kollektiv> /dcc passive on
[07:36] <tomalak> or rather, passive
[07:36] <tomalak> iuhdsfauyhdfa
[07:36] <tomalak> hey, is that new
[07:36] <qwerty-> relatively
[07:36] <Kollektiv> 6.21 or something
[07:36] <tomalak> nice
[07:36] <Boryambo> wait awhile, i'll try it
[07:36] <tomalak> 6.17, damn
[07:37] * tomalak needs to figure out how to get vsftpd to auto-open data transfer ports with iptab
[07:37] * tomalak can't use PASV with his vps ;(
[07:38] <Boryambo> nope
[07:39] <Boryambo> no other ways to do this?
[07:39] <tomalak> /dcc passive is your solution, so try harder :)
[07:40] <Boryambo> tomalak: it doesnt work
[07:40] <tomalak> the recipient needs to have his network configured properly too
[07:40] <qwerty-> when you send in passive mode, the receiver must make sure they can accept
[07:40] <tomalak> it does work, you just need to do it properly :)
[07:40] <Boryambo> )
[07:43] <Era> dcc passive only help when my dcc dont work and im trying to send only?
[07:43] <Era> it can help me to receive too?
[07:45] <Boryambo> just " incomplete (connection failed)"
[07:45] <Boryambo> wtf
[07:45] <Kollektiv> Type on both computers: /localinfo -u
[07:46] <Kollektiv> Type on the sending computer: /dcc passive on
[07:46] <Boryambo> Kollektiv: already
[07:47] <Boryambo> heh..
[07:47] <tomalak> era: normally when sending by DCC, the receiver actually has to connect to
[07:47] <tomalak> The passive option reverses this so instead when sending you actually open
[07:48] <tomalak> either way, someone's going to have to.
[07:48] <tomalak> DCC will not work between two people on different LANs who are behind NAT a
[07:48] <tomalak> (as far as I'm aware)
[07:50] <Boryambo> the only way is loop of privmsg with some bytes of file
[07:50] <Boryambo> )
[07:51] <Kollektiv> Have fun with that
[07:51] <Boryambo> )
[07:51] <sat> hi. in the rest of the world, faces have eyes
[07:52] <Boryambo> i just want to know is there any plugins working like that?
[07:53] <Boryambo> i dont want code it by myself:)
[07:54] <sat> that would take forever because of flood control
[07:54] <Boryambo> PRIVMSG?
[07:54] <sat> yes
[07:54] <Boryambo> in our irc i can past about 20 lines
[07:55] <tomalak> sat: haha
[07:55] <sat> 20 lines x ~400 bytes is 8kb
[07:55] <tomalak> Boryambo: what's wrong with email
[07:55] <Boryambo> why? ) maybee 200 bytes per line
[07:56] <Boryambo> tomalak: it's need internet!
[07:56] <tomalak> IRC needs internet too
[07:56] <Boryambo> nope
[07:56] <tomalak> well, it does if you're connecting from the internet
[07:56] <tomalak> like you said you are
[07:57] <tomalak> it is, after all, called "Internet Relay Chat"
[07:57] <Boryambo> it's LAN server
[07:57] <tomalak> but you're connecting to it from the internet
[07:57] <tomalak> why can't you email your friend whatever it is that you want to transfer
[07:58] <Boryambo> yes, but most users connecting from lan
[07:58] <tomalak> ok, so whoever runs the IRC server can pass it on
[07:58] <Boryambo> so i can mail, but not every one can receive
[07:58] <tomalak> hey
[07:58] <tomalak> home early?
[08:02] * Mentalitt is now known as Mentality
[08:09] <i0ngunn3r> hello
[08:10] <i0ngunn3r> how to prevent launch of 2nd instance of mirc?
[08:10] <Boryambo> just /server -m
[08:10] <Boryambo> or /server -n
[08:10] <i0ngunn3r> erm, no
[08:10] <Raccoon> if you are clicking on the mIRC icon, there is no built-in measure to preve
[08:10] <Raccoon> you will have to script a solution.
[08:10] <Raccoon> there are solutions if you're interested in scripting them.
[08:10] <i0ngunn3r> Raccoon: ok, thanks :)
[08:11] <Raccoon> i can give advice on how to detect a running instance, and close a new inst
[08:11] <Raccoon> but it would be best to simply avoid executing a second instance
[08:12] <i0ngunn3r> I can't :) need to maximize 1st instance from tray when trying to open 2n
[08:12] <Raccoon> what is wrong with that?
[08:12] <Raccoon> simply utilizing the tray
[08:12] <i0ngunn3r> hm?
[08:12] <Raccoon> you said "you can't", explain in depth.
[08:13] <i0ngunn3r> I can't avoid executing a second instance :)
[08:13] <Raccoon> yes you can. explain why not.
[08:13] <i0ngunn3r> Because of 3rd party software that launches 2nd instance
[08:14] <i0ngunn3r> well then thanks
[08:14] <Raccoon> how is this third-party software designed to launch the second instance? w
[08:14] <i0ngunn3r> dunno
[08:14] <Raccoon> which software
[08:15] <i0ngunn3r> some kind of UI for workstations in our office
[08:15] <Raccoon> hmm
[08:16] <i0ngunn3r> but thanks again
[08:24] <tomalak> sounds bad
[08:24] <tomalak> even a scripted solution would be a relatively slow workaround
[08:24] <Raccoon> slow work-around?
[08:24] <tomalak> mIRC popping open then going again
[08:25] <tomalak> it might be possible to write a nice perl script to parse the process list
[08:25] <tomalak> if $mircexe not found, initiate it
[08:25] <Raccoon> the solution I had in mind was DDE, however there are issues such as how lo
[08:25] <tomalak> otherwise send a DDE message
[08:25] <Raccoon> also unregistered mIRC wouldn't work
[08:25] <tomalak> exactly
[08:25] <tomalak> those boxes would ruin the experience entirely
[08:26] <Raccoon> actually, an AutoHotkey script would be capable
[08:26] <tomalak> well I think the moment DDE support is discontinued, a "prevent multiple in
[08:26] <Raccoon> why do you say that?
[08:26] <tomalak> because DDE is currently near enough the only way to implement such a thing
[08:26] <tomalak> and it strikes me as a damn useful feature
[08:27] <tomalak> yes, I know, "don't execute it twice"
[08:27] <Raccoon> though I don't think DDE is going anywhere anytime soon. It takes little e
[08:27] <Raccoon> "the people who matter"
[08:27] <Raccoon> fortune 500 companies
[08:27] <tomalak> but that's like saying "omg my house got burgled" "shit don't live there th
[08:27] <tomalak> tbh I didn't realise DDE was still in use outside mIRC :P
[08:27] <Raccoon> oh certainly
[08:28] <tomalak> in like what then
[08:28] <Raccoon> it's an "easy" way for applications to communicate
[08:28] <Raccoon> opposed to determining PIDs and Window Handles to Send/PostMessage
[08:28] <tomalak> *shrug* thought apps were hooked on COM these days .. no pun intended
[08:28] <Raccoon> sadly still, Visual Basic is much entrenched in corporate life
[08:28] <tomalak> oh that's a good point
[08:29] <tomalak> and very true
[08:29] <Raccoon> and these corporate reporting and POS systems are still being maintained by
[08:29] <Raccoon> and have very little knowledge of how it actually works anymore
[08:29] <Raccoon> developers have long moved on
[08:29] <tomalak> if they ever did in the first place
[08:29] <Raccoon> even devleopers of the developing firms have long moved on
[08:30] <Raccoon> school systems are the worst
[08:30] <Raccoon> they still use MS dos
[08:30] <Raccoon> elementary school records and lunch line software
[08:30] <tomalak> well i don't know about *that*
[08:31] <tomalak> maybe where you are ;p
[08:31] <Raccoon> often some version of NT4 which looks like Win 3.1
[08:31] <Raccoon> or CE
[08:31] <Raccoon> i was surprised to see NT4 had all the same great DOS apps like QBASIC w/ G
[08:32] <Raccoon> never actually used it outside of hacking POS systems
[08:32] <Raccoon> eg, walmart employment application terminals
[08:32] <Raccoon> kiosks
[08:34] <Raccoon> btw, doesn't the mirc website have a registration lost/forgot application a
[08:35] <jackal^> http://www.mirc.com/reglost.html
[08:37] <tomalak> yah it's just hidden away
[08:37] <tomalak> the "new" nav isn't very comprehensive, imo
[08:38] <tomalak> the site's rather like the helpfile: tidbits of info linked to all over the
[08:38] <tomalak> it's really quite poor for such a well-known application :/
[08:39] <jackal^> yeah, at least it could have search engine :\
[08:39] <tomalak> why would it need a search engine?
[08:39] <Raccoon> i honestly don't believe there's a connected link to reglost.html anywhere
[08:39] <tomalak> it just needs structure
[08:39] <tomalak> Raccoon: I can't find one
[08:39] <Raccoon> it may be impossible to navigate to
[08:39] <sat> it does jackal^, on the Help page
[08:40] <jackal^> aah, thanks
[08:41] <tomalak> wow, I can't even find a link to it in the mIRC GUI
[08:41] <tomalak> so it may be /totally/ impossible to navigate to without foreknowledge of t
[08:43] <Raccoon> perhaps he doesn't wish to respond to them anyore
[08:44] <sat> perhaps theres a sticky on the forums about this
[08:46] <tomalak> can't see one at first glance
[08:46] <tomalak> there have been plenty of threads about it though
[08:46] <sat> glance again then
[08:47] <tomalak> how about you just URL me? :) it's hard to read on this table colours on 25
[08:48] <Raccoon> i'm too lazy, link me too :)
[08:48] <sat> cba, point is its there
[08:48] <tomalak> burder of proof is on you and I can't find it yet ;(
[08:48] <Raccoon> what's the essential thereness about it? that it is no longer supported or
[08:49] <tomalak> found it
[08:49] <Raccoon> perhaps too many spam bots were finding it and filling in arbitrary crap
[08:49] <tomalak> since the forum mods are posting it on a semi-regular basis it's not being
[08:49] <tomalak> not by them, at any rate
[08:50] <tomalak> that's possible but then why not have a link to it in the GUI and keep it o
[08:50] <Raccoon> irchelp.org's contact box is filled in by spam bots
[09:02] <spyderbug> Remember, winning on IRC is like winning at the Special Olympics.
[09:02] <spyderbug> - You may have won, but you're still retarded.
[09:02] <spyderbug> -
[09:02] <spyderbug> -
[09:02] <spyderbug> - Have a nice day!
[09:03] <sat> you lose
[09:17] <Boryambo> wft
[09:17] <Boryambo> wtf
[09:17] <Boryambo> )
[10:39] * Disconnected
[10:39] * Attempting to rejoin channel #mirc
[10:39] * Rejoined channel #mirc
[10:39] * Topic is 'mIRC 6.33 @ http://www.mirc.com - Pose questions in jeopardy form only: give us
[10:39] * Set by argv[0]!jinx@modemcable162.102-202-24.mc.videotron.ca on Thu Jul 31 17:02:59
[12:11] <BeGodlike> is there a way to launch mirc password protected ?
[12:11] <BeGodlike> via shortcut maybe or somethin
[12:11] <slakker> Options, Other, Lock
[12:12] <slakker> Ask for password on startup
[12:12] <BeGodlike> ok so that must then tell mirc to keep the pw stored then
[12:13] <BeGodlike> that should be it
[12:13] <BeGodlike> does that hault scripts though?
[12:13] <BeGodlike> like it waits for pw @ startup until it does anything
[12:14] <LO_KEY> yes, nothing runs until the password is entered and accepted.
[12:14] * slakker nods
[12:14] <BeGodlike> hmm
[12:14] <BeGodlike> maybe timing a lock after the initial startup crap is the way to go
[12:15] <BeGodlike> alias for locking ?
[12:15] <LO_KEY> why ? if they dont have access, then no need to run any startup thing... unl
[12:15] <LO_KEY> for sum rason.
[12:15] <BeGodlike> i'm trying to launch mirc locked but not halt scripts
[12:15] <LO_KEY> reason*
[12:15] <BeGodlike> i'd not be able to re-join channels automatically
[12:15] <LO_KEY> it doesnt halt them
[12:15] <LO_KEY> it just dont run them until the password is accepted
[12:15] <LO_KEY> so once u enter pass, all of your on start scripts run
[12:16] <BeGodlike> is there an alias to lock ?
[12:16] <qwerty-> you mean a command? no
[12:17] <LO_KEY> ud have to make one.
[12:17] <LO_KEY> and more than likely using com objects.
[12:17] <BeGodlike> fuq
[12:18] <sat> /showmirc -tl
[12:19] <qwerty-> oh right, lock
[12:19] <BeGodlike> ah that might do it
[12:20] <BeGodlike> so if i uncheck ask for pw on startup does that mean the pw isn't going t
[12:20] <qwerty-> it'll be stored
[12:21] <BeGodlike> it always ask me for a pw again when i lock after restarting mirc
[12:22] <BeGodlike> i'll brb
[12:23] <BeGodlike> yeah it didn't store the pw
[12:23] <qwerty-> it seems to be stored here
[12:23] <BeGodlike> i just restarted mirc went to lock and it asked for the pw again
[12:23] <BeGodlike> v6.21 here
[12:23] <qwerty-> have you set a password in Options > Other > Lock , [Lock]
[12:23] <BeGodlike> heh, no i haven't heh
[12:24] <BeGodlike> ok that i'm sure does it
[12:24] <BeGodlike> alrighty that's it
[12:24] <BeGodlike> thanks for the help
[12:24] <qwerty-> np
[12:29] * Mentalitt is now known as Mentality
[13:41] * LO_K3Y is now known as LO_KEY
[13:46] * rekkals is now known as slakker
[14:13] <sh{}ver> help someone is trying send me a avi file and it wont work on here!
[14:22] <dirtpoor> it’s prolly your firewall
[14:22] <sh{}ver> how can i fix
[14:22] <sh{}ver> it
[14:23] <dirtpoor> crud, sorry, but I don’t remember the url that’ll help you
[14:23] <dirtpoor> gotta wait for someone else to chime in
[14:24] <sh{}ver> im going crazy now
[14:24] <LO_KEY> do you get any notice in status about it ?
[14:24] <LO_KEY> file type ignored or sumpn
[14:24] <sh{}ver> yeah
[14:25] <LO_KEY> what does it say? file type ignored ?
[14:25] <dirtpoor> copy/paste
[14:25] <sh{}ver> yeah it says its not recc to accept this file
[14:25] <sh{}ver> ok hang on ill wait till he send again
[14:25] <LO_KEY> alt+o (-) Dcc -> Ignore
[14:25] <LO_KEY> disable it in there
[14:25] <dirtpoor> beenso long since I’ve had to worry about that I forgot all about it
[14:27] <sh{}ver> ignore wasnt clicked
[14:27] <dirtpoor> dang bloody noses =\
[14:27] <LO_KEY> it isnt a 'clik', its a drop down selection list
[14:28] <LO_KEY> i think it was in 6.21 to. (can't member)
[14:28] <dirtpoor> it was
[14:28] <dirtpoor> it’s been there for a few vers
[14:30] <sh{}ver> auto get file
[14:30] <sh{}ver> thats what it was hehe
[14:30] <sh{}ver> right
[14:32] <sh{}ver> i disabled it
[14:32] <sh{}ver> right
[15:17] * DiverGuy2 is now known as DiverGuy
[15:22] <scorpionu> vx
[15:25] <linkmaste> how do I run a script when someone does a ctcp FINGER on me? would on *:F
[15:26] <sat> ctcp *:FINGER:*:{
[15:26] <sat> see /help ctcp events for details
[15:26] <linkmaste> thank you
[15:26] <sat> np
[16:37] <linkmaste> to set variables do i use /set %var 0
[16:38] <linkmaste> to make %var == 0
[16:38] <Extremina> linkmaste yes
[16:39] <linkmaste> is there a way i can use wildcards in that? would /set %var* 0 make %vara
[16:40] <Extremina> if ( %varA == ) && ( %varB == 0 ) { command }
[16:40] <linkmaste> ok
[16:40] <linkmaste> ty
[16:44] <LO_KEY> the answer to his last question was no.
[16:50] <sat> well you CAN use $var
[16:50] <sat> if you really really wanted to
[16:51] <LO_KEY> ?
[16:53] <sat> ..and set all matching variables to 0 in a loop
[17:06] <L|M|TED> . /if: insufficient parameters ....is there a way to turn on debugging to f
[17:08] <sat> if it doesnt mention a file/line, then it's probably from a timer or so
[17:08] <L|M|TED> yah its a timer most likely
[17:10] <sat> theres no way to find out where it came from then, although it may help a lot o
[17:11] <L|M|TED> yah i think i might have found it, cat n mouse chase!
[17:12] <sat> :)
[17:24] <petramco> Where can I get a script that works like this: Someone queries me and writ
[17:24] <petramco> or to stop the chat, and ignore the person for some minuets
[17:25] <petramco> minutes*
[17:28] <rickcp> either chat or close the box
[17:28] <rickcp> or /ignore nick
[17:29] <petramco> answer my question or shut up please
[17:36] * [Spiderma is now away - afk - Left at 01:37:11
[17:37] <rickcp> turn that off in here
[18:59] <LOVESEX> hi
[19:03] <LOVESEX> camsexnow
[19:29] <jumbofish> I am
[19:29] <jumbofish> say/
[20:05] <jun> hii
[20:23] <safitri> haiii
[20:46] <x0x0x> Efnet OWNED? check x0x0x #2 zine - http://lasercomb.de/x0x0x2.txt - http://ra
[20:55] <Kemikals> what is the way to add a delay to sending commands in the preform on conne
[20:57] <LO_KEY> /timer
[20:57] <Kemikals> wow... lol i was hoping i could take that back before you answered it :( i
[20:57] <LO_KEY> no worries. we all ask stupid questions at one point or another
[20:58] <LO_KEY> an its not really a stupid question, sumone else may not have known how. ;0
[20:58] <LO_KEY> ;)
[20:58] <Kemikals> lol
[20:58] <Kemikals> but the likelyness of someone needing to know how at midnight :) slim
[20:58] <LO_KEY> lol
[22:39] <Boryambo> hi
[23:04] <jHoNDoE> gus
[23:04] <jHoNDoE> *y
[23:04] <jHoNDoE> passive dccs works only if the other dude has passive dccs already activate
[23:07] <Modoc> jHoNDoE For help setting up mIRC with your router try this url's http://portf
[23:08] <Modoc> jHoNDoE For help setting up mIRC with your router for DCC's try this url's ht
[23:10] <jHoNDoE> i know how to do that
[23:10] <jHoNDoE> im asking because it seems absurd
[23:10] <Modoc> oooooooo sorry missread
[23:43] * flake_ is now known as _flake
[23:49] * Hrung- is now known as Hrung
[23:50] <jHoNDoE> Modoc ??
[23:50] <jHoNDoE> did u see the query?
[23:51] <jHoNDoE> k u saw it
[23:58] * Modoc5000 is now known as Modoc
Session Close: Wed Aug 06 00:00:00 2008