2026/03/05 Update

Added Dynamic conversations.
Added more files from original Background system for reference.
This commit is contained in:
Jaysyn904
2026-03-05 09:32:13 -05:00
parent 4da556c31a
commit 752f53292b
133 changed files with 12285 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
#include "inc_dynconv"
void main()
{
object oUser = GetLastUsedBy();
if (!GetIsObjectValid(oUser)) return;
SpeakString("I was last used by: " + GetName(oUser));
if (IsInConversation(oUser)) {
SpeakString("DEBUG: PC already in conversation; aborting dynconv start.");
return;
}
SpeakString("DEBUG: Starting bg_profs_cv for " + GetName(oUser));
StartDynamicConversation("bg_profs_cv", oUser);
}