27 lines
751 B
Plaintext
27 lines
751 B
Plaintext
//:://////////////////////////////////////////////////
|
|
//:: X0_D2_HEN_FIRED
|
|
//:: Copyright (c) 2002 Floodgate Entertainment
|
|
//:://////////////////////////////////////////////////
|
|
/*
|
|
Returns TRUE if the player has previously used this
|
|
henchman but had fired him/her.
|
|
*/
|
|
//:://////////////////////////////////////////////////
|
|
//:: Created By: Naomi Novik
|
|
//:: Created On: 09/13/2002
|
|
//:://////////////////////////////////////////////////
|
|
|
|
#include "x0_i0_henchman"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oHench = GetHenchman(GetPCSpeaker());
|
|
string sHench = GetResRef (oHench);
|
|
// int nInt = GetCampaignDBInt (oPC, sHench);
|
|
|
|
if (GetCampaignDBInt (oPC, sHench) == 1)
|
|
return TRUE;
|
|
return FALSE;
|
|
}
|