Question about "OgreBotAtom a_MoveToCampSpot" and "OgreBotAtom atom_OgreBotChangeCampSpotForWho"

mistahmikey

Active Member
Having some issues at times with toons not moving like I expect them to. Without going into much detail atm, I have a simple question (I hope)

a_MoveToCampSpot accepts options to set the min and max distance the toon is allowed to move about the CS. The max defaults to 125. I have situations where I need to move a toon greater than the 125 distance, so I use the a_MoveToCampSpot max parameter to set an appropriate distance.

Subsequently, when I actually need to move the toon, I use atom_OgreBotChangeCampSpotForWho. There are no parameters available to set the min/max "roam" distance like there are for a_MoveToCampSpot. Is there any chance that, by issuing this command, the min/max values get set back to their default values?
 

Kannkor

Ogre
Having some issues at times with toons not moving like I expect them to. Without going into much detail atm, I have a simple question (I hope)

a_MoveToCampSpot accepts options to set the min and max distance the toon is allowed to move about the CS. The max defaults to 125. I have situations where I need to move a toon greater than the 125 distance, so I use the a_MoveToCampSpot max parameter to set an appropriate distance.

Subsequently, when I actually need to move the toon, I use atom_OgreBotChangeCampSpotForWho. There are no parameters available to set the min/max "roam" distance like there are for a_MoveToCampSpot. Is there any chance that, by issuing this command, the min/max values get set back to their default values?
atom_OgreBotChangeCampSpotForWho -> just changes the actual campspot if it's for that toon. Doesn't touch the min/max range.

If you want, give me an example of exactly what you're putting into the buttons and I can test it out.
However, you should be fine doing something of the following:
a_MoveToCampSpot[all,2,300]
Then
atom_OgreBotChangeCampSpotForWho[all,20,10,30]
(20,10,30 being a random xyz). Note: You should never ever have any of the numbers be 0. IE: [0,10,30] would fail. However, 0.1 is acceptable.
As long as our new 20,10,30 is within 300m of the original campspot that was set, they should move.
 

mistahmikey

Active Member
Ok, that is what I am doing, just wanted to make sure I understood how it is supposed to work sure I try to figure out exactly what is going on. Thanks for the quick response :)
 
Top Bottom