31 lines
647 B
Plaintext
31 lines
647 B
Plaintext
|
#include "rd_questinc"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC;
|
||
|
object oBoss;
|
||
|
int iVariance;
|
||
|
string sTokenLine;
|
||
|
|
||
|
oPC = GetPCSpeaker();
|
||
|
|
||
|
SetPartyInt(oPC,"QuestStep",2);
|
||
|
|
||
|
SetCustomToken(111, "");
|
||
|
SetCustomToken(112, "");
|
||
|
SetCustomToken(113, "");
|
||
|
|
||
|
SetToken(oPC,OBJECT_SELF,103,GetName(OBJECT_SELF));
|
||
|
|
||
|
oBoss = GetQuestCamp(oPC,OBJECT_SELF,"slaver");
|
||
|
GetPrisoners(oBoss,11);
|
||
|
|
||
|
sTokenLine = "I need to eliminate some slavers located " + GetToken(102) + ".";
|
||
|
sTokenLine = FixTokenLine(sTokenLine,"REPEAT");
|
||
|
SetToken(oPC,OBJECT_SELF,111,sTokenLine);
|
||
|
|
||
|
RemoveJournalQuestEntry("jDelivery",oPC);
|
||
|
RemoveJournalQuestEntry("jCamp",oPC);
|
||
|
AddJournalQuestEntry("jCamp",1,oPC);
|
||
|
}
|