EN6_PRC8/_module/nss/qdb_addnew_step.nss

28 lines
377 B
Plaintext
Raw Permalink Normal View History

#include "qdb_include"
void main()
{
string sQuest;
int iType;
int iStep;
iStep=GetStepNumber()+1;
SetStepNumber(iStep);
iType=GetStepInt("Type");
while (iType>0)
{
iStep++;
SetStepNumber(iStep);
iType=GetStepInt("Type");
}
SetStepInt("Type",1);
SetStepInt("NPCType",1);
SetQuestInt("Steps",iStep);
sQuest=GetStepInfo();
SetCustomToken(100,sQuest);
}