generated from Jaysyn/ModuleTemplate
2025/12/25 Update
Hooked up new GUI module event. Updated merge 2DAs. Updated PRC8 includes. Updated nasher.cfg.
This commit is contained in:
@@ -4,12 +4,15 @@
|
||||
//:://////////////////////////////////////////////
|
||||
/** @file
|
||||
|
||||
|
||||
|
||||
@author Primogenitor
|
||||
@date 2005.09.23 - Rebuilt the system - Ornedan
|
||||
*/
|
||||
//:://////////////////////////////////////////////
|
||||
//:://////////////////////////////////////////////
|
||||
|
||||
//PRC8 Token pre-fix = 161838
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
/* Constant definitions */
|
||||
@@ -37,11 +40,11 @@ const int DYNCONV_TOKEN_PREV = 161838113;
|
||||
const int DYNCONV_MIN_TOKEN = 16183899;
|
||||
const int DYNCONV_MAX_TOKEN = 161838113;
|
||||
|
||||
const int DYNCONV_STRREF_PLEASE_WAIT = 16824202; // "Please wait"
|
||||
const int DYNCONV_STRREF_PREVIOUS = 16824203; // "Previous"
|
||||
const int DYNCONV_STRREF_NEXT = 16824204; // "Next"
|
||||
const int DYNCONV_STRREF_ABORT_CONVO = 16824212; // "Abort"
|
||||
const int DYNCONV_STRREF_EXIT_CONVO = 16183878; // "Exit"
|
||||
const int DYNCONV_STRREF_PLEASE_WAIT = 16824202; // "Please wait"
|
||||
const int DYNCONV_STRREF_PREVIOUS = 16824203; // "Previous"
|
||||
const int DYNCONV_STRREF_NEXT = 16824204; // "Next"
|
||||
const int DYNCONV_STRREF_ABORT_CONVO = 16824212; // "Abort"
|
||||
const int DYNCONV_STRREF_EXIT_CONVO = 78; // "Exit"
|
||||
|
||||
const string DYNCONV_SCRIPT = "DynConv_Script";
|
||||
const string DYNCONV_VARIABLE = "DynConv_Var";
|
||||
@@ -475,9 +478,28 @@ void _DynConvInternal_ExitedConvo(object oPC, int bAbort)
|
||||
DeleteLocalInt(oPC, DYNCONV_STAGE);
|
||||
DeleteLocalString(oPC, DYNCONV_SCRIPT);
|
||||
DeleteLocalString(oPC, "DynConv_HeaderText");
|
||||
int i;
|
||||
for(i = DYNCONV_MIN_TOKEN; i <= DYNCONV_MAX_TOKEN; i++)
|
||||
DeleteLocalString(oPC, GetTokenIDString(i));
|
||||
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_HEADER));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_0));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_1));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_2));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_3));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_4));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_5));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_6));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_7));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_8));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_REPLY_9));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_EXIT));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_WAIT));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_NEXT));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_TOKEN_PREV));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_MIN_TOKEN));
|
||||
DeleteLocalString(oPC, GetTokenIDString(DYNCONV_MAX_TOKEN));
|
||||
|
||||
//int i;
|
||||
//for(i = DYNCONV_MIN_TOKEN; i <= DYNCONV_MAX_TOKEN; i++)
|
||||
//DeleteLocalString(oPC, GetTokenIDString(i));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user