Ressurect party skill

All resolved question will be found here. It is recommended that you browse / search through this section first and see if your question has been answered before

Moderators: Moderators, Documentation Writers

Message
Author
pulquerio
Noob
Noob
Posts: 10
Joined: 18 Dec 2013, 12:22
Noob?: No

Ressurect party skill

#1 Post by pulquerio »

Hello guys.

I'm having a problem with casting resurrect on the master whe it dies.
I tryied many diferent combinations of config, but it didn't worked. D:

Code: Select all

partySkill Resurrection {
	lvl 4
	target_dead 1
	sp > 10%
}
The function target_dead seems do not work well.
I already changed it, tried with target hp > 1%, but nothing.

Anyone can help me?

tsikot
Noob
Noob
Posts: 6
Joined: 12 Nov 2013, 09:30
Noob?: No

Re: Ressurect party skill

#2 Post by tsikot »

try this one. place the name of your target at the "target" field

partySkill Resurrection {
lvl 4
target
target_hp < 1
timeout 10
}

pulquerio
Noob
Noob
Posts: 10
Joined: 18 Dec 2013, 12:22
Noob?: No

Re: Ressurect party skill

#3 Post by pulquerio »

Hm..

I tried it before, but did it again.
It keep casting the buffs.

I made some changes but the kore just stops... D:

This is all the party skill configuration

Code: Select all

########################################################   ARCH BISHOP PARTY ###############################################################################

partySkill Resurrection {
	lvl 4
	target Mad Biologic
	target_hp < 1
	timeout 10
}

partySkill AL_HEAL {
	lvl 10
	whenStatusInactive EFST_POSTDELAY
	target_hp < 50%
	target_hp > 1
}

partySkill AB_RENOVATIO {
	lvl 1
	whenStatusInactive EFST_POSTDELAY
	target_whenStatusInactive EFST_RENOVATIO
	sp > 10%
	target_hp > 1
}

partySkill HP_ASSUMPTIO {
	lvl 5
	whenStatusInactive EFST_POSTDELAY
	target_whenStatusInactive EFST_ASSUMPTIO
	sp > 10%
	target_hp > 1
}

partySkill AB_CANTO {
	lvl 3
	whenStatusInactive EFST_POSTDELAY
	target_whenStatusInactive EFST_INC_AGI, EFST_QUAGMIRE
	sp > 10%
	target_hp > 1
}

partySkill AB_CLEMENTIA {
	lvl 3
	whenStatusInactive EFST_POSTDELAY
	target_whenStatusActive HEALTHSTATE_CURSE
	sp > 10%
	target_hp > 1
}

partySkill AB_CLEMENTIA {
	lvl 3
	whenStatusInactive EFST_POSTDELAY
	target_whenStatusInactive EFST_BLESSING
	sp > 10%
	target_hp > 1
}

partySkill PR_IMPOSITIO {
	lvl 5
	whenStatusInactive EFST_POSTDELAY
	target_whenStatusInactive EFST_IMPOSITIO
	sp > 10%
	target_hp > 1
}

partySkill PR_GLORIA {
	lvl 5
	whenStatusInactive EFST_POSTDELAY
	target_whenStatusInactive EFST_GLORIA
	sp > 10%
	target_hp > 1
}

partySkill PR_MAGNIFICAT {
	lvl 5
	whenStatusInactive EFST_POSTDELAY
	target_whenStatusInactive EFST_MAGNIFICAT
	sp > 10%
	target_hp > 1
}

###########################################################   ARCH BISHOP ######################################################################

partySkill PR_MAGNUS {
	target_aggressives > 5
}

useSelf_skill AB_CLEMENTIA {
	lvl 3
	whenStatusInactive EFST_BLESSING
	sp > 10%
}

useSelf_skill AB_CLEMENTIA {
	lvl 3
	whenStatusActive HEALTHSTATE_CURSE
	sp > 10%
}

useSelf_skill AB_CANTO {
	lvl 3
	whenStatusInactive EFST_INC_AGI, EFST_QUAGMIRE
	sp > 10%
}

useSelf_skill AB_RENOVATIO {
	lvl 1
	whenStatusInactive EFST_RENOVATIO
	sp > 10%
}

useSelf_skill HP_ASSUMPTIO {
	lvl 5
	whenStatusInactive EFST_ASSUMPTIO
	sp > 10%
}

useSelf_skill AL_HEAL {
	lvl 10
	hp < 50%
}

Karna
Noob
Noob
Posts: 18
Joined: 30 Nov 2011, 12:01
Noob?: No

Re: Ressurect party skill

#4 Post by Karna »

Try This,

Code: Select all

partySkill ALL_RESURRECTION {
	lvl 4
	dist
	hp
	sp
	whenStatusActive
	whenStatusInactive
	target
	target_hp
	target_isJob
	target_isNotJob
	target_whenStatusActive
	target_whenStatusInactive
	target_aggressives
	target_monsters
	target_dead 1
	target_timeout 11
	inInventory
}

Locked