mIRC Home    About    Download    Register    News    Help

Print Thread
#244895 04/04/14 03:25 AM
Joined: Apr 2014
Posts: 4
D
Dan13 Offline OP
Self-satisified door
OP Offline
Self-satisified door
D
Joined: Apr 2014
Posts: 4
My wife is having issues when she tries to connect to a game irc server. This server has worked for her for several years and only today did she encounter this problem. Mirc appears to connect but then she cannot identify, change nicks, join channels or anything without is saying no such nick/channel.

She can connect with the games irc light client but mirc wont work anymore. This is from the status page if it helps.

* Connecting to irc.torn.com (8001)
-
-Irc.Torn.Com- *** Looking up your hostname...
-
-Irc.Torn.Com- *** Found your hostname
-
Welcome to the Torn IRC Network s*****************************
Your host is Irc.Torn.Com, running version Unreal3.2.8.1
This server was created Thu Sep 23 2010 at 03:18:00 CDT
-
Irc.Torn.Com Unreal3.2.8.1 iowghraAsORTVSxNCWqBzvdHtGp lvhopsmntikrRcaqOALQbSeIKVfMCuzNTGj
-
CMDS=KNOCK,MAP,DCCALLOW,USERIP UHNAMES NAMESX SAFELIST HCN MAXCHANNELS=35 CHANLIMIT=#:35 MAXLIST=b:60,e:60,I:60 NICKLEN=30 CHANNELLEN=32 TOPICLEN=307 KICKLEN=307 AWAYLEN=307 are supported by this server
MAXTARGETS=20 WALLCHOPS WATCH=128 WATCHOPTS=A SILENCE=15 MODES=12 CHANTYPES=# PREFIX=(qaohv)~&@%+ CHANMODES=beI,kfL,lj,psmntirRcOAQKVCuzNSMTG NETWORK=Torn CASEMAPPING=ascii EXTBAN=~,cqnr ELIST=MNUCT are supported by this server
STATUSMSG=~&@%+ EXCEPTS INVEX are supported by this server
-
There are 80 users and 229 invisible on 2 servers
26 operator(s) online
299 channels formed
I have 226 clients and 1 servers
-
Current Local Users: 226 Max: 893
Current Global Users: 309 Max: 976
-
Message of the Day, Irc.Torn.Com
-
- 25/9/2010 4:34
- IRC Rules can be found at http://www.torn.com/forums.php?forumID=14&ID=7421103. R
- emember IRC is a part of TORN and anything you do here directly reflects on you i
- n game.
-
- IRC STAFF:
-
- Netadmins:
- Clansy - 65306
- Evil_Fast - 313482 Server Root Admin
- Wolfeh - 172806
-
- Netadmins should only be contacted in game regarding abuse complaints or IRC sta
- ff issues.
-
- Staff:
- Bl0ndie
- David
- Dawn
- Hydro
- Karty
- Pand0ra
- Rob
- Steel
- Stiefie
-
-
-
-
- Staff are your first point of contact for all IRC issues and can solve most IRC p
- roblems and complaints.
-
- To register your nick please use "/ns register password email" a vaild email addr
- ess is required as you need the validation code sent to it.
-
End of /MOTD command.
-
* s****e sets mode: +iwTx
-
-NickServ- This nickname is registered and protected. If it is your
-
-NickServ- nick, type /msg NickServ IDENTIFY password. Otherwise,
-
-NickServ- please choose a different nick.
-
-NickServ- If you do not change within one minute, I will change your nick.
-
Local host: c****************.comcast.net (***************)
-
-> *Status* Window /msg nickserv identify **********
-
Status No such nick/channel
-
-> *Status* Window /j #testing
-
Status No such nick/channel
-
-NickServ- Your nickname is now being changed to Guest20146
-
* Your nick is now Guest20146
-
-> *Status* Window /j #** *****
-
Status No such nick/channel



Any help would be appreciated.
Thanks

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
My guess would be that it is a mode set to the user. Did you try any other server at the same network? If you did not, then try it. Some network have mode +r (Restricted) but this mode can be somthing else that doing the same thing. And did you do as they post in the motd? "Staff are your first point of contact for all IRC issues and can solve most IRC problems and complaints." ?


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Apr 2014
Posts: 4
D
Dan13 Offline OP
Self-satisified door
OP Offline
Self-satisified door
D
Joined: Apr 2014
Posts: 4
No she hasn't as I posted earlier she can connect to the server fine with the games mini irc client it's only when she uses mirc that she now has an issue. That's why I posted here, in the mirc help forums.

Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
It looks like there's an input event defined that messages input to the window name instead of executing the commands

Joined: Apr 2014
Posts: 4
D
Dan13 Offline OP
Self-satisified door
OP Offline
Self-satisified door
D
Joined: Apr 2014
Posts: 4
Hi
How would I go about seeing if that's the issue and how would I correct it?

Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
Open the remote editor (alt+r, remote tab) and make sure there are no "on *:input" lines, also in this window you can go to Listen > Events and uncheck that item to prevent any input events from being hit.

Joined: Apr 2014
Posts: 4
D
Dan13 Offline OP
Self-satisified door
OP Offline
Self-satisified door
D
Joined: Apr 2014
Posts: 4
Loki you nailed it exactly. Looks like there was some command like in there that had to do with an emote/smiley.


Thank you very much for your help.

Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
You can keep the functionality of that event by making sure to first check if the line starts with a / or if $ctrlenter was pressed:

Code:
if ($left($1,1) == /) || ($ctrlenter) { return }


Link Copied to Clipboard