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

18 lines
300 B
Plaintext

// Check if caller has a dismounted horse
// Author : Proleric
// Modified : 22-Apr-2008
#include "x3_inc_horse"
int StartingConditional()
{
object oPC = OBJECT_SELF;
int bFound = FALSE;
// if (HorseGetIsMounted(oPC)) return FALSE;
return (GetIsObjectValid(HorseGetHorse(oPC)));
}