is there a command to forget a spell
Posted: Thu May 06, 2004 10:37 am
i want to forget a spell in a gemslot any ideas on syntax please
would i use itemnotify ?
would i use itemnotify ?
Need to talk about MacroQuest to other MacroQuest users?
https://mq64.org/phpBB3/
ok.. we have to look at xml! I'll help you outN
Top
/notify windowname controlname notification
/notify is used to interact with UI windows directly instead of using the mouse. /notify cannot be used to interact with objects such as doors
windowname has to be a valid UI window. THe names of windows can be found using the /windows command
controlname has to be the ScreenID not the "piece" name
<Button item="LW_DoneButton">
<ScreenID>DoneButton</ScreenID> <--------- ScreenID
...
<Pieces>LW_DoneButton</Pieces> <--------- Piece Name
Entering "0" for controlname would send the message to the window itself (used for "close" at least, possibly others). See /windows.
notification can be: leftmouse, leftmouseup, leftmousehold, rightmouse, enter, close, newvalue, mouseover, newvalue #, or listselect #
# represents the value for the notification in newvalue and listselect
Note:
1. leftmouse and rightmouse will cause the button to be held until the respective "up" is performed on them
2. /notify will work for clicking off buffs, however, items must still be clicked using /itemnotify.
3. /notify accepts all of the same clicks as /itemnotify (leftmouse,leftmouseup,leftmouseheld,etc)
Examples:
/notify LootWnd DoneButton leftmouseup
Clicks the Done button in the Loot Window
/notify hotbuttonwnd HB_Button1 leftmouseup
Activates the first hotkey
/notify somewindow SomeSlider newvalue 100
Moves the referenced slider in the window to 100
/notify trackingwnd 0 close
Closes the tracking window
/notify enviro Combine_Button leftmouseup
Clicks the Combine button in the enviro container
/notify TradeskillWnd RecipeList listselect 1
Selects the first item in the RecipeList listbox
Code: Select all
<ScreenID>CSPW_Spell0</ScreenID>
<ScreenID>CSPW_Spell1</ScreenID>
<ScreenID>CSPW_Spell2</ScreenID>
<ScreenID>CSPW_Spell3</ScreenID>
<ScreenID>CSPW_Spell4</ScreenID>
<ScreenID>CSPW_Spell5</ScreenID>
<ScreenID>CSPW_Spell6</ScreenID>
<ScreenID>CSPW_Spell7</ScreenID>