11 lines
342 B
Plaintext
11 lines
342 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
SetLocalInt(oPC, "dt_num", 13);
|
||
|
SetDeity(oPC, "Obad-Hai");
|
||
|
string sDes = "God of Nature";
|
||
|
effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE);
|
||
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC);
|
||
|
FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC);
|
||
|
}
|