16 lines
479 B
Plaintext
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;
|
|
}
|