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

22
src/nss/deity_talos.nss Normal file
View File

@@ -0,0 +1,22 @@
//::///////////////////////////////////////////////
//:: FileName BG 1
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: David Novotny
//:: Created On: 10/20/17
//:://////////////////////////////////////////////
#include "NWNX_Creature"
#include "te_afflic_func"
void main()
{
object oPC = GetPCSpeaker();
int iFeat = DEITY_Talos;
/* -- Rearranged to apply at end of CharCreation: LordValinar(12/18/2023) --
NWNX_Creature_AddFeat(oPC,iFeat);
*/
object oItem = GetItemPossessedBy(oPC, "PC_Data_Object");
SetLocalInt(oItem,"CC3",iFeat);
SetLocalInt(oItem,"BG_Select",4);
ActionStartConversation(oPC,"bg_language",TRUE);
}