View Single Post
12-24-10, 12:40 AM   #1
khurzog
A Frostmaul Preserver
 
khurzog's Avatar
Join Date: Dec 2007
Posts: 266
whats wrong with this kgpanels script

hi. need some quick help to fix a small annoyance

i am using kgpanels to make a chat window only show up when in party/raid. that works fine

Code:
local pmems = GetNumPartyMembers()
 if pmems < 1 then
    ChatFrame5:Hide()
 else
    ChatFrame5:Show()
 end
problem is, every time i relog, the chat window will be empty and i have to manually check the settings again (party chat/raid chat/bg chat)

so how can i maintain the windows settings? thanks!
  Reply With Quote