Using Elemental Converters
Moderator: Moderators
-
- Noob
- Posts: 3
- Joined: 06 Jul 2010, 02:30
- Noob?: Yes
Using Elemental Converters
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!
-
- Perl Monk
- Posts: 427
- Joined: 04 Apr 2008, 14:04
- Noob?: No
- Location: Brazil
-
- Noob
- Posts: 3
- Joined: 06 Jul 2010, 02:30
- Noob?: Yes
Re: Using Elemental Converters
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.
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.
-
- Spam Generator
- Posts: 499
- Joined: 04 Apr 2008, 09:30
- Noob?: No
- Location: Melbourne, City of beer and awful sushis
Re: Using Elemental Converters
I have not encountered your situation before but you can always use:
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).
Code: Select all
useSelf_item Frost Elemental Converter {
timeout xxx
onAction Attack
}
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.
-
- Noob
- Posts: 3
- Joined: 06 Jul 2010, 02:30
- Noob?: Yes
Re: Using Elemental Converters
Thanks man! It worked.