Script: q_rid_c_o2
// The Riddle Game (roadmap: riddle-game)
// StartingConditional on answer reply slot 2 (token 6364). Always visible while
// a riddle is on offer; sets THIS slot's option token right before the reply
// renders (see QRID_ShowOpt for why one-token-per-reply).
#include "q_rid_inc"
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (!GetLocalInt(oPC, "Q_RID_ACTIVE")) return FALSE;
if (GetLocalInt(oPC, "Q_RID_IDX") >= QRID_ASKED) return FALSE;
QRID_ShowOpt(oPC, 2);
return TRUE;
}