11 lines
351 B
Plaintext
11 lines
351 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
SetLocalInt(oPC, "dt_num", 3);
|
|
SetDeity(oPC, "Ehlonna");
|
|
string sDes = "Goddess of the Woodlands";
|
|
effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC);
|
|
FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC);
|
|
}
|