( FIXED ) Summons Don't Follow
Re: ( IN PROGRESS ) Summons Don't Follow
Did you set the "toolset destination" of the failing transition to "no transition"?
Somnium (a.k.a. Seeker)
Re: ( IN PROGRESS ) Summons Don't Follow
well i clicked the "none" option.
did you mean i should click "waypoint" and type "no destination" ?
/tara
did you mean i should click "waypoint" and type "no destination" ?
/tara
Re: ( IN PROGRESS ) Summons Don't Follow
I have mailed you my test module. You should be able to see exactly how to set up the transition in that 

Somnium (a.k.a. Seeker)
Re: ( IN PROGRESS ) Summons Don't Follow
Oki seemes i've done it right allthough some of the clicking marker ( trigger areas ) was quite small so I have redrawn the polygons. Will test some more now...
/tara
/tara
Re: ( IN PROGRESS ) Summons Don't Follow
Oki...
Testet it in your module now and it is not working on summons. Not sure if it Works on familiars/companions/henchmen but i tested with bard and summon and it didnt Work, so its the actual script that needs some tweaking...
/tara
Testet it in your module now and it is not working on summons. Not sure if it Works on familiars/companions/henchmen but i tested with bard and summon and it didnt Work, so its the actual script that needs some tweaking...
/tara
Re: ( IN PROGRESS ) Summons Don't Follow
Hmm - that's odd, I have tested it with Wizard familiar and the badger summoned by Monster Summoning 1, and it worked for both. When I click on the transition, the PC moves to the transition, and is then ported to the waypoint, and the familiar and summon appears right beside him. I also tested that the followers were teleported, even when ordered to stand their ground. I just retested a few minutes ago, and it still works.
Somnium (a.k.a. Seeker)
Re: ( IN PROGRESS ) Summons Don't Follow
thats ultimately weird ....
Re: ( IN PROGRESS ) Summons Don't Follow
Howdy folks 
For some strange reason it seemes that the new transitons will take along your summons but only if you put them to "stand you ground". Nothing happened when i had them on follow on test but the second it was on "stand you ground" it teleported along.
/tara

For some strange reason it seemes that the new transitons will take along your summons but only if you put them to "stand you ground". Nothing happened when i had them on follow on test but the second it was on "stand you ground" it teleported along.
/tara
Re: ( IN PROGRESS ) Summons Don't Follow
Mind posting the relevant code?
Re: ( IN PROGRESS ) Summons Don't Follow
Sure:
Code: Select all
// Local area transition script.
// Created by Somnium in 2015 for the Alangara server.
// This area-transition script teleports both the entering PC and any
// followers he might have, to a destination waypoint.
// Usage:
// 1) Put this script on an area transition trigger (onEnter event).
// 2) Place a local string named TELEPORT_TARGET on the trigger, with
// a value corresponding to the tag of the target waypoint.
void main()
{
object oPC = GetEnteringObject();
if (GetIsObjectValid(oPC) && GetIsPC(oPC))
{
string targetName = GetLocalString(OBJECT_SELF, "TELEPORT_TARGET");
if (targetName != "")
{
object target = GetWaypointByTag(targetName);
location targetLocation = GetLocation(target);
if (GetIsObjectValid(target))
{
AssignCommand(oPC, ActionJumpToLocation(targetLocation));
object factionMember = GetFirstFactionMember(oPC, FALSE);
while (GetIsObjectValid(factionMember))
{
if (!GetIsPC(factionMember) && GetMaster(factionMember) == oPC)
{
AssignCommand(factionMember, ActionJumpToLocation(targetLocation));
}
factionMember = GetNextFactionMember(oPC, FALSE);
}
}
}
}
}
Somnium (a.k.a. Seeker)