Page 1 of 1

how do I disable auto skill in wp? changeProfileOption

Posted: Fri Sep 02, 2016 3:58 am
by beanybabe
I tried this but getting an error

<onLoad>
changeProfileOption("WARDEN_BRIAR_SHIELD", autouse="false")
</onLoad>

Re: how do I disable auto skill in wp? changeProfileOption

Posted: Fri Sep 02, 2016 4:18 pm
by Bill D Cat
beanybabe wrote:I tried this but getting an error

<onLoad>
changeProfileOption("WARDEN_BRIAR_SHIELD", autouse="false")
</onLoad>
Close. The format should be:

Code: Select all

changeProfileSkill("WARDEN_BRIAR_SHIELD", "AutoUse", false)

Re: how do I disable auto skill in wp? changeProfileOption

Posted: Wed Sep 28, 2016 10:30 am
by beanybabe
None of these work to disable Throw or combo throw. Any idea how to disable them ?

Code: Select all

changeProfileOption("ROGUE_THROW", "AutoUse", "false")
changeProfileOption("ROGUE_COMBO_THROW", "AutoUse", "false")

Code: Select all

changeProfileOption("ROGUE_THROW", "AutoUse", false)
changeProfileOption("ROGUE_COMBO_THROW", "AutoUse", false)
found this but it did not work viewtopic.php?f=21&t=3638&p=35879&hilit ... ill#p35879

Code: Select all

changeProfileOption("ROGUE_COMBO_THROW","ReqBuffName", nil)
changeProfileOption("ROGUE_THROW","ReqBuffName", nil)

Code: Select all

changeProfileOption("ROGUE_THROW","priority", -1)
changeProfileOption("ROGUE_COMBO_THROW","priority", -1)
I thought combat ranged pull might be doing it and added
changeProfileOption("COMBAT_RANGED_PULL", "false") but it still throws.

Re: how do I disable auto skill in wp? changeProfileOption

Posted: Thu Sep 29, 2016 6:08 am
by Bill D Cat
beanybabe wrote:None of these work to disable Throw or combo throw. Any idea how to disable them ?

Code: Select all

changeProfileOption("ROGUE_THROW", "AutoUse", false)
changeProfileOption("ROGUE_COMBO_THROW", "AutoUse", false)
Probably because the command is changeProfileSkill() and not changeProfileOption().

Re: how do I disable auto skill in wp? changeProfileOption

Posted: Thu Sep 29, 2016 5:39 pm
by beanybabe
lol cut and paste strikes again. Thanks again. Hope it works.