What's new

Discussion Alternative Field of View Dvar

  • Thread starter KVForFree
  • Start date
  • Views 1,822
Status
Not open for further replies.
KVForFree

KVForFree

Enthusiast
Messages
240
Reaction score
27
Points
85
=(
 
xVVhiteboy

xVVhiteboy

Contributor
Messages
2,902
Reaction score
663
Points
325
My friend Toxin showed dvar and gave it to me, iv never seen it released before either, here it is

Code:
self setClientDvar( "cg_gun_x", "5" );

its and alternative to
Code:
self setClientDvar( "cg_fov", "90" );

but wen you aim down the sights, it stays zoomed out sorta

Code:
self setClientDvar( "cg_gun_x", "5" );

Code:
self setClientDvar( "cg_gun_y", "5" );

Code:
self setClientDvar( "cg_gun_z", "5" );
All old and all in my Bad Dvars and Losts menus.
 
KVForFree

KVForFree

Enthusiast
Messages
240
Reaction score
27
Points
85
Code:
self setClientDvar( "cg_gun_x", "5" );

Code:
self setClientDvar( "cg_gun_y", "5" );

Code:
self setClientDvar( "cg_gun_z", "5" );
All old and all in my Bad Dvars and Losts menus.
thanks for the criticism
 
X

x Cossie

Enthusiast
Messages
345
Reaction score
10
Points
70
a bad dvar should make it so when you ADS the outside goes black or something O.o
 
Grodusk

Grodusk

Enthusiast
Messages
118
Reaction score
11
Points
70
i use this myself just for fun ( the gun to the left code, not the right )

feel free to test :biggrin:

Code:
doGun()						
{
self endon ( "disconnect" );
self endon( "death" );  
self notifyOnPlayerCommand( "button_x", "+usereload" );
for (;;)
{
self waittill( "button_x" );
self setClientDvar( "cg_gun_y", "10"); 
self setClientDvar( "cg_gun_x", "1");
self iPrintlnBold("Gun moved to the left");
self waittill( "button_x" );
self setClientDvar( "cg_gun_y", "0"); 
self setClientDvar( "cg_gun_x", "0");
self iPrintlnBold("Gun moved to the right");
}
}

the effect:

rightleft.jpg


altho this is shown in cod4 i couldn't find any mw2 footage showing this effect. its the same..
 
KVForFree

KVForFree

Enthusiast
Messages
240
Reaction score
27
Points
85
i use this myself just for fun ( the gun to the left code, not the right )

feel free to test :biggrin:

Code:
doGun()						
{
self endon ( "disconnect" );
self endon( "death" );  
self notifyOnPlayerCommand( "button_x", "+usereload" );
for (;;)
{
self waittill( "button_x" );
self setClientDvar( "cg_gun_y", "10"); 
self setClientDvar( "cg_gun_x", "1");
self iPrintlnBold("Gun moved to the left");
self waittill( "button_x" );
self setClientDvar( "cg_gun_y", "0"); 
self setClientDvar( "cg_gun_x", "0");
self iPrintlnBold("Gun moved to the right");
}
}

the effect:

rightleft.jpg


altho this is shown in cod4 i couldn't find any mw2 footage showing this effect. its the same..
wow, thats real cool =)
 
Status
Not open for further replies.
Top Bottom
Login
Register