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

19 lines
374 B
Plaintext

#include "qst_include"
void main()
{
object oWP;
int iMQ;
int iMQNumber;
iMQ=GetLocalInt(GetModule(),"MainQuest");
iMQNumber=GetLocalInt(GetModule(),"MQNumber");
if (iMQ==98)
oWP=GetObjectByTag("MainQuest_F");
else
oWP=GetObjectByTag("WP_MQ" + IntToString(iMQNumber) + "_" + IntToString(iMQ+1));
AssignCommand(GetPCSpeaker(),JumpToLocation(GetLocation(oWP)));
}