14 lines
229 B
Plaintext
14 lines
229 B
Plaintext
|
#include "rd_misc"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
int iStep;
|
||
|
int iSteps;
|
||
|
|
||
|
iStep = GetLocalInt(GetPCSpeaker(),"QuestStep");
|
||
|
iSteps = GetLocalInt(GetPCSpeaker(),"QuestSteps");
|
||
|
|
||
|
if (iStep == iSteps)
|
||
|
SetPartyInt(GetPCSpeaker(),"QuestDone",1);
|
||
|
}
|