15 lines
327 B
Plaintext
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");
|
|
}
|
|
}
|