View Single Post
  #2  
Unread 03-22-2012, 12:35 PM
Darqwood's Avatar
Darqwood Darqwood is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Aug 2005
Posts: 849
Default

Quote:
Originally Posted by rxspace View Post
Hello on my mages i get this responce in tells
name Tells you, "parent.Cures2.Cure2.tell"
other mage Tells you, "parent.Cures2.Cure2.tell"
healer tells you, "Curing Arcane"
any idea what going on here
i cant seem to fix it what have i done wrong
thanks


Rxspace, the most likely problem is an empty string in the code. If you are using the button utility to configure your windows, re-run it and the issue should be fixed. If you are editing the window by hand, open it in Notepad and scroll down to the Cures2 area (mage cures). It should look like this:


Code:
<Page Name="Cures2">
  <Data Name="Label" Value="Mage" />
  <Data Name="Cure1" SpellName=" " Tell=" " Gsay=" " Rsay=" " BG="X" Cmd=" " CmdTT=" " />
  <Data Name="Cure2" SpellName="Cure Arcane" Tell=" " Gsay=" " Rsay=" " BG="P" Cmd=" " CmdTT=" " />
  <Data Name="Cure3" SpellName=" " Tell=" " Gsay=" " Rsay=" " BG="X" Cmd=" " CmdTT=" " />
  <Data Name="Cure4" SpellName=" " Tell=" " Gsay=" " Rsay=" " BG="X" Cmd=" " CmdTT=" " />
  <Data Name="Cure5" SpellName=" " Tell=" " Gsay=" " Rsay=" " BG="X" Cmd=" " CmdTT=" " />
</Page>

Make sure there is one space character between the highlighted quotes, or type whatever you want the tell to say. If you leave it completely empty without the space, you will get the text you have been seeing. If that does not work, post here again and we'll try some other things.


__
Reply With Quote