Page 1 of 1
2 Questions Range pull type change & make a beep
Posted: Sun Sep 01, 2013 6:43 am
by rambo66
Hi,
How can i change the RAnge pull "spell"
I have a rogue/priest, bot starts with "found ROGUE_SHADOW_PRISON" but i would like to change it to the PRIEST_RISING_TIDE
I would like to have at a Waypoint a short "beep" in the script.
I guess both should be very simple, but after some searching here i still did not fine anything.
thx alot
Greets,
ram
Re: 2 Questions Range pull type change & make a beep
Posted: Sun Sep 01, 2013 7:10 am
by rock5
Do you have Rising Tide in the "<skills_rogue>" section of your profile?
Re: 2 Questions Range pull type change & make a beep
Posted: Sun Sep 01, 2013 7:15 am
by rambo66
not right now, that means i should add it ?
what about the SHADOW_PRISON ? in this section ? first is taken ? or the one with higher priority ?
also i would like to use the Rising_tide only in the Goblin mine, it doesnt make sense to cas shadow_prison and then run into all the mobs
Re: 2 Questions Range pull type change & make a beep
Posted: Sun Sep 01, 2013 8:26 am
by rock5
The bot tries to use all the skills in order of the priority number. So if you want it to start with Rising Tide then make sure it has the highest priority.
Re: 2 Questions Range pull type change & make a beep
Posted: Sun Sep 01, 2013 10:29 am
by rambo66
so there is no simple command to set the range pull skill ? Then i will try it like that.
And can you please tell me... what command in a WP File creates a Beep ?
thx Rock
Re: 2 Questions Range pull type change & make a beep
Posted: Sun Sep 01, 2013 11:36 am
by rock5
Here are the range pull options. To have a melee class use ranged skills for pulling you would set the option
Code: Select all
<option name="COMBAT_RANGED_PULL" value="true" /> <!-- only important for melees -->
Then you can set
on the skills you want to use only for pulling. When the pulling phase ends it wont use those skills.
I don't see any option to exclude the use of other ranged skills during the pulling phase but then why would you want to?
The way I do beeps is to print \a, eg.
Code: Select all
print("This will print these words then beep twice \a\a")
Edit: Just to clarify, when you are a Rogue it only cast skills in the rogue section. If you want to cast Priest skills as a rogue, you have to add those priest skills to the rogue section.
Re: 2 Questions Range pull type change & make a beep
Posted: Sun Sep 01, 2013 12:15 pm
by rambo66
ok, thx alot Rock, i will try that

Re: 2 Questions Range pull type change & make a beep
Posted: Sun Sep 01, 2013 1:06 pm
by rambo66
if i want to put it in the onload section of the WP
would it look like that ?
<changeProfileOption("PRIEST_RISING_TIDE" pullonly="true" />
or how should it be written ?
Re: 2 Questions Range pull type change & make a beep
Posted: Sun Sep 01, 2013 1:41 pm
by rock5
PRIEST_RISING_TIDE is a skill, not an option. We have another command for that
- changeProfileSkill(_skill, _option, _value)
So you would use
Code: Select all
changeProfileSkill("PRIEST_RISING_TIDE", "pullonly", true)