gathel
New Member
- Joined
- Feb 14, 2015
- Messages
- 26
I'm trying to write a bit of code that would allow me to place a pet, and re-place the pet back there when it gets knocked away.
I can check where the pet is, I assume, by doing something like this:
I can't seem to find a way to do something like this:
How can I place the pet somewhere? Thanks!
I can check where the pet is, I assume, by doing something like this:
Code:
var pet = ff14bot.Managers.GameObjectManager.CurrentPet;
if (pet == null)
return;
// use pet.Location
I can't seem to find a way to do something like this:
Code:
ff14bot.Objects.Pet.DoAction("Place", location);
// Pet.DoActionLocation("spell", location);
How can I place the pet somewhere? Thanks!