Homunculus vs potion pitcher, round 7432278932 and counting

International

Moderator: Moderators

silentblue1987
Human
Human
Posts: 46
Joined: 07 Apr 2010, 12:11
Noob?: Yes

Homunculus vs potion pitcher, round 7432278932 and counting

#1 Post by silentblue1987 »

I'm using openkore 2.0.7 and this block doesn't work.

Code: Select all

partySkill Potion Pitcher {
	lvl 2
	target Vanilmirth
	homunculus_hp < 65%
	timeout 0
	inLockOnly 1
	manualAI 2
}
My vanilmirth just takes a beating, and the command "sp 231 Vanilmirth 2" replies with "the player doesnt exist."
So i use the pl (players list) command to see what shows up...........................No Vanilmirth.
Next I use the ml (monster list) command................................................No Vanilmirth.
Last I use the sll (slave list) command.................................................Vanilmirth exists.

So i made this block to see if its even detecting the Vanilmirth's hp.

Code: Select all

useSelf_skill Potion Pitcher {
lvl 2
homunculus_hp > 10%
timeout 900
manualAI 2
}
Sure enough it detected the homunculus hp, and minus one orange potion later here i am, typing.

Any ideas on what i could try? or did i miss the command for skills targeted at slaves in the manual?..
Mushroom
Perl Monk
Perl Monk
Posts: 427
Joined: 04 Apr 2008, 14:04
Noob?: No
Location: Brazil

Re: Homunculus vs potion pitcher, round 7432278932 and counting

#2 Post by Mushroom »

Try removing the timeout and manualAI from the useSelf_skill block.
Quit.
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: Homunculus vs potion pitcher, round 7432278932 and counting

#3 Post by EternalHarvest »

partySkill, target @homunculus
silentblue1987
Human
Human
Posts: 46
Joined: 07 Apr 2010, 12:11
Noob?: Yes

Re: Homunculus vs potion pitcher, round 7432278932 and counting

#4 Post by silentblue1987 »

@mushroom, timeout was so i didn't waste any pots while testing and manualAI was so the block would still activate in manual mode. note: it was a test block =P

@EternalHarvest, great idea using an expression in case the name didnt work.. too bad it still doesnt work ><

Current Block after suggestion:

Code: Select all

partySkill Potion Pitcher {
	lvl 2
	target @homunculus
	homunculus_hp < 65%
	timeout 1
	inLockOnly 1
	manualAI 2
}
silentblue1987
Human
Human
Posts: 46
Joined: 07 Apr 2010, 12:11
Noob?: Yes

Re: Homunculus vs potion pitcher, round 7432278932 and counting

#5 Post by silentblue1987 »

Wow this problems been going on for a while now >_>

http://forums.openkore.com/viewtopic.ph ... cher#p9179

I'll try getting the SVN and see if it fixes it.