Page 1 of 1

Chat wont let me put anything in /1

PostPosted: Sun Jun 14, 2015 5:02 am
by Pureless
Curious bug, more of an annoyance than anything. I had a bug where when i types /1 to chat in general it wouldn't do anything. Wouldnt let me chat. So i left the channel and rejoined to see if it fixed it, and it put general into /2. Now no matter where i go, general is /2, trade /3 etc. And no matter how many times i leave general and rejoin to try to move it to /1 it wont let me. Any ideas how to fix this?

Re: Chat wont let me put anything in /1

PostPosted: Sun Jun 14, 2015 5:05 am
by Aunstic
Leave all your channels and start to join them in order.
/leave general
/leave trade
/leave world
/leave localdefense
/leave lookingforgroup
/join general
/join trade
/join localdefense
/join lookingforgroup
/join world
etc etc

To find all channels you're in, right click a chat tab and go to "channels" to see all channels you're in.
Image

Re: Chat wont let me put anything in /1

PostPosted: Sun Jun 14, 2015 5:14 am
by Pureless
Tried that, puts them all back exactly where they were.

Re: Chat wont let me put anything in /1

PostPosted: Sun Jun 14, 2015 5:25 am
by Aunstic
Pureless wrote:Tried that, puts them all back exactly where they were.

Code: Select all
/run name, id = GetChannelName(1); SendChatMessage("/leave " .. name .. ", nil, nil);
/leave general
/leave trade
/leave world
/leave [all other channels]


GetChannelName(channelID) allows you to retrieve the name of the channel and SendChatMessage will do /leave [channelName]

Then join channels and see if you can now have a channel in ID 1.

I suggest turning off all addons for this so it doesn't try to join channels and use up ID 1.

Re: Chat wont let me put anything in /1

PostPosted: Sun Jun 14, 2015 5:33 am
by Pureless
Your script simply threw an error for some reason. But the turning off addons comment gave me an idea, and it seems there was some addon throwing a hidden channel into /1 for some reason. So i just turned that off. Thank you.

Re: Chat wont let me put anything in /1

PostPosted: Sun Jun 14, 2015 5:35 am
by Aunstic
Pureless wrote:Your script simply threw an error for some reason. But the turning off addons comment gave me an idea, and it seems there was some addon throwing a hidden channel into /1 for some reason. So i just turned that off. Thank you.

Sounds good. Glad I helped with an idea then.