how do I disable auto skill in wp? changeProfileOption

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
User avatar
beanybabe
Posts: 647
Joined: Wed Mar 06, 2013 1:27 am

how do I disable auto skill in wp? changeProfileOption

#1 Post by beanybabe »

I tried this but getting an error

<onLoad>
changeProfileOption("WARDEN_BRIAR_SHIELD", autouse="false")
</onLoad>
User avatar
Bill D Cat
Posts: 555
Joined: Sat Aug 10, 2013 8:13 pm
Location: Deep in the Heart of Texas

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

#2 Post 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)
User avatar
beanybabe
Posts: 647
Joined: Wed Mar 06, 2013 1:27 am

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

#3 Post 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.
User avatar
Bill D Cat
Posts: 555
Joined: Sat Aug 10, 2013 8:13 pm
Location: Deep in the Heart of Texas

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

#4 Post 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().
User avatar
beanybabe
Posts: 647
Joined: Wed Mar 06, 2013 1:27 am

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

#5 Post by beanybabe »

lol cut and paste strikes again. Thanks again. Hope it works.
Post Reply