Clashing Spiral never gets used

International

Moderator: Moderators

UnFoRgIveN
Noob
Noob
Posts: 3
Joined: 12 Aug 2011, 23:35
Noob?: Yes

Clashing Spiral never gets used

#1 Post by UnFoRgIveN »

I'm not quite sure what I'm doing wrong in my code because I followed the basic outline as shown in the manual. It should theoretically work, but it never gets used. Any ideas?

Code: Select all

attackSkillSlot Spiral Pierce{
   lvl 5
   sp > 25
   monsters Raydric, Raydric Archer, Magmaring, Drosera
   maxUses 1
   inLockOnly 1
}
silentblue1987
Human
Human
Posts: 46
Joined: 07 Apr 2010, 12:11
Noob?: Yes

Re: Clashing Spiral never gets used

#2 Post by silentblue1987 »

Try this one out, for some reason attackskillslot doesn't work perfectly but monsterSkill works every time.
Also, using the "EFST" style names works much better since IRO has different names than other servers and the EFST names are all the same.
Ex:
IRO = LK_SPIRALPIERCE#Clashing_Spiral#
KRO = LK_SPIRALPIERCE#스파이럴_피어스#
Notice the same EFST name? :ugeek:

Code: Select all

monsterSkill LK_SPIRALPIERCE {
	lvl 5
	dist < 2
	sp > 25
	monsters Raydric, Raydric Archer, Magmaring, Drosera
	maxUses 1
	inLockOnly 1
}
Make sure you have the latest SVN to ensure you can use the EFST names, previous versions couldn't.
UnFoRgIveN
Noob
Noob
Posts: 3
Joined: 12 Aug 2011, 23:35
Noob?: Yes

Re: Clashing Spiral never gets used

#3 Post by UnFoRgIveN »

Thanks, I got it to work. I just changed the name to Clashing Spiral so it works. Strange how the attack names get changed around so easily /heh. Thanks for your help :)