Revive Choices in OgreMCP

blackee

Senior Member
How do I choose a certain spot to revive? Specifically, when I fight Dozeker, I can get him down with a small degree of Zerging at the end. So, I want to revive at the top choice in the revive window, but when I select revive in OgreMCP it chooses the bottom choice.

Any ideas?
 

Kannkor

Ogre
How do I choose a certain spot to revive? Specifically, when I fight Dozeker, I can get him down with a small degree of Zerging at the end. So, I want to revive at the top choice in the revive window, but when I select revive in OgreMCP it chooses the bottom choice.

Any ideas?
Currently not possible
 

pr517

Active Member
I don't get it. Why not just make a button that revives at the closest revive point? The list is populated in order of farthest to closest (bottom to top) place, starting at number 0. If you ever run across a place that has more than five, just increase the number. Therefore:

Code:
   for ( idx:Set[4] ; ${idx} >= 0 ; idx:Dec )
   {
      relay ${sAudience} -noredirect "eq2execute select_junction ${idx}"
      wait 2
   }
 

Kannkor

Ogre
I don't get it. Why not just make a button that revives at the closest revive point? The list is populated in order of farthest to closest (bottom to top) place, starting at number 0. If you ever run across a place that has more than five, just increase the number. Therefore:

Code:
   for ( idx:Set[4] ; ${idx} >= 0 ; idx:Dec )
   {
      relay ${sAudience} -noredirect "eq2execute select_junction ${idx}"
      wait 2
   }
hehe, I didn't mean it's not possible to do it, just meant it's not possible with the button how it exists.
 
Top Bottom