PWE_PRC8/_module/nss/leadercrystal.nss

12 lines
403 B
Plaintext
Raw Permalink Normal View History

2025-04-03 10:29:41 -04:00
void main()
{ object oPC = GetItemActivator();
object oItem = GetItemActivated();
if (GetTag(oItem) == "leadercrystal")//not needed but hey.
{
effect eFly;
eFly = EffectDisappear();
DelayCommand(1.0,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFly, oPC));
DelayCommand(10.5, AssignCommand(oPC, JumpToObject(GetFactionLeader(oPC))));
}
}