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

28 lines
377 B
Plaintext

#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);
}