raw 353
unfortunately, the connection has to drop the line with the subscriber/nonsubscriber tags in them before it passes the line to mIRC, cause mIRC won't recognize the line if it's in there. but it also means you can only pick up that info i...
Find discussions and posts across the Forum sections you are allowed to read.
Filter by Forum, author, date, content scope and sort order without exposing restricted discussions.
unfortunately, the connection has to drop the line with the subscriber/nonsubscriber tags in them before it passes the line to mIRC, cause mIRC won't recognize the line if it's in there. but it also means you can only pick up that info i...
actually its a problem with how it gets the topic, not the room. ive already fixed my copy, no more errors in the status window. and its a simple fix... the error in the status window will say something like... * String too long: $bv...
$did(dname,id).text only returns the 1st line in a multiline editbox, so try this... On *:Dialog:main:edit:152:{ unset %join var %lc = 1 while (%lc <= $did($dname,152).lines) { set %join %join $did($dname,152,%lc) inc %lc }...
you can use ClearMSN it is ridiculously simple to set up, grabs all the necessary cookies, lists all the groups you're a member of, and joins them all or creates the rooms if they're not already open. yes there is some extra stuff but...
if you're talking about the theme in 5.2, you can turn off the theme in 5.4 and make your own.. and get some scripting experience in the process. only reason i say that is because there are bugs in 5.2 that are fixed in 5.4d.
or, if internet exploder is not your default browser... /url -n <url> opens a new window.
dont blame me for that toolbar lol, i have tried a billion different things and the buttons always get cut off. as for the red and black, as u can see.. you can change that with the 'display settings' dialog
on *:TEXT:*:#:{ tokenize 32 $chr(32) $+ $strip($1-) $+ $chr(32) if ($+($chr(32),ahmed,$chr(32)) isin $1-) kick $chan $nick :oh no you said a bad wordy word. } o00o0oooORRRrr... if you want more words than just "ahmed" (which i assu...
oh. no.
on *:join:#:{ .notice $nick blahblahblah } should work .ctcp $nick time blahblahblah will only work if stealth mode is turned off
np
if you want it to read the profile aloud on join, use this... on *:join:#:{ rprofx $nick m $chan } but i don't recommend it. the profile reader will flood you out if too many people join at once.
mirc doesnt support utf8 at all, and you can't save utf8 as it is to text files at all. if you're trying to save the ascii-encoded version of utf8 that msn servers send (the unreadable gibberish stuff) then you have to first convert it t...
my mirc does the same thing. i have learned to deal with it. i dont think its a problem with the scripts, just mirc or a compatibility thing with the DLL maybe.
when you send the /PROP command, you're telling the server you want the PROPERTIES assigned to whatever you specify (channel or nickname)... on MSN, the PUID is the profile id property assigned to users. it has nothing to do with the M...
hooray, its my turn to ask for help.... okay.. mirc won't connect. it won't connect to any irc network. no socket i open will connect to any server, irc, html, ftp, pop3, smtp, anything. /socklist says the sockets are 'connecting' but...
the command to join is simply /join <room> as for the join a room dialog thing, i havent had any problems. make sure none of your other code is unsetting a variable called %njrm because that is how it works. as long as there is a variabl...
sp2 disabled the view-source command in ie's address bar. you have to actually go to the page, right-click, and click on 'view source' to get your cookies. personally i think its ridiculous to do that now anyway, with all the grabbers an...
on *:text:*:#:{ tokenize 32 $strip($1-) | if ($ini(<inifile>,$1)) msg $chan $readini(<inifile>,$1) } on *:action:*:#:{ tokenize 32 $strip($1-) | if ($ini(<inifile>,$1)) describe $chan $readini(<inifile>,$1) } then load the ini file with...
i really have no clue why this is. but i have looked for a long time at the code and maybe this will help... find this line in clearmsn54.mrc if (%gcp3) return and change it to if ($1 == USER) || (%gcp3) return
thats because you're sending CE and waiting to reply to CHRISTIANETHICS. also, you're putting an extra *: in the ctcp event, where it doesn't belong. do this: ctcp *:CE:{ .ctcpreply $nick CE Christian Ethics } also make sure stealth mo...
has to do with whether the user is here or away. H = user is here G = user is gone
#: Unknown Command is always the result of a bad event trigger, i.e. on *:QUIT:#: should be on *:QUIT: because there is no channel (#) associated with the QUIT event. go through your code and fix anything that fits that descripti...
its not crashing, its flooding out. and its not flooding out on join, its flooding out during the deowner protection. the protection i gave above sends 5 commands in a row: part, join, kick, access, and ownerkey. it doesn't flood me out....
the /pass command should function normally. if it doesnt, you can either find the following in one of hybrid's remote script files... alias pass { blah blah blah blah } and delete it. but i dont suggest messing with that unless you know...