I have a problem with my 2 character hoping that someone can help me.
1st is my champion I look around online for the config on how to cast Zen.
and my 2nd problem is my wizard, it doesn't cast SG using partyskill config so everytime i got 3-5 monster on my priest i need to go near my wiz just to cast SG.
this is my config on my wiz..
partySkill Storm Gust {
lvl 10
dist 1.5
maxCastTime 0.1
minCastTime 0
hp
sp > 10%
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive
whenFollowing
whenNotGround Storm Gust
whenAllAggressiveNotFrozen 1
spirit
aggressives 1
monsters
notMonsters
stopWhenHit 0
inLockOnly 0
notWhileSitting 0
notInTown 0
timeout 0
disabled 0
manualAI 0
target
target_hp
target_isJob
target_isNotJob
target_whenStatusActive
target_whenStatusInactive
target_aggressives 1
target_monsters
target_timeout 0
target_deltaHp
target_dead 0
inInventory
isSelfSkill 0
}
thanks in advance!!
Need Help with my two Character please!
Moderator: Moderators
-
- Noob
- Posts: 7
- Joined: 02 Apr 2010, 18:23
- Noob?: Yes
-
- Human
- Posts: 46
- Joined: 07 Apr 2010, 12:11
- Noob?: Yes
Re: Need Help with my two Character please!
*found a mistake, edited =P*
party skill blocks tend to be for support spells like blessing, and heal ussually. Try using an attack skill block.
You also mentioned you needed to go near your wizard for it to cast SG.
dist 1.5 <<< melee range, change it to something higher or "dist > 1"
ex:
attackSkillSlot Storm Gust {
lvl 2
dist > 1
maxCastTime 0.1
minCastTime 0
sp > 10
stopWhenHit 1
inLockOnly 1
notInTown 1
whenAllAggressiveNotFrozen 1
aggressives >= 1
}
The only problem i can see with this is openkore only recognizes aggressives if they are targeting YOU, not your party.. I hope you have a phen clip. =P
party skill blocks tend to be for support spells like blessing, and heal ussually. Try using an attack skill block.
You also mentioned you needed to go near your wizard for it to cast SG.
dist 1.5 <<< melee range, change it to something higher or "dist > 1"
ex:
attackSkillSlot Storm Gust {
lvl 2
dist > 1
maxCastTime 0.1
minCastTime 0
sp > 10
stopWhenHit 1
inLockOnly 1
notInTown 1
whenAllAggressiveNotFrozen 1
aggressives >= 1
}
The only problem i can see with this is openkore only recognizes aggressives if they are targeting YOU, not your party.. I hope you have a phen clip. =P
-
- Noob
- Posts: 11
- Joined: 07 May 2010, 06:41
- Noob?: No
- Location: Abbotsford, BC
Re: Need Help with my two Character please!
Aggresives and TargetAggresives will cause Kore to wait until a monster hits not only the caster but the tank as well. Instead try changing your code to this.
atttackSkillSlot Storm Gust {
lvl 10
target_aggressives > 3
sp > 5%
}
Also remember the greater than and less than symbols. >, <
atttackSkillSlot Storm Gust {
lvl 10
target_aggressives > 3
sp > 5%
}
Also remember the greater than and less than symbols. >, <
Man who stands on toilet is high on pot.
-
- Noob
- Posts: 7
- Joined: 02 Apr 2010, 18:23
- Noob?: Yes
Re: Need Help with my two Character please!
Thanks alot it works!