kamirie wrote:After the tk killed a mob , it will cast tk mission skill. How can I capture the event result
CODE: SELECT ALL
[TaeKwon Mission] Target Monster : Poporing (0%)
Refer here:
http://forums.openkore.com/viewtopic.ph ... 00#p281000
kamirie wrote:Or is there any other/efficient way to the tk missions?
Hmm, I already deleted all macros collection including mine.
But, the idea I used before was simply using command exp monster after target died.
The trigger is : Target died > exp monster > 100 will trigger TK mission and command exp reset.
Here's the example:
Code: Select all
automacro Dead {
console /Target died/
call {
do exp monster
}
}
automacro 100 {
console /<monster name><da space in consolee><100>/
call {
do 493
do exp reset
}
}
This will reduce the time to kill 100 by not casting TK mission every each kill.
Some problem that might happen is when Killing Steal, DC, or lag or something, da kill count is 100 but the real mission is not completed, just remove exp reset by another trigger or something.
I don't keep old macros coz I have fun re-learning everything again and again and improving mine each time I wrote new one