Fixed some convos around starting city Added NPC guard for Anna quest Added prc switch constants
13 lines
431 B
Plaintext
13 lines
431 B
Plaintext
#include "nw_i0_tool"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
effect eBless = SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_ABILITY_DECREASE));
|
|
effect eVis = EffectVisualEffect(VFX_IMP_AURA_HOLY);
|
|
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oPC);
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eBless, oPC, 3600.0);
|
|
RewardPartyXP(10000,oPC,FALSE);
|
|
//AdjustAlignment(oPC, ALIGNMENT_GOOD, 50);
|
|
}
|