Does anyone think Sheuron will come back ever?
Does anyone think Sheuron will come back ever?
@OnionsTech ~ I constantly rank w/ Mentally's SP profile, i'd suggest you check it out..
update.
KMD_All_Hunter_Rotations_v20.zip
For some reason I didn't have the hunter talent Fervor coded. This has been rectified. Sorry about that.
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017
love what you have done with the addon!
I am currently updating my Alpha Utilities profile to support it and the tooltip for the Hotkeys do not work. here is the code I am using maybe im doing it wrong (I'm new to coding and LUA =D)
PHP Code:
{ name = "Till Soil ",
enable = false,
hotkeys = { },
tooltip = "Use this if you dont have a Master Plow",
},
Last edited by paintpauller; 02-22-2013 at 08:39 PM.
@ticklets awesome +rep
its not a widget, its a Hotkey.
thus why I was doing it like that.Hotkeys
The following parameters can be used when constructing a hotkey table entry, name, enable and hotkeys are all required fields, tooltip is optional.
name (String) - Display Name for the ability
enable (boolean) - Default state of the ability
hotkeys (table) - Default hotkeys, 'ls'= Left Shift, 'rs'=Right Shift, etc...
tooltip (string) - tooltip for the hotkey
PHP Code:
hotkeys = {
{ name = "Force Target Tilled Soil", enable = true, hotkeys = {'la'}, },
{ name = "Till Soil",
enable = false,
hotkeys = { },
tooltip = "Use this if you dont have a Master Plow",
},
},
aww cool, yea i was trying that myself, thx diesall!
Thanks! also on the wiki it states thathowever whenever I try to leave out Hotkeys it will not load the config. here is a example:Every configuration table requires a name, author and at least one ability or hotkey table
am I doing something wrong?PHP Code:
local config1 = {
name = 'Test',
author = 'Alpha_Utilities',
abilities = {
{ name = "Utility",
enable = true,
widget = { type = 'select',
values = { "Farming", "Disenchant", "Mill", "Prospect", },
value = "Farming",
tooltip = "Select one!",
width = 80,
},
},
},
}
Edit: just updated and tooltips are working great!
Last edited by paintpauller; 02-22-2013 at 10:33 PM.
has anyone a list of spell ids for tremor totem?
that works for me, make sure your sending the config table to PQI, by calling PQI:AddRotation(config1) after your table.
also values is a [key] => value table, so in your case 1|2|3|4 will be sent back to PQR, if you want it to send back Farming, Mill, etc... to PQR use values = { Farming = "Farming", Mill = "Mill"}
dont forget when your finished editing your config table to put an if then clause at the top of the ability so your not constantly sending the table to PQR...