29 lines
986 B
Plaintext
29 lines
986 B
Plaintext
//This deletes all the records contained in the permanent DB about the quests the PC has done.
|
|
|
|
#include "x0_i0_campaign"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
///////:::The Drow Quests:::://///////
|
|
|
|
//Quests given out and or relating to Captain Marin Siger
|
|
DeleteCampaignDBVariable(oPC, "sha_marin_q1");
|
|
DeleteCampaignDBVariable(oPC, "sha_marin_q2");
|
|
DeleteCampaignDBVariable(oPC, "sha_marin_q3");
|
|
DeleteCampaignDBVariable(oPC, "sha_marin_q4");
|
|
//Quests Given out and or relating to Anya Sellamyn, Lady of the Moon
|
|
DeleteCampaignDBVariable(oPC, "sha_ladym_q1");
|
|
DeleteCampaignDBVariable(oPC, "sha_ladym_q2");
|
|
DeleteCampaignDBVariable(oPC, "sha_ladym_q3");
|
|
DeleteCampaignDBVariable(oPC, "sha_ladym_q4");
|
|
|
|
//Quests relating to Hjalmar
|
|
DeleteCampaignDBVariable(oPC, "sha_hjalmar_q1");
|
|
DeleteCampaignDBVariable(oPC, "sha_hjalmar_q2");
|
|
|
|
//Quests relating to Zolad.
|
|
DeleteCampaignDBVariable(oPC, "sha_zolad_q1");
|
|
|
|
}
|