Causing my scripts not to connect...
i like keeping users confused, cause it makes them less likely to figure out what a mediocre scripter i am
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.
i like keeping users confused, cause it makes them less likely to figure out what a mediocre scripter i am
been working on it for a couple days... note the ridiculous nicklist because i couldnt get mdx to show icons in treeview
you have forgotten the open bracket... on *:TEXT:@ut*:*:{ msg $chan (co) Computer Uptime: $uptime(system,1) | msg $chan (xx) Script Uptime : $uptime(mirc,1) } this should work as long as you don't use the "MSN Colors" option. if yo...
on *:text:@join*:#:{ set -u60 %joining $nick $chan msg $chan Now Joining $2 $+ , $nick join $2 } on *:join:#:{ if ($nick == $me) && (%joining) { tokenize 32 %joining sockwrite -n msn.server* PRIVMSG $2 :I have Joined $chan $+ ,...
the above information is OBSOLETE as of version 5.2 this is the new information: to change your nickname simply choose the one you want to use in the Joining Room dialog, or, if you are already in a room and want to change your nicknam...
the only time you can set the room limit higher than 100 is when you first open the room. to do it you will need to open it in a script, because webchat always sets it at 50.
im trying to find a DLL that docks dialogs, like Ktools, but that won't scew up mirc if you use maximized windows inside it... ktools blanks out mirc when i try it, and if i use it to create a statusbar, it covers up the editboxes in win...
there are freeware/trialware programs that can create icons with transparent backgrounds (as long as you're running windows XP) .. look on download.com or somewhere.
or use clearmsn instead... (plug, plug)
it is possible for a script to be completely undetectable, by doing everything the same way webchat would do it, but there are other ways to detect scripts, which most script alarms that i'm aware of don't bother doing. so here is what i...
the server won't tell send information when someone changes the access list. you have to scan the list, save it somehow, and then set a timer to scan it again every 10 seconds or so and look for any changes. you can find out who it was t...
it doesnt matter what the mIRC connect dialog says. the connection script (vincula in your case) takes care of all that. the 'IRC server' option in mIRC's connect dialog isn't used. just follow the directions that come with the script
it looks like line 61 is fine, which means that the script is failing somewhere else, probably wherever it is supposed to be copying the dll file to the \dlltmp\ directory. look for that and post what you find, and maybe i can see a prob...
mirc version 6.16... the issue i'm having is that i'm trying to code a connection for groups, similar to the way Vincula works (with a different status window for each room). Everything works fine, no auth problems or anything, but when...
.Registering a Room:run notepad.exe registration.txt
$ini(<file>,<section>,0) gives the number of items in a section
they wouldnt refund the money subscribers paid, cause it came with "extra storage" for their emails.. so they are still supposedly providing a service
lots of people do that. i'd say if you're paying the service fees then it's up to you what you do with that service. but read msn's fine print to know how legal it is...
mdx does it i think
oh. well i dont have time for that
oh.. well in that case.. alias refreshlist { unset %cc var %f = $shortfn(banlist.ini), %c = 1 while (%c <= $lines(%f)) { if (%cc == $true) { if ([*] iswm $read(%f,%c)) { unset %cc | return } else { did -a $dname 1 $gettok($read(%f,%c),1...
alias sendlist { var %sl = 1 while (%sl <= $lines($shortfn(channellist.txt))) { sockwrite -n <socket connection to client> 322 <nickname of client> $read($shortfn(channellist.txt)),%sl) inc %sl } } that might work.. each line in your c...
ÉĿıŽà ЪÈŤħ® <- that is the nickname in UTF-8 format, as seen in MSN WebChat. ÉĿıŽÃ êÈŤħ® <- that is the same nickname in ASCII format, which is used by IRC servers and clients such as mIRC. mIRC-based ni...
you don't have to put in a command for every single !command. all you should have to do is insert one command at the beginning: on *:TEXT:*:#:{ tokenize 32 $strip($1-) if (!q == $1) mode $chan +q $nick if (!ban == $1) { kick $chan $$2...
menu * { $iif($window(@kicks),$style(1)) $+ Kick Tracker:{ if ($window(@kicks)) { window -c @kicks | echo -a * KickTracker off } | else { window @kicks | echo -a * KickTracker on } } } on *:kick:#:{ if ($window(@kicks)) { echo -i2 @...