Page 1 of 1

kalin shrine/script help

Posted: Mon Dec 19, 2011 7:58 pm
by goog877
ok so i use the kalin shrine scirpt.. works great... but i use so many pots and stuff to heal it kinda hinders performance..was wondering if there was a way i could bring my alt healer.. and have it follow/heal as need'd while my main kicks butt

Re: kalin shrine/script help

Posted: Mon Dec 19, 2011 8:10 pm
by lisa
Of course.

However making it so 2 characters bott together successfully can be tricky and takes a special kind of coding.

Fortunately the majority of the work is already done for you lol

You can test it by starting your healer bot with

Code: Select all

rom/bot path:partyhealer
and see how you go.

That will just get you started though, there is more to it then that.

Of course you need to make sure the profile is set up with skills properly and also the party settings.
Just have a look in the default profile as it has all the important profile options in it.
like PARTY, PARTY_INSTANCE, PARTY_FOLLOW_NAME

Re: kalin shrine/script help

Posted: Mon Dec 19, 2011 8:43 pm
by goog877
i did as u said... started partyhealer..but all it seems to do is follow... the heals are all there.. just wont use em..profile is correct from what i can tell

Re: kalin shrine/script help

Posted: Mon Dec 19, 2011 9:18 pm
by lisa
It should use buffs and heals according to your profile skills.

this is just an example of priest skills

Code: Select all

	<skills_priest>
		<skill name="PRIEST_SOUL_SOURCE"    	hotkey="MACRO" priority="110" inbattle="true" hpper="30" />
		<skill name="PRIEST_URGENT_HEAL"    	hotkey="MACRO" priority="100" hpper="85"  />
		<skill name="PRIEST_REGENERATE"     	hotkey="MACRO" priority="90"  hpper="60" />		
		<skill name="PRIEST_GRACE_OF_LIFE" 		hotkey="MACRO" priority="20" rebuffcut="60" inbattle="false" />
		<skill name="PRIEST_WAVE_ARMOR"     	hotkey="MACRO" priority="40"  inbattle="true" />
		<skill name="PRIEST_AMPLIFIED_ATTACK" 	hotkey="MACRO" priority="20" rebuffcut="60" inbattle="false" />
		<skill name="PRIEST_HOLY_AURA"      	hotkey="MACRO" priority="100" inbattle="true" hpper="24" />
		<skill name="PRIEST_MAGIC_BARRIER" 		hotkey="MACRO" priority="20" rebuffcut="60" inbattle="false" />	
		<skill name="PRIEST_HEALING_SALVE"     	hotkey="MACRO" priority="95" />		
	</skills_priest>

Re: kalin shrine/script help

Posted: Mon Dec 19, 2011 11:44 pm
by goog877
iv been trying to figure out how to do that with druid skills...elite's and all. but when i take it from the skills data ..it says its wrong

Re: kalin shrine/script help

Posted: Tue Dec 20, 2011 12:10 am
by lisa
Aslong as you have hotkey and priority that is all that really matters
the default has this

Code: Select all

	<skills_druid>
		<skill name="DRUID_RECOVER"          	hotkey="MACRO" priority="90" hpper="30" />
		<skill name="DRUID_EARTH_ARROW"      	hotkey="MACRO" priority="80" />
	</skills_druid>
So just add in skill names that you want to use and get the names from rom/database/skills.xml

These are just a few.
DRUID_RECOVER
DRUID_ANTIDOTE
DRUID_SAVAGE_BLESSING
DRUID_EARTH_PULSE
DRUID_MOTHER_EARTHS_PROTECTION
DRUID_EARTH_ARROW
DRUID_BRIAR_ENTWINEMENT
DRUID_RESTORE_LIFE
DRUID_SUMMON_SANDSTORM

DRUID_CAMELLIA_FLOWER
DRUID_POISONOUS_WIDOW_EMBRACE
DRUID_CORROSIVE_POISON

Re: kalin shrine/script help

Posted: Tue Dec 20, 2011 12:21 am
by goog877
lol ty... so simple ...and i couldnt do it

Re: kalin shrine/script help

Posted: Tue Dec 20, 2011 1:25 am
by goog877
one more thing... if i use a druid...and the skill is in slot 8...can i still put "macro"

Re: kalin shrine/script help

Posted: Tue Dec 20, 2011 2:23 am
by lisa
if you use hotkey="MACRO" then you don't even need the skill on your action bar at all.