14 lines
190 B
Plaintext
14 lines
190 B
Plaintext
#include "rd_questinc"
|
|
|
|
void main()
|
|
{
|
|
object oPC;
|
|
|
|
oPC = GetPCSpeaker();
|
|
|
|
if (GetLocalInt(oPC,"QuestStep") == 0)
|
|
InitiateQuest(oPC,OBJECT_SELF);
|
|
else
|
|
GetNextStep(oPC,OBJECT_SELF);
|
|
}
|