View Single Post
  #6  
Unread 05-09-2012, 06:49 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 kamzak View Post
<Data Name="Spell0" Script="useabilityonplayer Parent.Target Murderous Design IV"
tell Parent.Target &apos;You Have My Hate&apos;" Text="Murderous Design" />
Here's the problem: the set of commands have to all be in one set of quotes. You have quotes after Murderous Design IV so the Script parameter is stopping there. Change it to this:
Code:
<Data Name="Spell0" Script="useabilityonplayer Parent.Target Murderous Design IV
tell Parent.Target &apos;You Have My Hate&apos;" Text="Murderous Design" />
In that example the " starts after Script= and there isn't another quote until after the tell, so both lines are part of the Script variable and will get executed when you click the button.
__________________
Reply With Quote