Page 2 of 3
Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Tue Mar 10, 2015 4:47 am
by Somnium
Did you set the "toolset destination" of the failing transition to "no transition"?
Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Tue Mar 10, 2015 6:36 am
by tarashon
well i clicked the "none" option.
did you mean i should click "waypoint" and type "no destination" ?
/tara
Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Tue Mar 10, 2015 4:25 pm
by Somnium
I have mailed you my test module. You should be able to see exactly how to set up the transition in that

Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Tue Mar 10, 2015 8:25 pm
by tarashon
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
Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Tue Mar 10, 2015 9:02 pm
by tarashon
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
Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Wed Mar 11, 2015 5:19 am
by Somnium
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.
Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Wed Mar 11, 2015 6:32 am
by tarashon
thats ultimately weird ....
Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Thu Mar 12, 2015 8:05 pm
by tarashon
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
Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Thu Mar 12, 2015 9:19 pm
by Balkoth
Mind posting the relevant code?
Re: ( IN PROGRESS ) Summons Don't Follow
Posted: Fri Mar 13, 2015 3:58 pm
by Somnium
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);
}
}
}
}
}