15 lines
403 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
void main()
{
if (GetTag(GetItemActivated()) == "wings")
{
object oPC = GetItemActivator();
int nRealMe = GetAppearanceType(oPC);
string sRealApp= "realApp";
location lTarget = GetLocation(oPC);
SetLocalInt(oPC, sRealApp, nRealMe + 1);
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SUMMONDRAGON),lTarget);
SetCreatureAppearanceType(oPC,425);
}
}