Re: Mirc + NoNameScript [message #330006 is a reply to message #321594] |
Sun, 11 May 2008 00:53 |
_SSnipe_
Messages: 4121 Registered: May 2007 Location: Riverside Southern Califo...
Karma: 0
|
General (4 Stars) |
|
|
Here....see how i have n00bstories set up to join its channel...it wont join the channel it works if i manually type it but wont do it auto by the script...i am going to add more networks but im thinking since this 4rth one wont load a 5th one wont ether
edit:tryed it with jelly servers....both n00b and jelly wont load channels..... i guess i can only have 3 networks at once?>
[Updated on: Sun, 11 May 2008 01:09] Report message to a moderator
|
|
|
|
Re: Mirc + NoNameScript [message #330117 is a reply to message #321594] |
Sun, 11 May 2008 13:29 |
_SSnipe_
Messages: 4121 Registered: May 2007 Location: Riverside Southern Califo...
Karma: 0
|
General (4 Stars) |
|
|
that did it...but now jelly wont work..
let me take a guess
Quote: |
on *:start: {
/server irc.ia-net.net
/server -m irc.mp-gaming.com
/server -m irc.elitekamikazeteam.com
/server -m irc.n00bstories.com
/server -m irc.jelly-server.com
|
change
Quote: |
elseif ($server == irc.jelly-server.com) {
/nickserv identify
/join #jelly
}
}
|
to
Quote: |
elseif ($network == jelly) {
/nickserv identify
/join #jelly
}
}
|
i got QUESTION u told me to change the ia-net and n00bstories to network not server...how did u know to only put part of the name?
heres my whole script
Quote: |
on *:start: {
/server irc.ia-net.net
/server -m irc.mp-gaming.com
/server -m irc.elitekamikazeteam.com
/server -m irc.n00bstories.com
/server -m irc.jelly-server.com
}
on *:connect: {
if ($network == IA-NET) {
/nickserv identify
/join #xphaze
/join #xphaze2
/join #xphaze3
/join #xphaze5
/join #xphaze6
/join #xpzm0ds
/join #xpzmods
}
elseif ($server == irc.mp-gaming.com) {
/nickserv identify
/join #mp-apb
/join #mp-gaming
/join #mp-reborn
}
elseif ($server == irc.elitekamikazeteam.com) {
/nickserv identify
/join #ektsniper
/join #EKTCW
/join #ektrp
/join #EKT
}
elseif ($network == n00bstories) {
/nickserv identify
/join #n00bstories
}
elseif ($server == irc.jelly-server.com) {
/nickserv identify
/join #jelly
/join#jelly2
/join #jelly3
/join #jelly-ra
/join #jelly-marathon
/join#jchat
}
}
|
[Updated on: Sun, 11 May 2008 13:31] Report message to a moderator
|
|
|
Re: Mirc + NoNameScript [message #330121 is a reply to message #321594] |
Sun, 11 May 2008 13:51 |
_SSnipe_
Messages: 4121 Registered: May 2007 Location: Riverside Southern Califo...
Karma: 0
|
General (4 Stars) |
|
|
nvm it works on another netwrok...i try to join jelly
i get this
13:42... * Connecting to irc.jelly-server.com (6667)
13:42... —10irc.ren-ladder.com— *** Looking up your hostname...
13:42... —10irc.ren-ladder.com— *** Found your hostname (cached)
13:42... The nickname11 SSnipe is already in use
13:42... Press Control+F1 to retry taking the nick SSnipe!
i change my name and look..i dont see anyone else using my nick :S so idk why it wont let me join
|
|
|
Re: Mirc + NoNameScript [message #330129 is a reply to message #321594] |
Sun, 11 May 2008 15:36 |
|
TD
Messages: 966 Registered: May 2005
Karma: 0
|
Colonel |
|
|
The N00bstories and Jelly IRC servers are linked, you might as well just add the jelly channels under the #n00bstories channel.
Quote: | /join #n00bstories
/join #jchat
/join #jelly
/join #jelly2
/join #jelly-ra
/join #jelly-marathon
/join #jelly-mappack
|
As for the $network == X, X should be the network name displayed in the treebar on your left. For example, on Jelly's IRC, it should be 'Jelly-Games'.
[Updated on: Sun, 11 May 2008 15:39] Report message to a moderator
|
|
|
Re: Mirc + NoNameScript [message #330349 is a reply to message #330129] |
Tue, 13 May 2008 10:18 |
_SSnipe_
Messages: 4121 Registered: May 2007 Location: Riverside Southern Califo...
Karma: 0
|
General (4 Stars) |
|
|
TD wrote on Sun, 11 May 2008 15:36 | The N00bstories and Jelly IRC servers are linked, you might as well just add the jelly channels under the #n00bstories channel.
Quote: | /join #n00bstories
/join #jchat
/join #jelly
/join #jelly2
/join #jelly-ra
/join #jelly-marathon
/join #jelly-mappack
|
As for the $network == X, X should be the network name displayed in the treebar on your left. For example, on Jelly's IRC, it should be 'Jelly-Games'.
|
ok where i look can u take ss? plz?
|
|
|
|
Re: Mirc + NoNameScript [message #330374 is a reply to message #330366] |
Tue, 13 May 2008 11:51 |
_SSnipe_
Messages: 4121 Registered: May 2007 Location: Riverside Southern Califo...
Karma: 0
|
General (4 Stars) |
|
|
TD wrote on Tue, 13 May 2008 11:26 | http://i31.tinypic.com/doo3e0.jpg
When using $network instead of $server, the value should be equal to the network names (I used a red circle around the network names on the left).
($network == n00bstories)
As for the n00bstories/jelly confusion, just put the jelly channels under the n00bstories one, as if it's one network. Whenever you connect to n00bstories it will also join the jelly channels.
|
ok thanks man everything works
another question comes to mind....think i should change all $server to network?
seems like for every 1 network it allows 3 /s -m <server> then have to put another network below it
|
|
|
|
|
Re: Mirc + NoNameScript [message #331241 is a reply to message #321594] |
Mon, 19 May 2008 23:48 |
_SSnipe_
Messages: 4121 Registered: May 2007 Location: Riverside Southern Califo...
Karma: 0
|
General (4 Stars) |
|
|
REQUEST
does anyone have a script where everytime you name comes up in irc it pms you the logs? or like shows up in a channel i choose? like if someone says my name ina channel and im not around it shows up in another channel and thats all?
|
|
|
|
|
Re: Mirc + NoNameScript [message #331271 is a reply to message #321594] |
Tue, 20 May 2008 07:23 |
|
Zion
Messages: 2722 Registered: April 2006
Karma: 1
|
General (2 Stars) |
|
|
on *:text:Zion:#channel:/echo 4$nick has just called your name from $chan
This will listen on the channel "#channel" for the word "Zion" and then echo who said your name and what channel it was on into the current channel in red colour.
Changing "Zion" to your nickname, and "#channel" to the channel you want to listen on.
Place this into the Remote tab of the script editor.
Note: If the "4" doesn't want to work right, delete it and press CTRL and K on your keyboard, then choose a colour number from the pallette.
[Updated on: Tue, 20 May 2008 07:27] Report message to a moderator
|
|
|
|
|
|
Re: Mirc + NoNameScript [message #376212 is a reply to message #321594] |
Sat, 14 March 2009 17:11 |
_SSnipe_
Messages: 4121 Registered: May 2007 Location: Riverside Southern Califo...
Karma: 0
|
General (4 Stars) |
|
|
Sorry to bump this very old topic but im trying to re do this since I lost the file but seems not to work even tho as I read over this post
last servers channels not opening
on *:start: {
/server irc.ia-net.net
/server -m irc.freenode.net
}
on *:connect: {
if ($network == IA-NET) {
/nickserv identify
/join #xphaze
/join #xphaze2
/join #xphaze3
/join #xphaze5
/join #xphaze6
/join #xpzmods
}
elseif ($server == irc.freenode.net) {
/nickserv identify
/join #androidforums
/join #android
}
}
|
|
|
|
|
|