HoS_PRC8/_mod/_module/nss/cv_hmc_mounted.nss

16 lines
479 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
////////////////////////////////////////////////////////////////////////////////
// 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;
}