PanelV(“Name”,”Button Count”, “Keys”,”Labels”)

This creates a vertical panel. You cannot use spaces as part of the names. If you wish to use a space use an underscore instead. You would bind the panels to a key and can bind all panels under 1 key if you choose.

Usage:

Example:

$F2::
panelH("Warlock_Panel", "4", "f4 g 4 2 ", "Target_Leader Stick PBAE Powerless")
return

Things to note the keys must be bound. For example in the above panel f4 coordinates as Target_Leader, g coordinates to stick, 4 coordinates to PBAE, and 2 coordinates to powerless.

so in the script I would have

$F4::
Target()
return

$g::
hotkey("g")
return

$4::
package("PBAE","7","")
return

$4::
package("PBAE","7","")
return

$2::
package("PBAE","2","")
return




Leave a Reply

Your email address will not be published. Required fields are marked *

Back To Top