Adam, about a week ago you explained how I could make the whisper event happen only between the Admin and user, not user to user. You said this:
Yes. Open CuteSoft_Client\CuteChat\ChatUI.xml and go to line 1693 and post the following code:
if( ! GetMyInfo().IsAdmin )
this.SetVisible( false );
I opened said file, and on like 1693 this is what it shows:
Line 1692 }
Line 1693 ]]>
Line 1694 </Method>
The code that you gave me, is it suppose to be apart of that Method that is ending and withing the double brackets?
So the end result would be:
Line 1692 }
Line 1693 if( ! GetMyInfo().IsAdmin )
Line 1694 this.SetVisible( false );
Line 1695 ]]>
Line 1696 </Method>