@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8



Comments:

<0> good morning everybody
<1> xe3: please paste the "on input" event that you have now?
<2> on *:INPUT:#: { if (($left($1,1) != /) && (!$ctrlenter)) { .msg $chan $replace($1-,$chr(9),$str($chr(32),5)) | echo $color(own) -tmi2 $chan < $+ $me $+ > $replace($1-,$chr(9),$str($chr(32) $+ $chr(15),5)) | halt } }
<1> *nod*
<2> that's what I gave him
<1> looks good to me, although just /msg instead of /.msg+/echo would do
<3> <2> on *:INPUT:#: { if (($left($1,1) != /) && (!$ctrlenter)) { .msg $chan $replace($1-,$chr(9),$str($chr(32),5)) | echo $color(own) -tmi2 $chan < $+ $me $+ > $replace($1-,$chr(9),$str($chr(32) $+ $chr(15),5)) | halt } }
<3> works better
<2> and what's the difference?
<3> first varient - i see localy ONE space, but nothing received out side
<3> second varient - i see localy FIVE space, and message received out side
<3> first variant was not wokring even )
<3> now i see my INPUT messages with tab -> 5 space, remote messages with tab -> 1 space
<3> now i need to modify on TEXT, instead of '(SPACE) * 5' need '(CTRL+K CTRL+K SPACE) * 5'
<3> this code $str($chr(32),5)



<3> CTRLK+K ascii symbol is #03
<1> use $str($chr(32) $+ $chr(15),5) instead
<2> $replace($1-,$chr(9),$str($chr(32) $+ $chr(15),5))
<2> yeah, same as in the on input event
<1> *grin* that wasnt the right shade of gray
<4> what does 15 do
<4> oh, clearall ok
<4> ^O
<4> $replace($1-,$chr(9),$str($chr(32) $+ $chr(2),6))
<4> won't affect your formatting
<1> uh, yes it will
<1> if you use fixed-width font then that will mess it up
<4> But it will preserve any existing formatting
<1> as bold spaces are usually wider than non-bold spaces
<1> then use $replace($1-,$chr(9),$str($chr(32) $+ $chr(2) $+ $chr(2),6))
<4> aren't bold fixed width chars supposed to be the same width as plain fixed width chars?
<4> by definition?
<1> no
<4> double the control chars there
<4> hm
<4> who cares about that tho
<4> :P
<4> important thing is, if you have a prevailing bold or colour code at the start of the line, the tabspace won't clear it
<4> and i'd still rather use 12 chars for a tabspace than 18
<1> i'd rather not use tricks at all
<4> me too
<4> who needs <TAB> in text chat :D
<1> well that too, but i meant i'd prefer being able to use $str($chr(32),5)
<4> unfortunately the scripting language is composed ontop of tokenizers
<4> just as the protocol is
<1> it's not that bad
<1> it would be very much fixable
<5> hey, i cant find in the options dialog where i can set the dcc ports...... is that option gone ?
<1> well fixable.. workaroundable (ugh)
<6> alt+o > connect > options [advenced]
<6> or advanced
<5> thanks
<7> what happened?
<7> hello?
<8> hello
<7> hi
<7> hello?
<7> RUESSELMA
<8> hello
<1> Andy11: hi! You are on #mIRC here, which is a HELP channel, NOT a CHAT channel. If you want to chat with people, please try another channel, such as: #chat #worldchat #chatzone - just double-click on those #-words to go there! :)
<7> hELLO
<8> sorry
<1> that went unusually well.
<9> is it possible to get a string pos within a string? $matchtok will get me the token but I want the position...
<9> and $findtok will only take a chartoken and not a string, right?
<1> $pos can do that
<9> aha nice thx
<10> halo
<11> hiya, how can i geet auto-rejoin on a chan?
<11> damn *set
<6> alt+o > irc
<11> got it thanks
<12> mlk
<13> hay
<14> hi all
<15> ecuse me but can some1 tell me how i can get the mirc 4 files sharing?



<16> hey, is there anywhere on the net offering any free maya motion libraries or motion capture (just for stuff like walking) that can be used straiught into maya
<17> poser by curious labs can export its default sets to bvh and other formats
<17> try #maya though. this channel is for mIRC
<16> lol oops, wrong room :)
<17> the game secondlife lets you upload bvh animations that you create in poser. I have ripped all the poser default sets that way :P
<16> how do u create movement in poser? i have a character which i have in poser. how do i add a default animation set to it and then export it?
<17> let me open poser and we'll take this to privmsg
<18> hey
<18> heyyy????
<18> girls???
<17> klupolo89: try #chat
<16> hey root66, u still there? my comp decided to restart itself :s
<4> ..
<19> hey i'd just like to know, where would i be able to get a simple script that shows if a server is online or offline on the web? like u type !Status then it says if the server is online/offline?
<20> pisite be budali
<21> As in !status irc.servercentral.net?
<21> and it'll return online or offline
<21> ?
<19> yeah something like that?
<4> well you'd have to connect to it and see what happened
<19> yeah i know, using sockets, but doesnt anyone have a simple ready made one i could modify to my needs?
<22> @fid vietcong 2
<22> @find vietcong 2
<22> @find l'era glaciale 2
<23> is there a such thing as an array in mirc?
<17> nanotech: hash tables
<17> they work similarly
<17> /help hash tables
<23> thanx root66 : )
<23> exactly what i was lookin for
<24> what does putting a ! in an identifier mean?
<24> eg $!me
<23> RPG_Gamer that it is the oppostite
<24> what do you mean
<23> it would be !$me == not me
<23> while $me == me
<23> %exmaple = lets take over the world
<23> %exmaple2 = world
<23> if (%example2 isin %example) echo its in there
<23> woul echo its in there
<23> while
<23> if (%example2 !isin %example) echo its in there
<23> would not
<23> i tried, heh ; )
<24> I know what the ! does when you put it in front of an operator
<24> i mean identifiers
<23> does the same thing.
<25> o_O
<24> //echo -a !$iif(1 = 1,true,false)
<24> doest work
<25> eh, $!me isn't the same thing as !$me
<2> $!me would return $me
<25> Yep.
<25> Where as $me would return your nickname.
<23> uh RPG_Gamer
<23> im not familiar with the format your trying to phrase that if in
<23> i dont know if your just wrong, or its eomthing i havnt used
<23> lol
<25> It'd be $iif(1 != 1, true, fasle)
<25> Not !$iiif
<25> -i
<24> is there any way of finding out which user modes on channels a server uses if the server doesnt say when you connect without setting the modes?
<24> or using $prefix
<26> cara de e..................cu
<27> RPG_Gamer if it doesnt tell you how are you supposed to know?
<27> you could always do a help modes
<27> i mean /raw help umode
<27> or /raw help cmode
<25> caller id mode?
<25> "caller id" mode only allow accept clients to message you
<25> Can someone translate that to english?
<27> what?
<27> +g is server side ignore


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #mirc
or
Go to some related logs:

torontodymes
harmonica-gun
#unixhelp
two commands xchat
#politics
#sex
#nhl
#nhl
wmp indeo 3.2
#politics



Home  |  disclaimer  |  contact  |  submit quotes