Shargast_PRC8/_module/Chapter 2/nss/bhhc_any_mounted.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

31 lines
563 B
Plaintext

// Check if any member of the party is mounted
// Author : Proleric
// Modified : 25-Feb-2008
#include "x3_inc_horse"
int StartingConditional()
{
object oPC = GetPCSpeaker();
int i = GetMaxHenchmen();
object oHench = GetHenchman(oPC, i);
object oHorse;
if (HorseGetIsMounted(oPC)) return TRUE;
while (i)
{
if (GetIsObjectValid(oHench))
{
if (!HorseGetIsAMount(oHench))
if (HorseGetIsMounted(oHench)) return TRUE;
}
oHench = GetHenchman(oPC, --i);
}
return FALSE;
}