| |
| |
| |
|
Page: 1 2 3 4 5 6
Comments:
<0> what about /? <0> at the beginning? <1> the / /'s indicate where the matching starts and ends <0> ic <1> /regex/flags does a match on 'regex' (here: \bbamba$) while considering 'flags' (here: i) <0> interesting <0> i think i started reading about it in help but it seemed vague <1> the mirc helpfile doesn't explain regex itself, for a good tutorial see www.regular-expressions.info <0> maybe that's why it seemed vague haha <1> heh <0> i guess i was thinking about the identifier $regex <2> slm <3> can u say god programs on mirc like to steal a nick or something I am from lithuainia? <4> hi <1> "steal" is not compatible with "good", sorry <5> nicknames are not owned on EFnet
<3> but in lithuainia there is one guy who did that for me and I whaand to give my nick back <3> can u? <6> /quit maybe? <3> :D <6> if what you're asking is what I think you're asking, that should solve the problem... <3> what is solve? <6> http://dictionary.reference.com/search?q=solve <3> how I can fint the solve? <6> hmmm... Is there a way to mark all open channels as 'read' (changing the icon text back to black instead of blue/red for 'something happened'/'someone talked') rather than clicking on each one?? <1> you can use /window -g0 #chan for an individual window, you could make a loop to do that on all channels <5> I like holding down ctrl-tab <6> that only works on windows that are in a windowed state, not minimized ones ;) <6> you know how many channels i'm on, stop playing with me ;) <5> aww :) <7> hi <8> ctrl-tab also doesn't work for desktop windows ;) <7> i had a problem... could anyone help me? <9> You had one? But no longer? :D <9> (just ask ;) <7> have xD <7> im coding an addond to transfer pics between mirc users <7> with sockets... <6> is DCC broken? <7> who recieves listen... and who sends open <7> no... but its a solution for my girlfriend, who dont understand anything of computers.... i want to code something that she select the files, press enter, and its done <7> my problem is here: <6> just make it use dcc in the background, don't go through coding your own socket connections and such <7> when i send the file... the send queue full <7> and if i check if ($sock($sockname).sq < 10000) { sockwrite ........... <7> mirc freezes <6> in options, there is a maxsends option <1> roni: freeze as in total hang, or can you unfreeze it with ctrl+break ? <7> i can unfreeze <1> ok, so your script is stuck in a loop <7> yes [Sais] <7> [sat] sorry <7> [sat] its a while... <1> you can't repeatedly try sending to a socket that way <7> while the file 's not completly sended, it continue sending (it sends bvars of 4096 bytes) <1> send as much as you can, then wait until the "on sockwrite" event triggers, then send more <7> [sat] i have done this: <1> can you please turn off that red stuff? <7> on 1:sockwrite:sock: set %can_send 1 <6> you need to learn how sockets work, you need to do some sort of error checking, you need to check the status of the socket beforre doing anything to it.... <1> well, events won't trigger if mirc is still running another script <7> if (%can_send) { sockwrite ........ } <6> i gotta get going, cya all <1> so %can_send will never be set to 1 if theres another script that's constantly checking it <7> ooh... <7> mmm so how can i do it...? let me think <1> basically, there is always at most one script running at a time <1> you have to do the further /sockwrite'ing from the "on sockwrite" event <7> yes... let me see <10> How do I use my webcam with mIRC? <1> Cpt_Kirk: mirc does not support webcams out-of-the-box, you'd have to download and install some add-on that adds webcam support, first <10> oh, ok <10> mIRC Power Pack 7.10 RC5? <3> o <3> no <11> don't count on help with scripts you didn't write here <1> there's only one webcam add-on for mirc that i'm aware of, and that's Bytecam. that "mirc power pack" apparently includes Bytecam..
<10> is bytecam what i need? <12> if you want webcam support, yes. <12> Like sat, I have never heard of another addon that adds such functionality. <4> Hei, ima li niakoi tuk? <12> Lolly, please speak English <4> OK:) <4> What are you talking about? <12> Lolly, do you need help with mIRC? :) <4> Yes <12> Okey doke, please ask your question <4> I'm leaving... <12> ok <7> sat do you know how much of bytes could be sended in sockwrite ? <7> because i send packets of 4096 (a full binvar) but im not recieving all the data :S <7> im losing data somewhere <1> the send queue can hold up to 16384 bytes <7> ok <13> good morning argv <14> yo <7> im recieving 3539 bytes of 98831 :S <1> then you're still sending too much at once <14> i really need this tshirt: http://www.threadless.com/product/401/If_I_Had_A_Tornado_Body <1> actually, there may be something else going wrong because that's not even nearly enough <7> im waiting for the sockwrite event <15> I just booted MPP <15> Hmmm <7> the sockwrite command is IN the sockwrite event .... <15> This is a pretty powerful MIRC addon <15> What is the webcam feature of MPP called? <5> "Bytecam" <15> Hmmm <14> :( <11> you guys are sad, so sad :P <14> YAY <14> youre just jealous sas <14> cause ment isnt your valentine <11> whatever <11> I don't do valentine <7> sat $sock(send).sq = 0 .... $sock(send).sent = 98831 ... $sock(send).rcvd = 3539 ... $sock(send).rq = 0 ...... :S:S:S <14> thats another reason you're jealous <7> sorry <15> Aha <7> sat $sock(send).sq = 0 .... $sock(send).sent = 98831 ... $sock(recieve).rcvd = 3539 ... $sock(recieve).rq = 0 ...... :S:S:S <11> :) <15> Hmmm <15> You know MPP is quite a nice addon <7> im losing bytes and i dont know where :S <1> from which event do you echo the $sock().rcvd bit? <1> on sockclose? <16> Hola k tal? <7> no... the sock is still opened... i //echo from status <1> so perhaps you're still to receive the rest <1> oh, from status <1> hm <1> strange! <7> yes :S <1> there's probably something else wrong then <7> perhaps im not sockreading all the packets <1> that could be <7> let me see <7> im sockmarking the sock to know if its recieving a file or waiting the recieve... im going to rename it <17> Is there a way to conver a hexadecimal base into the actual numerical digits? Such as hex FF = 255 <17> convert& <1> into decimal base you mean ;) <1> and yeah, with $base, see /help $base <17> Oh, thanks. <18> holas <19> anyone hapen to have a self coded switchbar that i can grab every single one i look for on the net is either using a drop down or its a tree view <19> or if u noe how u can edit teh coloour of a specific channel on the normal switchbar can u let me know plz <9> You can only have three colours - highlight, message and normal. You can set a channel's toolbar colour with /window -gN <win> <19> test <19> hm damn <19> u happen to know where i can dl a switchbar? <19> cuz all the oneso n mircscripts.org seem to be dialogd or tabbed
Return to
#mirc or Go to some related
logs:
#computers stevedtrm -stumbleupon #qmail #heroin tvrage mirc
#politics #unixhelp winxp thinks my cds are blank ultrium 215 fedora #windows
|
|