View Single Post
05/08/14, 12:08 PM   #8
Roupine
Join Date: May 2014
Posts: 18
Originally Posted by lyravega View Post
Alright, I managed to destroy it with this

Code:
/script CHAT_SYSTEM:DestroyContainer(CHAT_SYSTEM.containers[2])
whew...
Woo!

I was going to say something more foolproof like:

Code:
/script for i=GetNumChatContainers(),1,-1 do for j=GetNumChatContainerTabs(i),1, -1 do RemoveChatContainerTab(i,j) end RemoveChatContainer(i) end AddChatContainer(); AddChatContainerTab(1,"Chat")
That assumes that the chat container and tab indices are in order. It doesn't appear to do anything until you /reloadui but it should reset the chat containers/tabs
  Reply With Quote