11 lines
343 B
Plaintext
Raw Normal View History

2025-04-03 11:24:16 -04:00
void main()
{
object oPC = GetPCSpeaker();
SetLocalInt(oPC, "dt_num", 21);
SetDeity(oPC, "Tyr");
string sDes = "Germanic god of war";
effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC);
FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC);
}