Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

38 lines
787 B
Plaintext

// Release horses owned by the caller.
// Author : Proleric
// Modified : 22-Apr-2008
// Any horses which are currently mounted will not be released.
#include "x3_inc_horse"
void bh_release(object oHorse);
void main()
{
object oPC = OBJECT_SELF;
int i = GetMaxHenchmen();
object oHench = GetHenchman(oPC, i);
object oHorse;
while (i)
{
if (GetIsObjectValid(oHench))
{
if (HorseGetIsAMount(oHench))
DelayCommand(0.5, bh_release(oHench));
}
oHench = GetHenchman(oPC, --i);
}
}
// This is a wrapper for HorseRemoveOwner that clears the action queue, in case the horse is still following.
void bh_release(object oHorse)
{
HorseRemoveOwner(oHorse);
AssignCommand(oHorse, ClearAllActions());
}