Alangara_PRC8/_module/nss/cordring2.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

28 lines
587 B
Plaintext

#include "mn_unitele"
const string DESTINATION = "cordhouse";
void main()
{
object oPC;
oPC = GetItemActivator();
RingTeleport( oPC, DESTINATION );
object oTarget=GetFirstFactionMember(oPC, FALSE);
while (GetIsObjectValid(oTarget))
{
if( TeleportStatus( oTarget ) > MN_TELE_NORESTRICT )
{
FloatingTextStringOnCreature( "Something intereferes in your teleportation of "+GetName( oTarget), oPC, FALSE );
}
else
{
RingTeleport( oTarget, DESTINATION );
oTarget=GetNextFactionMember(oPC, FALSE);
}
}
}