HoS_PRC8/_mod/_module/nss/cv_hmc_mounted.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

16 lines
479 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// cv_hmc_mounted - Check to see if mounted
// By Deva B. Winblood. November 14th, 2008.
////////////////////////////////////////////////////////////////////////////////
#include "x3_inc_horse"
int StartingConditional()
{
object oPC=GetPCSpeaker();
int nParm=GetLocalInt(oPC,"nParm");
SetLocalInt(oPC,"nMode",nParm);
if (HorseGetIsMounted(oPC)) return TRUE;
return FALSE;
}