UW2_PRC8/_module/nss/sfcs_abort_conv.nss
Jaysyn904 5197ad9a4d Initial upload
Initial upload
2023-09-25 20:24:01 -04:00

15 lines
327 B
Plaintext

#include "sfcs_functs"
void main()
{
// If the conversation has been aborted we need to rest all local vars
if (!GetLocalInt(OBJECT_SELF, "NOT_ABORTED"))
{
ResetVars();
// SendMessageToPC(GetFirstPC(), "ABORTED!!!!");
}
else
{
DeleteLocalInt(OBJECT_SELF, "NOT_ABORTED");
}
}