12 lines
300 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
#include "x3_inc_horse"
int StartingConditional()
{
object oPC=GetPCSpeaker();
object oHorse=HorseGetMyHorse(oPC);
int nTail=GetCreatureTailType(oHorse);
if (GetLocalInt(oHorse,"bDBW_HORSE")==nTail) return TRUE;
ExecuteScript("cv_hmc_notenough",OBJECT_SELF);
return FALSE;
}