View Single Post
  #1  
Unread 03-25-2007, 02:26 AM
Othesus's Avatar
Othesus Othesus is offline
A Griffon
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Mar 2005
Server: Lucan DLere
Posts: 847
Default Click to Cure bug in the Player and Group window

I was putting together a player window today with click-to-cure and I was looking at your player and group windows for reference. I noticed that you use the script:

OnPress="target_allow_self_pet_toggle 0
useability Cure Trauma
target_previous
target_allow_self_pet_toggle 1"

The command is actually /target_allow_pet_self_toggle and it doesn't work without the = in scripts so for my window I ended up using:

OnHoverIn="target_allow_pet_self_toggle=0 target_allow_pet_self_toggle=0" OnHoverOut="target_allow_pet_self_toggle=1 target_allow_pet_self_toggle=1"

in the parent page and then:

OnPress="useability Cure Trauma
target_previous"

on each button.

Here's the custom player window I put together:
http://www.eq2interface.com/forums/s...7530#post57530
Reply With Quote