Home | Networks | Community | Need Help? 

 
 Quick search

 
 
 RegisterRegister   Log inLog in 

Scripts and junk
Goto page 1, 2  Next
 
Post new topic   Reply to topic    SearchIRC Forum Index -> IRC Help
Author Message
Amurense
none
none


Joined: 08 Sep 2003
Posts: 11

PostPosted: Sep 12, 2003 3:22pm    Post subject: Scripts and junk Reply with quote

Alright. I'm relatively new to IRC. I know enough to get into a chat room and whatnot. But now that I've accustomed myself to being social, I want more! I want to know more about the different scripts I keep hearing (reading) people talk about. What are they exactly?

Oh yeah, and I want to be pinged whenever someone types my nick. Very Happy
I'm begging someone to please tell me how to do that!

Thanks
Back to top
moonman
Lurker
Lurker


Joined: 15 Jul 2003
Posts: 212

PostPosted: Sep 12, 2003 3:30pm    Post subject: Reply with quote

for scripts, i'd very much recommend mircscripts.org over ANY other site. folks will give you links to a bunch of garbage that is more likely to mess up your computer than give you anything productive for IRC'ing. stay as far from mircx.com as you can. awful stuff...

for the nick ping thing, put this in your remote scripts:

Code:

ON *:TEXT:*:#:{
  if ($me isin $1-) { .ctcp $me PING }
}


hope that helps.
Back to top
ed
SearchIRC Staff
SearchIRC Staff


Joined: 25 May 2003
Posts: 367
Location: Baton Rouge, LA

PostPosted: Sep 12, 2003 5:46pm    Post subject: Re: Scripts and junk Reply with quote

Amurense wrote:

Oh yeah, and I want to be pinged whenever someone types my nick. Very Happy
I'm begging someone to please tell me how to do that!


Do you really want to be PING'ed, or do you really just want a sound to go off when someone says your nick?
Back to top
Amurense
none
none


Joined: 08 Sep 2003
Posts: 11

PostPosted: Sep 13, 2003 5:11am    Post subject: Reply with quote

LoL...

I just want a noise to go off when someone types my nick.

And thanks for the help, moonman!!
Back to top
ed
SearchIRC Staff
SearchIRC Staff


Joined: 25 May 2003
Posts: 367
Location: Baton Rouge, LA

PostPosted: Sep 13, 2003 7:11am    Post subject: Reply with quote

Ctrl-O, to open to the options menu.
IRC > Highlight
"Add" button
In the 'Highlight lines which contain these words box', enter your nickname.
If you wish, choose a color to highlight lines that have your nick in them
Click the 'No Sound' button
Navigate to the sound you wish to have go off when you nickname is said.
Click "OK"
Click "OK"


Now it will play that sound whenever someone says your nickname.

Another way to do this, would be
Code:
ON *:TEXT:*:#:{
  if ($me isin $1-) { /splay -w C:\Windows\Sounds\Ed.wav }
}


(Change C:\Windows\Sounds\Ed.wav to a sound file on your computer)
Back to top
Amurense
none
none


Joined: 08 Sep 2003
Posts: 11

PostPosted: Sep 13, 2003 7:45am    Post subject: Reply with quote

Oh my god, ed! You're a huge help! Thanks. The first way didn't work for me, but the coding and junk did. Very Happy
Back to top
[DiMENSiON]
Eleet
Eleet


Joined: 06 Sep 2003
Posts: 621

PostPosted: Sep 13, 2003 3:06pm    Post subject: Reply with quote

please read below

Last edited by [DiMENSiON] on Sep 13, 2003 3:08pm; edited 1 time in total
Back to top
[DiMENSiON]
Eleet
Eleet


Joined: 06 Sep 2003
Posts: 621

PostPosted: Sep 13, 2003 3:07pm    Post subject: Reply with quote

Arrg, scripts. Scripts these days there are so many, all with errors the best bet really with scripts is just to make your own and learn learn learn, it's not too hard. If you really need a complete script i wouod suggest {SiC}Script or Fractal. I reveiw scripts for the network i use so i know or pretend to know my shit. :P
Back to top
Amurense
none
none


Joined: 08 Sep 2003
Posts: 11

PostPosted: Sep 13, 2003 3:37pm    Post subject: Reply with quote

Alright. This is nice. It's nice how fast you people reply! Very Happy

I don't want a script, necessarily. I really just want to know about them. I want to know what can be done with them and whatnot. Smile
Back to top
ed
SearchIRC Staff
SearchIRC Staff


Joined: 25 May 2003
Posts: 367
Location: Baton Rouge, LA

PostPosted: Sep 13, 2003 5:46pm    Post subject: Reply with quote

I think that pre-written scripts are crap. Of course, I don't use mIRC on a day to day basis...

To learn about mIRC scripting, the best way is to type '/help scripts'. There are some tutorials online, but I have found that the most precise and complete assistance with mIRC scripting, is using the built-in help file.
Back to top
Guest






PostPosted: Sep 13, 2003 9:03pm    Post subject: Reply with quote

i used to think the pre-written ones were crap, especially when i fiddled around with scripting a little myself. and most are. but the fact is, a well-made script (see: basic, airc, pairc, et al from mircscripts.org) is going to be better than something a person with zero programming/scripting experience is going to be able to make.

now its a different story if you just want a couple tweaks here and there. with some help, thats very doable.

but anything largescale is gonna be tough for your average joe.

thats just moonman's two cents as a guest in a city 100 miles from home.
Back to top
Amurense
none
none


Joined: 08 Sep 2003
Posts: 11

PostPosted: Oct 22, 2003 1:03pm    Post subject: Reply with quote

Ok, here's another question. Where in the Aliases would I find where the auto-kicks and auto-bans are. I want to remove those damned things and I don't know exactly where to look. Sad

Keep in mind that I'm completely IRC illiterate.
Back to top
OpTimuS-PrImuS
none
none


Joined: 19 Aug 2003
Posts: 22

PostPosted: Oct 23, 2003 2:16pm    Post subject: Reply with quote

Now it will play that sound whenever someone says your nickname.

Another way to do this, would be
Code:
On *:TexT:*:#:{
if ($me isin $strip($1-)) { .splay $mircdir $+ wavs\patada.wav }
}
Back to top
moonman
Lurker
Lurker


Joined: 15 Jul 2003
Posts: 212

PostPosted: Oct 23, 2003 2:19pm    Post subject: Reply with quote

ok but i think we're past that.
Back to top
ed
SearchIRC Staff
SearchIRC Staff


Joined: 25 May 2003
Posts: 367
Location: Baton Rouge, LA

PostPosted: Oct 23, 2003 4:53pm    Post subject: Reply with quote

Amurense wrote:
Ok, here's another question. Where in the Aliases would I find where the auto-kicks and auto-bans are. I want to remove those damned things and I don't know exactly where to look. Sad

Keep in mind that I'm completely IRC illiterate.


Not quite sure what you mean by "auto-kicks/bans"...
Back to top
Display posts from previous:   
Post new topic   Reply to topic    SearchIRC Forum Index -> IRC Help All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
 
Forum powered by phpBB
 
 © 2000 - 2008 EverythingIRC, Inc. All rights reserved. Please read our disclaimer