UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Allow first person spectating?

broken avatar :(
Created 12 years ago
by DarkRattle
0 Members and 1 Guest are viewing this topic.
1,880 views
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 12 June 2014
Last active: 8 years ago
Posts
30
Respect
Forum Rank
Legless Crawler
Primary Group
Member
×
DarkRattle's Groups
DarkRattle's Contact & Social Links
So the only map I ever saw in WAW that had first person spectating was cheese cube. Does anyone know how to add that to your mod? I hate third person spectating.
broken avatar :(
  • n123q45
  • Deleted Member
×
broken avatar :(
n123q45
This user is deleted :(
uncomment out the script in _zombiemode.gsc ( i havent been able to test it, but it should work ) search for cg_thirdperson and ull find it
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 12 June 2014
Last active: 8 years ago
Posts
30
Respect
Forum Rank
Legless Crawler
Primary Group
Member
×
DarkRattle's Groups
DarkRattle's Contact & Social Links
uncomment out the script in _zombiemode.gsc ( i havent been able to test it, but it should work ) search for cg_thirdperson and ull find it

I'm guessing I just set the "set third person" to false right? for all of these??

Code Snippet
Plaintext
spectator_toggle_3rd_person()
{
self endon( "disconnect" );
self endon( "spawned_player" );

third_person = true;
self set_third_person( true );
// self NotifyOnCommand( "toggle_3rd_person", "weapnext" );

// while( 1 )
// {
// self waittill( "toggle_3rd_person" );
//
// if( third_person )
// {
// third_person = false;
// self set_third_person( false );
// wait( 0.5 );
// }
// else
// {
// third_person = true;
// self set_third_person( true );
// wait( 0.5 );
// }
// }
}

 
Loading ...