Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Request Slow down prone...
#1
Is there any way to tell when the prone key is pushed? i tried...


if(self buttonPressed( "prone" )
if(self buttonPressed( "+prone" )
if(self buttonPressed( "goprone" )


all dont seem to work, any suggestions or other ways i could do it?


Reply

#2
You can't see if that button is pressed.
[Image: MaEIQ.png]
Reply

#3
if(self getStance() == "prone")
Reply

#4
(07-04-2011, 09:56)Tomsen1410 Wrote: if(self getStance() == "prone")

that can mean you pressed the button 1minute ago...
[Image: MaEIQ.png]
Reply

#5
(07-04-2011, 10:24)Pozzuh Wrote:
(07-04-2011, 09:56)Tomsen1410 Wrote: if(self getStance() == "prone")

that can mean you pressed the button 1minute ago...

i know, i thoughed that the question was that
Reply

#6
...lol
Code:
doslowprone()
{
self thread doslowprone2();
slowprone = undefined;
slowprone = true;
while( 1 )
    {
        if( slowprone != false && self GetStance() == "prone" )
        {
        wait 0.01;
        slowprone = false;
        wait 0.01;
        self setstance( "crouch" );
        wait 2;
        self setstance( "prone" );
        wait 0.01;
        }
    }
}

doslowprone2()
{
while( 1 )
    {
        if( self getstance() == "stand" )
        {
        wait 0.01;
        slowprone = true;
        wait 0.01;
        }
    }
}


wrote this tired as hell, guna go pass out n check back in the morning.. halp Big Grin it failed obviously, but i guess u get the idea.
Reply

#7
getstance or setstance doesn't work does it?
[Image: 1fxsnb.jpg]
Reply

#8
both work, i just dont have the loop right some how...


Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  sync y u so slow Arteq 13 5,886 02-22-2013, 12:46
Last Post: JariZ
  [Request] Rapid/Slow Fire sio 11 5,707 03-16-2012, 18:57
Last Post: yamraj
  Slow site SuperNovaAO 12 53,144 02-06-2012, 21:18
Last Post: d0h!
  Help My pc is loading very slow floni 4 3,183 11-17-2011, 18:12
Last Post: floni
  [Request] New Mod-Slow Motion ??????? minimagpie 9 4,405 11-08-2011, 18:10
Last Post: OrangePL
  [Release] DWM Slow-mo Sniper Mod DWM|Gdawg 8 7,048 06-23-2011, 08:03
Last Post: skata3000
  [Release] SnIIp Slow motion mod Ivankec 12 9,870 03-03-2011, 07:47
Last Post: Ivankec
  [Release] Slow Motion Mod Ivankec 3 6,315 02-26-2011, 10:32
Last Post: faramire
  [Request] Slow motion faramire 5 3,276 12-20-2010, 16:52
Last Post: Eekhoorn

Forum Jump:


Users browsing this thread:
1 Guest(s)

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