generated from Jaysyn/ModuleTemplate
14 lines
312 B
Plaintext
14 lines
312 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Check if the caller object is male.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = (GetGender(OBJECT_SELF)== GENDER_MALE);
|
|
return iResult;
|
|
}
|