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

47 lines
1.4 KiB
Plaintext

#include "qst_include"
void main()
{
object oPC;
string sDescription;
string sMobName;
string sTarget;
string sLocation;
string sQS;
string sItem;
string sNPC;
string sWeapon;
int iStep;
iStep=GetLocalInt(OBJECT_SELF,"QuestStep");
if (iStep<1)
iStep=1;
sQS="QuestStep" + IntToString(iStep);
sMobName=GetLocalString(OBJECT_SELF,sQS + "MobName");
sTarget=GetLocalString(OBJECT_SELF,sQS + "Mob");
sLocation=GetLocalString(OBJECT_SELF,sQS + "Location");
sItem=GetLocalString(OBJECT_SELF,sQS + "ItemName");
sNPC=GetLocalString(OBJECT_SELF,sQS + "NPCName");
oPC=GetPCSpeaker();
object oPartyMember = GetFirstFactionMember(oPC, TRUE);
while (GetIsObjectValid(oPartyMember) == TRUE)
{
SetLocalString(oPartyMember,"QuestNPC",GetTag(OBJECT_SELF));
SetLocalString(oPartyMember,"QuestName","Cleansing the Land");
SetLocalInt(oPartyMember,"OnQuest",1);
oPartyMember = GetNextFactionMember(oPC, TRUE);
}
SetLocalInt(OBJECT_SELF,"QuestStep",1);
SetLocalInt(OBJECT_SELF,"QuestStep1Type",2);
sDescription="I have promised " + GetName(OBJECT_SELF) + " I would take care of some " + sTarget + " located " + sLocation + ".";
SetDescription(OBJECT_SELF,sDescription);
SetStepDone(OBJECT_SELF,"I have taken care of the " + sTarget + ". I should return to " + GetName(OBJECT_SELF) + " " + GetLocalString(OBJECT_SELF,"Location") + ".");
SetJournalEntry(oPC,sDescription);
SetLocalInt(OBJECT_SELF,"QuestAccepted",1);
}