NeedhelpWithMirc
Feb 19 2008, 05:55 AM
Hi all new here, I need help with a snippet code, I dont actaully have it written or etc its all in my head, but I have no idea how to start to code it. I tried writing to file and etc, and it didnt work then I thought sockets, but I dont know if that is the right way to go. What I want to do: I want it to bring up a list of rooms using /list -min 3 Then join all rooms on that list Repeat every X time frame Any thoughts on how to do it? I can almost see it in my head but like I said I just cant get it to work out when I try to use coding. Thanks in advance to anyone that can help me!  EDIT: Well at this point, I have some ideas, BUT I still can not get it to read the channel list window when you do a /list Any thoughts on how to get around that? Thanks in advance 
Reply
Similar Topics
Keywords : mirc
- I Am Looking For Ideas For A Mirc Addon
I want your ideas (0)
Mirc 3d Rendering
(0) QUOTE ======================================================================5/26/2006===
Talons Simple 3D Tutorial irc.webchat.org:6667 in
#mIRC,#help.mIRC ==================================================================================
As a programmer, I often find myself trying to write things that already exist. It gives some
satisfaction to say, "I did this on my own." even if it is not as good as what is already out there.
Nothing is more impressive than your own work, even if it is not as good. It's an accompli....
Sub Domain Www.yourname.mirc.ms
(5) I am offering everyone here a free sub domain Yourname@mIRC.ms xD email request@mIRC.ms with the
url you desire and the url you want it forwarded to xD....
Email Yourname@mirc.ms
(5) I am offering everyone a personal email address Yourname@mIRC.ms xD post here with the email
adddress you want and the email address you want the email forwarded to for example You@Hotmail.com
please email your details to Request@mIRC.ms.....
Mirc Scripting Site/community
(6) hello everyone, just looking for some reviews and advice on my site/forum address is
www.altscripts.trap17.com I really appreciate suggestions and criticism, id like to make this site
something that everyone can enjoy /smile.gif" style="vertical-align:middle" emoid=":)" border="0"
alt="smile.gif" />....
Socket Status Addon For Mirc
(2) This addon will display the status of your open sockets (if there is any) Displays displays the
Name, IP, Port, Status - Bytes sent/received & last Sent/recieved Has options to refresh the status,
close a socket and close all sockets. Copy and paste this code below into your remotes (alt + r) To
run the dialog u can simply type /sockstats or u can add a popup to your menubar or wherever to open
it. ie. &Socket Status:/sockstats in your status popup section (alt + p) **IF you have no active
sockets it wont open the dialog, it will just return no open sockets in your ....
Sockets Help (mirc)
(8) hello, i was wondering if someone would be able to help me out a bit. Im looking to get some info
from my forums using sockets and mIRC, however the info i want requires that you be logged in. I
know that it would require sockwrite POST something, but im not really sure how to use that :S
anyways, here is the source to the login section (HTML) HTML form action ="
http://www.altscripts.trap17.com/forum/index.php?action=login2 " method=" post " style="
margin: 3px 1ex 1px 0pt; text-align: right; "> input name =" user " size=" 10 "
type=" text ">....
How To Customize The Look Of Your Mirc Events Part 2
(6) Well in part 1 of How To Customize The Look Of Your Mirc Events i covered some channel events, so
now i will cover the events for in a private chat. Plus some extra stuff.... ** To change the look
of the other persons text u again use a on text event CODE on ^*:TEXT:*:?: {
echo -t $query($nick) ( $+ $nick $+ ) $1- halt }
** To change the look of your own input CODE on *:INPUT:?: { if
($left($1,1) != /) { .msg $active $1- echo....
How To Customize The Look Of Your Mirc Events
(4) Well im sure that a lot of you just use mIRC for chatting and do not realise that you can actually
use it to code cool stuff. You can also change the way your events look and i am going to explain
how here. Starting with the on join event - which triggers when you and other users join a channel.
Instead of having just the plain * Now talking in #channel and * nick has joined #channel you can
make it look fancy ie. (Join/nick) (nick@address) and its not hard to do. CODE on
^*:JOIN:#: { echo -t $chan (Join/ $+ $nick $+ ) (....
Basic Guide To Mirc - Installation And Settings
(8) Basic Guide To mIRC 1.Open up your mIRC client. you will see a screen like this *Note* my
colors are customized. The normal background is white and the text is different also. Bear that in
mind when following this tut. See the folder with the hammer in front of it? Either click
that or go to the tab that says tools click it and scroll down and select options you will get
the following screen 2. in that box click the add button Add the pertinant info you
need depending on servers, descriptions etc. As you can see in the picture above....
Control Parts Of Msn Through Mirc
(7) Control your MSN, or return various information such as nickname, status, etc.. Usage:
$msn(valuetype) Valuetypes : returnvalue online : $true or $false indicating
wheter your signed in or not (actually $true indicates status but was added to have an
independent online checker) status : returns the status of MSN (Busy,Online,Invisible etc)
nickname : your nickname email : your email ie. //echo -a $msn(nickname) will return ur msn
nickname. user : $true when succesful $false when not Methods: Blocked CanPage
Frie....
Getting And Using Mirc
(0) First of all, is mIRC for you? Yes, I would like to think it is. mIRC is a completely free,
scriptable chat client that can connect to any irc server in the world. Quoted from www.mirc.com
QUOTE IRC is the net's equivalent of CB radio. But unlike CB, Internet Relay Chat lets people
all over the world participate in real-time conversations. IRC is where the Net comes alive!
So if you have a windows computer, are interested in talking to people from all over the world, and
especially if you would like to learn a new scripting language, mIRC is for you /sm....
Few Mirc Snippets I Have Scripted
(19) Just a few things that may come in handy /smile.gif" style="vertical-align:middle" emoid=":)"
border="0" alt="smile.gif" /> Backwards text snippet : will revers the text u input CODE bck {
var %x = 1,%bck while (%x <= $len($1-)) { %bck =
$mid($1-,%x,1) $+ %bck | inc %x } return %bck } Usage: $bck(text)
ie. //echo -a $bck(hello everyone) Returns: enoyreve olleh Random letter/number generator :
creates a random letter/number combo for the length specified. CODE rx { if ($1 == &....
Mirc Identifiers In Vb6
Few token identifiers which work the same as mIRC functions do (0) If u have ever scripted in mIRC you would have surely come accross the token identifiers like
$addtok $gettok, etc. Here is a little snippet u can add to your VB6 script to use these
functions easily with the same format as the mirc commands. ie. $gettok(string,N,C) very easy
to use hope it comes in use to someone, i use it a lot in my scripts /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> Public Function AddTok(Text
As String, Token, AscChar As Integer) As String Dim Tokens() As String, NumTokens As Integer, X As
In....
Mirc Script Downloads Discussion And Help Site/forum
(1) Im just looking for a couple of reviews and some advice of what i could add to the site, and a few
new members wouldnt hurt the forum ;)anyways, im looking forward to hearing everyones oppinions and
thank you in advance to everybody here ps... i love the community here, always so helpful!
(almost forgot this part) www.altscripts.trap17.com ....
Using Mirc
A small tutorial how to use mIRC (0) IRC (Internet Relay Chat) is a virtual meeting place where people from all over the world can meet
and talk. 1. Go to http://mirc.com/get.html 2. download lastet mIRC program for that site and
save as you computer. 3. double click mIRC**.exe for instalin that software 4. after instalation
that is directory called mIRC 5. double click mIRC icon for run mIRC program. 6. at mIRC option
(connect) a . insert your full name b . insert your email address c . insert your first
nickname ( actually you can do with /nick yournickname 7. from options connect go to Se....
Mirc Snippets
Some snippets for IRC Chatters :) (10) You can find them on: www.hawkee.com www.mircscripts.org www.mircscripts.com www.mirc.net ... Here
are somones...: CODE ; Repeat flood protection ; Change #channel with the name of your channel
:) ; It will ban+kick after 3 repeats i 8 secs. on *:text:*:#klinci: { if
($nick == $me) || ($nick isop $chan) || ($nick ishop
$chan) { halt } else { var %text =
$hash($strip($1-),32) var %stari.text = %rp. [ $+ [
$chan ] $+ . ....
Mirc Problem
(3) Hey dudes... have you guys used mIRC before ? Now I've a problem on mIRC regarding to resume
a file send... When I try to resume a sending file, I got a status message which says ... "DCC
Resume from rejected (invalid parameters)" Anyone knows what is going on ? ....
usefull for mIRC
(0) some stuff I wrote...
basic $chan prots :
CODE on *:text:*:#: {
set %t $0 var %i 1 var %txt $1- if (%t > 100) { ; number 100 is number of
max words per line, it can be edited. kick $chan $nick Max words per line in this chan is 100 ,you
had %t words... } if ($len($1-) > 500) { ; number 500 is number
of max characters per line, adjust it to suit you. kick $chan $nick Max length per line in this
chan is 500 characters,you had $len($1-) characters... } while ....
My mIRC script page..
(5) Hi there..
this is my page... it's kinda diary, and my mIRC scripting presentation... so, I would
like to hear your opinion..
/smile.gif' border='0' style='vertical-align:middle'
alt='smile.gif' />
http://www.uptheirons.co.sr/ ....
CGI/mIRC scripts
(3) Is this forums just for web scripts? Does anyone know of a good CGI sripting site? What about
mIRC? (I'm trying to teach myself these things)....
Requesting Beta Testers and Themers for my new mirc script
(5) Requesting Beta Testers for my new mirc script...
You can get it here
Winbots Script
If you
want to make a theme, edit the Template.thm file and save it as .thm....
MIRC script by me.
(4) I made this script check it out and tell me what you think.
CODE
http://kietekas.com/kietekasscriptas.rar ....
Mirc Bots
Can I run? (4) Can I run mIRC bots on trap 17? Thank u....
Mirc Chatroom
(0) witch of the chatoptions do i need to connect to my irc chgtroom or do i need to instal something
myself I hope you can help me.....
Suggestion (mirc)
(19) I was just thinking about this /smile.gif' border='0' style='vertical-align:middle'
alt='smile.gif' /> . It would be cool if you guys could host mIRC channels for members. so that
people can connect to us using irc. .trap17.com . This would be good advertisement since those
channels can grow pretty populair. Just a suggestion /biggrin.gif' border='0'
style='vertical-align:middle' alt='biggrin.gif' /> ....
Looking for mirc
|
|
Searching Video's for mirc
|
advertisement
|
|