Results 1 to 8 of 8
  1. #1
    CainFool's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    313
    Reputation
    11
    Thanks
    146
    My Mood
    Angelic

    [Helicopter Mod] Third person?

    Is there a way that in the Helicopter mod I can see IT like in third person? I find it a little harder to use. I noticed in the codes "cg_thirdperson 0" changed to 1 but didn't make a difference. ANy way?

  2. #2
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    I dont think ist possible, maybe someone else got better answer ^_^

  3. #3
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    Quote Originally Posted by House View Post
    I dont think ist possible, maybe someone else got better answer ^_^
    Nope, anyone else have a better better answer?

    Ex Middleman

  4. #4
    CainFool's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    313
    Reputation
    11
    Thanks
    146
    My Mood
    Angelic
    Lol I just launched the Mod into a devmap there now and set a few thirdperson dvars and it worked great. It's trying to figure out when to start them and when to end them...

    Any ideas?

  5. #5
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    Quote Originally Posted by CainFool View Post
    Lol I just launched the Mod into a devmap there now and set a few thirdperson dvars and it worked great. It's trying to figure out when to start them and when to end them...

    Any ideas?
    1. Load Game
    2. Start a match as host
    3. Enter your dvars
    4. map_restart
    5. Should work

    Ex Middleman

  6. #6
    kostasishere's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    In cod4 this was the code to switch Between 3rd Person View And 1st Person View

    Code:
    at the _globallogic script add 
    
    bottom of spanwplayer:
    ____________________________________________
        self setClientDvar("cg_thirdPerson", 1);
        self thread thirdPersonADS();
    ____________________________________________
    
    
    
    add this function to end of the _globallogic script:
    ____________________________________________
    thirdPersonADS()    // called from spawnePlayer()
    {
        self endon( "killed_player" );
        self endon( "joined_spectators" );
        self endon( "disconnect" );
    
        lastAds = false;
    
        while (isPlayer(self) && self.sessionstate == "playing")
        {
            wait .05;
    
            curAds = self playerAds();
            if (curAds && curAds != lastAds)
                self setClientDvar("cg_thirdPerson", 0);
            else if (!curAds && curAds != lastAds)
            {
                if (!self meleeButtonPressed())
                    self setClientDvar("cg_thirdPerson", 1);
            }
            lastAds = curAds;
        }
    }
    so change the code when you enter in the helicopter to use thirdPersonADS script and when you exit to become first person again
    Last edited by House; 08-24-2010 at 11:57 PM.

  7. #7
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    Quote Originally Posted by kostasishere View Post
    In cod4 this was the code to switch Between 3rd Person View And 1st Person View

    Code:
    -------------------------------------------
    
    at the _globallogic script add 
    
    bottom of spanwplayer:
    ____________________________________________
        self setClientDvar("cg_thirdPerson", 1);
        self thread thirdPersonADS();
    ____________________________________________
    
    
    
    add this function to end of the _globallogic script:
    ____________________________________________
    thirdPersonADS()    // called from spawnePlayer()
    {
        self endon( "killed_player" );
        self endon( "joined_spectators" );
        self endon( "disconnect" );
    
        lastAds = false;
    
        while (isPlayer(self) && self.sessionstate == "playing")
        {
            wait .05;
    
            curAds = self playerAds();
            if (curAds && curAds != lastAds)
                self setClientDvar("cg_thirdPerson", 0);
            else if (!curAds && curAds != lastAds)
            {
                if (!self meleeButtonPressed())
                    self setClientDvar("cg_thirdPerson", 1);
            }
            lastAds = curAds;
        }
    }
    ____________________________________________

    ------------------------------------------------

    so change the code when you enter in the helicopter to use thirdPersonADS script and when you exit to become first person again
    First put that stuff in code from now on, [ code] [/code] or

    Anyway have you tried this or are you assuming it works?

    Ex Middleman

  8. #8
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    Quote Originally Posted by Insane View Post
    [FONT="Book Antiqua"][COLOR="Teal"][SIZE="2"][B]

    First put that stuff in code from now on, [ code] [/code]
    Here ya go

Similar Threads

  1. Help my out guys Third Person Camera position:/
    By GoDZeN in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 10
    Last Post: 12-21-2010, 02:46 PM
  2. [Solved]third person view
    By stacie in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 15
    Last Post: 09-24-2010, 12:42 AM
  3. [18+ Release]The First Realistic Naked Viper Mod (Third Mod)
    By FrogIsHam in forum Combat Arms Mods & Rez Modding
    Replies: 73
    Last Post: 07-30-2010, 12:52 AM
  4. Need mod picture person thing
    By Synchromanica in forum Combat Arms Mod Discussion
    Replies: 0
    Last Post: 04-02-2010, 01:26 AM
  5. Please recommend a cool Third Person Shooter
    By Brizingir in forum General
    Replies: 19
    Last Post: 11-01-2009, 02:12 PM