Page 1 of 1

Profile question

Posted: Thu Feb 27, 2014 3:36 pm
by vernberg
hey all i got a little noobis / wierd question, how do i make my character just use Attack in profile no skills or nothing just the simple attack. i hope you alla understand the question

Re: Profile question

Posted: Thu Feb 27, 2014 4:16 pm
by Ego95
You could delete all skills or you add an

Code: Select all

autouse="false"
after every skill. You can also deactivate all skills with a short function in the onLoad of a waypoint file:

Code: Select all

<onLoad>
  for k,v in pairs(settings.profile.skills) do
         v.AutoUse = false
   end
</onLoad>

Re: Profile question

Posted: Fri Feb 28, 2014 12:13 am
by vernberg
well if i add the autouse="false" or delete everything will it still attack target with auto attack and hit it ?

Re: Profile question

Posted: Fri Feb 28, 2014 12:57 am
by rock5
I believe if the combat type is melee it will but not if you are a ranged attacker. I think you need to have

Code: Select all

COMBAT_TYPE = "melee" 
and

Code: Select all

COMBAT_RANGED_PULL = "false"
You can set these in your profile or if you only want to use it in a particular waypoint file you can add the following in the waypoint onload

Code: Select all

<onLoad>
  for k,v in pairs(settings.profile.skills) do
         v.AutoUse = false
   end
settings.profile.options.COMBAT_TYPE = "melee"
settings.profile.options.COMBAT_RANGED_PULL = false
</onLoad>

Re: Profile question

Posted: Fri Feb 28, 2014 7:05 am
by vernberg
thanks so much for the help i think i got it working now so im gonna go try it out.