View Single Post
  #3  
Unread 06-27-2008, 05:36 PM
lordebon lordebon is offline
Fetish Core author
This person is a EQ2Map developer.
Featured
 
Join Date: Jun 2005
Server: Crushbone
Posts: 2,667
Default

Quote:
Originally Posted by RickF7666 View Post
I've come up with a way to send a tell to a group member. This is suppose to be an easy way for group members to have a private chat with out involving the entire group. Basically, push a button and send a tell to that group member. The problem I'm having is that it sends the group member's name twice to the chat window. So what I have is:

OnPress="beginchatinput "/t " ## parent.Name.text"

Is there any way to do this with out the group member's name coming up twice?
I've had this issue before. Here's what to do...

OnHover="A = "/t " ## parent.Name.text"
OnPress="beginchatinput A"

Note that code may not be 100% correct, I'll check it against the file I use later.
Reply With Quote