Hi everyone,
Thanks for the help. I would want to know why isnt my priest bot not able to cast spells. I even did it manually and the error displayed was unable to cast skill blessing, assumption after 3 tries. It doesnt work for any skills for the priest. It however, works for my high wizard. Any answers?
Unable to cast skill after 3 tries.
Moderator: Moderators
-
- Noob
- Posts: 2
- Joined: 12 Apr 2013, 07:36
- Noob?: Yes
-
- Noob
- Posts: 7
- Joined: 27 Feb 2011, 16:13
- Noob?: Yes
Re: Unable to cast skill after 3 tries.
Are you using it with partyskill?
-
- Noob
- Posts: 2
- Joined: 12 Apr 2013, 07:36
- Noob?: Yes
Re: Unable to cast skill after 3 tries.
hi there. thanks for the reply. Yes i am using it with party skill. Ive also tried using it manually by typing ss, sp in the console. But all I get is that it fails to cast assumption after 3 tries or any other skill for that matter.
-
- Plain Yogurt
- Posts: 58
- Joined: 18 Sep 2009, 01:28
- Noob?: Yes
Re: Unable to cast skill after 3 tries.
I'm in iro and my priest can cast blessing heal w/e, last checked today, recheck your skill name for your iro/ non iro server, check if you have learned the prerequisite skills, and the related stuffs.
-
- Plain Yogurt
- Posts: 58
- Joined: 19 May 2011, 00:40
- Noob?: Yes
Re: Unable to cast skill after 3 tries.
Do the skill you use open a selection window (Like teleport and pharmacy where you need to press "enter key" after using skill to make a selection)? If so, then you need to send certain packets to make the selection (since for some reason the selection doesnt show up/cant be made in the console.
Here is an example code from a pharmacy macro:
Notice the line do send 8E 01 CA 03 00 00 00 00 00 00
It instructs openkore to send the above packet to be able to accomplish the skill.
IDK how you get the packets, but im guessing you use WPE.
Here is an example code from a pharmacy macro:
Code: Select all
call {
do ss 228 10
do send 8E 01 CA 03 00 00 00 00 00 00
pause 0.5
release potzMakerAlcohol
}
It instructs openkore to send the above packet to be able to accomplish the skill.
IDK how you get the packets, but im guessing you use WPE.
-
- Moderators
- Posts: 208
- Joined: 01 Feb 2010, 17:37
- Noob?: No
- Location: Brazil - MG
Re: Unable to cast skill after 3 tries.
Update your Openkore folder to the latest revision. This was already fixed.
-
- Noob
- Posts: 1
- Joined: 06 Jun 2012, 10:25
- Noob?: Yes
Re: Unable to cast skill after 3 tries.
i've tried updating but still this problem occur, any other idea?
-
- Noob
- Posts: 9
- Joined: 21 Apr 2013, 05:02
- Noob?: No
Re: Unable to cast skill after 3 tries.
Here is an example of two of my partyskills...hopefully it can help you with settings. These work fine for me.
partySkill Resurrection {
lvl 4
dist
maxCastTime 0
minCastTime 0
hp
sp
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive
whenFollowing 0
spirit
amuletType
aggressives
monsters
notMonsters
monstersCount
stopWhenHit 1
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
target_monsters
target_timeout 0
target_deltaHp
target_dead 1
inInventory
isSelfSkill 0
}
partySkill AL_INCAGI {
lvl 10
dist
maxCastTime 0
minCastTime 0
hp
sp
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive
whenFollowing 0
spirit
amuletType
aggressives
monsters
notMonsters
monstersCount
stopWhenHit 1
inLockOnly 0
notWhileSitting 1
notInTown 0
timeout 5
disabled 0
manualAI 0
target
target_hp
target_isJob
target_isNotJob
target_whenStatusActive
target_whenStatusInactive EFST_INC_AGI
target_aggressives
target_monsters
target_timeout 5
target_deltaHp
target_dead 0
inInventory
isSelfSkill 0
}
partySkill Resurrection {
lvl 4
dist
maxCastTime 0
minCastTime 0
hp
sp
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive
whenFollowing 0
spirit
amuletType
aggressives
monsters
notMonsters
monstersCount
stopWhenHit 1
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
target_monsters
target_timeout 0
target_deltaHp
target_dead 1
inInventory
isSelfSkill 0
}
partySkill AL_INCAGI {
lvl 10
dist
maxCastTime 0
minCastTime 0
hp
sp
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive
whenFollowing 0
spirit
amuletType
aggressives
monsters
notMonsters
monstersCount
stopWhenHit 1
inLockOnly 0
notWhileSitting 1
notInTown 0
timeout 5
disabled 0
manualAI 0
target
target_hp
target_isJob
target_isNotJob
target_whenStatusActive
target_whenStatusInactive EFST_INC_AGI
target_aggressives
target_monsters
target_timeout 5
target_deltaHp
target_dead 0
inInventory
isSelfSkill 0
}