For Dev.
Please note that the dialogue with Khelara about the reward takes place before the reward is actually given by U69.
• This condition is not enough in 625_interact_khelara:
if GAME.questSys.isActive('QID_CONSPIRACY_SUCCESS') and not "appreciation_abydos" in khelara.done and GAME.money > 10000000:
Need add: "reward_talk" in u_69.done
Result:
if GAME.questSys.isActive('QID_CONSPIRACY_SUCCESS') and not "appreciation_abydos" in khelara.done and "reward_talk" in u_69.done and GAME.money > 10000000:
• It's also necessary to add int to the condition:
if not khelara.hasDoneToday("tipped_dancing"):
call fp_notify(khelara, capValue(int(amount / 1000), 1, 2)) from _call_fp_notify_12
so that the result is +1 or +2, not +1.0 or +2.0.