View Single Post
  #2  
Unread 08-11-2009, 07:02 PM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Default

Editing RaidAbilities is easy. A peek at the Add-Ons listed on the main download page will show RaidAbilitiesEditor which includes options for generic announcements in various channels.

ClickCures is not currently setup to support announcements. Since inventing this feature, I've only had a few requests for announcements on cures. I will probably add support for it in a future release. Until then you can do the following to add an announcement to the Cure Curse buttons in the raid window.

1) Open eq2ui_mainhud_raid.xml in Notepad
2) Search for all occurances of...
Code:
parent.parent.parent.parent.parent.CancelSpells.Activated=parent.parent.parent.parent.parent.parent.Persona.InstaClick
useabilityonplayer Parent.Parent.Basic.Name.LocalText 969542071
3) Replace with...
Code:
parent.parent.parent.parent.parent.CancelSpells.Activated=parent.parent.parent.parent.parent.parent.Persona.InstaClick
useabilityonplayer Parent.Parent.Basic.Name.LocalText 969542071
raidsay=('Activating Cure Cures on ')##(Parent.Parent.Basic.Name.LocalText)
raidsay=('Activating Cure Cures on ')##(Parent.Parent.Basic.Name.LocalText)
Note the raidsay code is repeated to ensure the announcement happens at least once. SOE script often ignores the first occurance of a slash command.
Reply With Quote