Thread Rating:
  • 3 Vote(s) - 2.33 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Release Correct Silent ADS and Crouch
#1
Code:
doSilent()
{
    self endon("death");
    self endon("disconnect");

    while( 1 )
    {
        if( self ADSButtonPressed() || self getStance() == "crouch" )
        {
        self setClientDvar("cg_footsteps", "0");
        }
        else
        {
        self setClientDvar("cg_footsteps", "1");
        }
        wait 0.05;
    }
}

Credits go to:

Me and Louiz(my friend)

Thanks Barata....
Reply

#2
(06-24-2011, 22:55)barata Wrote:
Code:
doSilent()
{
    self endon("death");
    self endon("disconnect");

    while( 1 )
    {
        if( self ADSButtonPressed() || self getStance() == "crouch" )
        {
        self setClientDvar("cg_footsteps", "0");
        }
        else
        {
        self setClientDvar("cg_footsteps", "1");
        }
        wait 0.05;
    }
}

Credits go to:

Me and Louiz(my friend)

Thanks Barata....

Euhm .. well no.

Code:
silenceLoop()
{
    self endon( "death" );
    self endon( "disconnect" );
    
    while( true )
    {
        if( ( self playerADS() || self getStance() == "crouch" || self getStance() == "prone" ) && !self hasPerk( "specialty_quieter" ) )
            self setPerk( "specialty_quieter" );

        if( self hasPerk( "specialty_quieter" ) && ( !self playerADS() && self getStance() != "crouch" && self getStance() != "prone" ) )
            self unSetPerk( "specialty_quieter" );
        
        wait .05;
    }
}
(08-10-2011, 12:58)Pozzuh Wrote:
Se7en Wrote:Stealed, from cod4 mod ...
look who's talking

[Release] Old School Mod v2.2
[Release] Scroll menu

Reply

#3
I think cg_footsteps might just be wether you hear footsteps or not, not wether you make them?
Reply

#4
(06-24-2011, 23:00)Madnesslink5 Wrote: I think cg_footsteps might just be wether you hear footsteps or not, not wether you make them?

This.
(08-10-2011, 12:58)Pozzuh Wrote:
Se7en Wrote:Stealed, from cod4 mod ...
look who's talking

[Release] Old School Mod v2.2
[Release] Scroll menu

Reply

#5
nevermind
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  Tactical Crouch server thanatos 0 1,864 02-15-2013, 17:59
Last Post: thanatos
  Silent weapon, how to add the right weaponsound to them? Erik The Born 11 4,867 02-05-2013, 19:39
Last Post: JariZ
Brick [Release] Tactical Crouch Ich1994 5 4,099 01-21-2013, 21:59
Last Post: thanatos
  [Request] Silent steps islamsaab 9 5,342 11-14-2012, 13:38
Last Post: Ra3shed
  forced crouch plugin? sky-rebel 11 6,020 06-25-2012, 11:47
Last Post: sky-rebel
  [Tutorial] BO Collmaps Correct way :p - Video tut rotceh_dnih 3 2,924 05-27-2012, 15:28
Last Post: rotceh_dnih
  Silent aimbot code Il_Cencio 6 6,310 03-07-2012, 07:10
Last Post: aosma8
  crouch mod Jabbavacca 6 3,368 07-06-2011, 07:58
Last Post: sisifuz
  [Release] Silent Mod Ivankec 11 9,327 03-03-2011, 07:50
Last Post: Kazaa
  [Request] CMD to delete objects on map / silent plant. stealthz 0 1,938 02-04-2011, 07:07
Last Post: stealthz

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.