equipAuto problem.

For everything NOT server specific support. Do NOT ask for connectivity help here!.

Moderator: Moderators

Nalani
Human
Human
Posts: 20
Joined: 31 Mar 2012, 10:09
Noob?: Yes

equipAuto problem.

#1 Post by Nalani »

Hello again.
At the outset I will say that my goal is to achieve some kind of:

normal equip set*>skill used by player(xkore)>atk boost item or set of items>normal equip set*

*Same items

I found on OK Forum and OK Wiki some tips, but my pathetic script still don't want do work.
My skills do not allow to use a macro yet, but if possible please make me know if this is possible only through by using macro and give me a little template or something if possible.

Code: Select all

equipAuto Bloodied Shackle Ball { <--- item to change during the skill use
def Medalion <--- change back after Sonic Blow (this line "def" i found in web i have no idea how it work for someone)
monsters
skills Sonic Blow
whileSitting 
onTeleport 
hp
sp
onAction
whenStatusActive
whenStatusInactive
whenFollowing
spirit
aggressives
stopWhenHit 
inLockOnly 
notWhileSitting 
notInTown 
timeout 
disabled 
inInventory_name
inInventory_qty
}
I also check many variants.(Im a newbie but i check every possible manuals, our Kore wiki too.There is so little info about equipAuto...)

Code: Select all

equipAuto {
rightAccessory Bloodied Shackle Ball <--- item to change during the skill use
def Medalion <--- change back after Sonic Blow (this line "def" i found in web i have no idea how it work for someone)
monsters
skills Sonic Blow
whileSitting 
onTeleport 
hp
sp
onAction
whenStatusActive
whenStatusInactive
whenFollowing
spirit
aggressives
stopWhenHit 
inLockOnly 
notWhileSitting 
notInTown 
timeout 
disabled 
inInventory_name
inInventory_qty
}
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: equipAuto problem.

#2 Post by EternalHarvest »

There is no "def" or "skills" in that block. There is useSelf_skill.equip, but it won't work for skills used via XKore.

It can probably be implemented by hooking into corresponding packet from the client while it's parsed, like when mangling packets.
Nalani
Human
Human
Posts: 20
Joined: 31 Mar 2012, 10:09
Noob?: Yes

Re: equipAuto problem.

#3 Post by Nalani »

is this possible to make it with a macro included do eq etc?