Files
FR_Backgrounds/src/nss/deity_amaun.nss
Jaysyn904 752f53292b 2026/03/05 Update
Added Dynamic conversations.
Added more files from original Background system for reference.
2026-03-05 09:32:13 -05:00

23 lines
730 B
Plaintext

//::///////////////////////////////////////////////
//:: 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_Amaunator;
/* -- 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);
}