



Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() UGX V.I.P. | |
![]() | Has released one or more maps to the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
link_player()
{
blackhawk = getEnt("blackhawk","targetname");
players = get_players();
tag1 = blackhawk gettagOrigin( "tag_guy4" );
tag2 = blackhawk gettagOrigin( "tag_guy7" );
link_spot1 = spawn( "script_origin", tag1 );
link_spot1 linkto(blackhawk, "tag_guy4", (0,0,-30), (0,-180,0) );
link_spot2 = spawn( "script_origin", tag2 );
link_spot2 linkto(blackhawk, "tag_guy7", (0,0,-30), (0,0,0) );
if( isdefined(players[0] ) )
{
players[0] setPlayerAngles(blackhawk.angles );
players[0] playerlinktodelta( link_spot1, undefined , 1.0, 80, 80, 80, 80);
}
if( isdefined(players[1] ) )
{
players[1] setPlayerAngles(blackhawk.angles );
players[1] playerlinktodelta( link_spot2, undefined , 1.0, 80, 80, 80, 80);
}
}
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() UGX V.I.P. | |
![]() | Has released one or more maps to the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
Code SnippetPlaintextlink_player()
{
blackhawk = getEnt("blackhawk","targetname");
players = get_players();
tag1 = blackhawk gettagOrigin( "tag_guy4" );
tag2 = blackhawk gettagOrigin( "tag_guy7" );
link_spot1 = spawn( "script_origin", tag1 );
link_spot1 linkto(blackhawk, "tag_guy4", (0,0,-30), (0,-180,0) );
link_spot2 = spawn( "script_origin", tag2 );
link_spot2 linkto(blackhawk, "tag_guy7", (0,0,-30), (0,0,0) );
if( isdefined(players[0] ) )
{
players[0] setPlayerAngles(blackhawk.angles );
players[0] playerlinktodelta( link_spot1, undefined , 1.0, 80, 80, 80, 80);
}
if( isdefined(players[1] ) )
{
players[1] setPlayerAngles(blackhawk.angles );
players[1] playerlinktodelta( link_spot2, undefined , 1.0, 80, 80, 80, 80);
}
}
this is how i did it with my blackhawk model. but this only does the first 2 players. you would need to find the tags and add them for the last 2 players. also you need to play an animation on the player models to make it so they aren't just standing in the helicopter
i have most of it ready, but i kept spawning as spectator, so again thanks![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() UGX V.I.P. | |
![]() | Has released one or more maps to the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
were you spawning as spectator before or after you implemented the script i gave you?