Is there a handy guide anywhere to integrating functions into PQInterface ?
this code is on the PQI wiki and I understand this goes in my data file
Code:
sampleConfig = {
name = 'Blood',
author = 'Diesal',
abilities = {
{ name = "Vampric Blood",
enable = true,
widget = {
type = 'numBox',
value = 40,
step = 5,
},
},
{ name = "Rune Tap",
enable = false,
widget = {
type = 'numBox',
value = 30,
step = 10,
},
},
},
hotkeys = {
{ name = "Dancing Runic Weapon",
enable = true,
hotkeys = {'ls'},
},
},
}
but how do I actually check the values and things from my PQR rotation ability ?