Page 2 of 2 FirstFirst 12
Results 16 to 26 of 26
  1. #16
    best22's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Germany
    Posts
    35
    Reputation
    10
    Thanks
    103
    It doesnt work.. anyway its a damn seriously mod D
    Uhmm... I'll ask The nbs ppl hope they can help me :/
    So Serious !

  2. #17
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by best22 View Post
    It doesnt work.. anyway its a damn seriously mod D
    Uhmm... I'll ask The nbs ppl hope they can help me :/
    @best22

    Well, first you should learn how GSC Works.

    Well, try to look for where the SlowMotion time is been activated. What thread is threatening it. And see what value it sends to it.
    Also, if you really want help. you should post the whole code / the file.
    So it will be easier to see how the mod works and how the "settings" are.
    Because now we cant do more then use the code you pasted it.

    And that is not the best stuff to help from.

    EDIT: I didn't see the spoiler

    EDIT 2:
    You know that it's the FINAL killcam we have been helping you with...
    Right?
    Last edited by Jorndel; 01-05-2012 at 12:45 AM.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  3. #18
    best22's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Germany
    Posts
    35
    Reputation
    10
    Thanks
    103
    1.No Problem
    2.YES! TRIED IN SND WITH BOTS
    So Serious !

  4. #19
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    So, this means it is solved or?
    If it is, you should mention lolbie so he can mark it solved

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  5. #20
    best22's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Germany
    Posts
    35
    Reputation
    10
    Thanks
    103
    no it isnt :S
    Last edited by best22; 01-06-2012 at 08:35 AM.
    So Serious !

  6. #21
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by best22 View Post
    no it isnt :S
    You joke?
    Well, shocked.

    Well, good luck then.
    Can't really give you more help.
    The only thing that would help you is that you could Copy and Paste the code I suppose.
    Since I don't think anyone can give you more help.
    (Unless giving you the working one )

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  7. #22
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    I used this:
    Code:
    doFinalKillCamFX( camTime )
    {
    	if ( isDefined( level.doingFinalKillcamFx ) )
    		return;
    	level.doingFinalKillcamFx = true;	
      
    	wait 3.47;
    	
    	for (i = 1 ; i >= 0.09999; i -= 0.1)
    	{	
    		setDvar("sv_cheats", 1);
    		setDvar("timescale", i);
    		
    		wait 0.00001;
    	}
    	wait 0.17;
    	for (i = 0.09999 ; i <= 1; i += 0.1)
    	{	
    		setDvar("sv_cheats", 1);
    		setDvar("timescale", i);
    		
    		wait 0.01;
    	}
    	setDvar("sv_cheats", 1);
    	setDvar("timescale", 1);
    	
    	intoSlowMoTime = camTime;
    	if ( intoSlowMoTime > 1.0 )
    	{
    		intoSlowMoTime = 1.0;
    		wait( camTime - 1.0 );
    	}
    	
    	
    	level.doingFinalKillcamFx = undefined;
    }

  8. #23
    best22's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Germany
    Posts
    35
    Reputation
    10
    Thanks
    103
    LoL it has worked for me ö.Ö
    Thank ya.
    One question to the guy over me how do make the slowmotion longer?
    So Serious !

  9. #24
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    What u expected a wrong code? and change the i for changing slomo..

  10. #25
    best22's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Germany
    Posts
    35
    Reputation
    10
    Thanks
    103
    Quote Originally Posted by mathieutje12 View Post
    What u expected a wrong code? and change the i for changing slomo..
    Dude i meaned you thanx for your code it works perfect just want to add more time in slow mo
    So Serious !

  11. #26
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    Read the post before.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Solved] Help with iSnipe
    By darkxan9b in forum Call of Duty Modern Warfare 2 Help
    Replies: 7
    Last Post: 07-04-2011, 05:39 AM
  2. [Help Request] help with ca hacks
    By moises8 in forum Combat Arms Help
    Replies: 4
    Last Post: 05-10-2011, 05:55 PM
  3. [Help Request] Anyone can help with this ?
    By devileyebg in forum Vindictus Help
    Replies: 1
    Last Post: 05-01-2011, 03:57 PM
  4. [Help Request] need help with mod
    By .:MUS1CFR34K:. in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 4
    Last Post: 05-01-2011, 12:40 PM
  5. [Help Request] need help with modding
    By BayBee Alyn in forum Combat Arms Help
    Replies: 0
    Last Post: 04-27-2011, 09:06 PM