Using Elemental Converters

International

Moderator: Moderators

jjjhh
Noob
Noob
Posts: 3
Joined: 06 Jul 2010, 02:30
Noob?: Yes

Using Elemental Converters

#1 Post by jjjhh »

Hello. Could someone give me a suggestion on how to have your bot use an elemental converter (ice) every 3 minutes? I tried playing with 'whenStatusInactive' but no luck. I don't know what status change you get when use converters. Any help will be appreciated. Thanks!
Mushroom
Perl Monk
Perl Monk
Posts: 427
Joined: 04 Apr 2008, 14:04
Noob?: No
Location: Brazil

Re: Using Elemental Converters

#2 Post by Mushroom »

Quit.
jjjhh
Noob
Noob
Posts: 3
Joined: 06 Jul 2010, 02:30
Noob?: Yes

Re: Using Elemental Converters

#3 Post by jjjhh »

Thanks but could you give me more? Because like I said, I already tried playing with 'whenStatusInactive' but I can't figure out what to add....


useSelf_item Frost Elemental Converter {
whenStatusInactive [IN HERE]
inLockOnly 1
notWhileSitting 1
}

Since nothing is shown in the console when you use a converter. I tried adding Weapon Enchantment,Enchant Weapon,Elemental Converter, and Frost. All didn't work. I just ended up wasting 30 converters. I hope you could help me more.
Cozzie
Spam Generator
Spam Generator
Posts: 499
Joined: 04 Apr 2008, 09:30
Noob?: No
Location: Melbourne, City of beer and awful sushis

Re: Using Elemental Converters

#4 Post by Cozzie »

I have not encountered your situation before but you can always use:

Code: Select all

useSelf_item Frost Elemental Converter {
timeout xxx
onAction Attack
}
with xxx the time in seconds the converters last which is 180 is it not?

I also took off inLockOnly and notWhileSitting and replace it with onAction Attack as it is most cost effective usage method which also works on other maps (eg: responding to attacks outside lockmap).
Make Openkore Awesome. Join the team.
jjjhh
Noob
Noob
Posts: 3
Joined: 06 Jul 2010, 02:30
Noob?: Yes

Re: Using Elemental Converters

#5 Post by jjjhh »

Thanks man! It worked.