11 lines
407 B
Plaintext
11 lines
407 B
Plaintext
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
// q_bounty_active - Return TRUE if the PC speaker is on an active bounty quest.
|
||
|
// By Deva B. Winblood. September, 30th, 2008
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
if (GetLocalInt(GetPCSpeaker(),"nBountyQuest")>0) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|