Profile question
Profile question
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
You could delete all skills or you add an after every skill. You can also deactivate all skills with a short function in the onLoad of a waypoint file:
Code: Select all
autouse="false"
Code: Select all
<onLoad>
for k,v in pairs(settings.profile.skills) do
v.AutoUse = false
end
</onLoad>
Re: Profile question
well if i add the autouse="false" or delete everything will it still attack target with auto attack and hit it ?
Re: Profile question
I believe if the combat type is melee it will but not if you are a ranged attacker. I think you need to have
and
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
COMBAT_TYPE = "melee"
Code: Select all
COMBAT_RANGED_PULL = "false"
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>
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Profile question
thanks so much for the help i think i got it working now so im gonna go try it out.
Who is online
Users browsing this forum: No registered users and 2 guests