EN6_PRC8/_module/nss/en5_i_storeq.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

29 lines
845 B
Plaintext

#include "qst_include"
void main()
{
//object oQuestNPC;
object oPC;
oPC=GetPCSpeaker();
if (GetLocalInt(oPC,"OnQuest") > 0)
{
if (GetLocalInt(oPC,"QuestStored") == 0)
{
SetLocalString(oPC,"STORE_QuestNPC",GetLocalString(oPC,"QuestNPC"));
SetLocalString(oPC,"STORE_QuestName",GetLocalString(oPC,"QuestName"));
SetLocalString(oPC,"STORE_QuestTarget",GetLocalString(oPC,"QuestTarget"));
SetLocalString(oPC,"STORE_JournalDesc",GetLocalString(oPC,"QuestJournalDesc"));
SetLocalInt(oPC,"QuestStored",1);
SetPartyVariables(oPC);
AddJournalQuestEntry("jQuest",20,oPC);
} else {
SendMessageToPC(GetPCSpeaker(),"Cannot store quest. There is already a quest stored.");
}
} else {
SendMessageToPC(GetPCSpeaker(),"You are not on a quest.");
}
}