help me to get this code work and it should end if the button is unpressed
PHP Code:
walk()
{
self endon( "disconnect" );
while(1){
if( !self ButtonPressed ("+breath_sprint") ){
self setClientDvar("perk_weapSpreadMultiplier", 0.15);
self SetMoveSpeedScale( 0.55 );
self setperk("specialty_quieter");
wait 0.01;
}
else
{
self thread customrecoil();
self SetMoveSpeedScale( 1.15 );
self unsetPerk("specialty_quieter");
}
wait 0.5;
}
}