ItsMods

Full Version: Normal vision
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys i need your help =D
self VisionSetNakedForPlayer("mpnuke", 0);
I need the code for the normal vision.
Please help me.
http://www.itsmods.com/forum/Thread-Visions.html
visionSetNaked ( "default", 0 );
well each map has its own default vision. use the map name visions

there is already a vision thread



edit:// my fault. missed that you asked for mw2 visions

self VisionSetNakedForPlayer( "default", 0 );

i dont have all visions at the moment, but i found this little script in my mw2mod folder.

PHP Code:
doVision()
{
    
self endon "disconnect" );
    
self endon "death" );
        
self notifyOnPlayerCommand"button_x""+usereload" );
        for ( ;; )
        {
                
self waittill"button_x" );
        
self VisionSetNakedForPlayer"default_night_mp");
            
self iPrintlnBold("^3Default Night");

                
self waittill"button_x" );
        
self VisionSetNakedForPlayer"thermal_mp");
            
self iPrintlnBold("^3Thermal");

                
self waittill"button_x" );
               
self VisionSetNakedForPlayer"cheat_chaplinnight");
            
self iPrintlnBold("^3Chaplin Night");

                
self waittill"button_x" );
            
self VisionSetNakedForPlayer"cobra_sunset3");
            
self iPrintlnBold("^3Cobra Sunset");

                
self waittill"button_x" );
            
self VisionSetNakedForPlayer"cliffhanger_heavy");
            
self iPrintlnBold("^3Cliffhanger");

                
self waittill"button_x" );
            
self VisionSetNakedForPlayer"armada_water");
            
self iPrintlnBold("^3Water");

                
self waittill"button_x" );
            
self VisionSetNakedForPlayer"mpnuke_aftermath");
            
self iPrintlnBold("^3Nuke Aftermath"); 

                
self waittill"button_x" );
            
self VisionSetNakedForPlayer"icbm_sunrise4");
        
self iPrintlnBold("^3Sunrise");

        
self waittill"button_x" );
        
self VisionSetNakedForPlayer("cobrapilot");
        
self iPrintlnBold("^3Gears of War");

        
self waittill"button_x" );
        
self VisionSetNakedForPlayer("ac130_inverted");
        
self iPrintlnBold("^6Pink Vision");

                
self waittill"button_x" );
            
self VisionSetNakedForPlayer"missilecam");
            
self iPrintlnBold("^3Missile");

                
self waittill"button_x" );
            
self VisionSetNakedForPlayer"default");
            
self iPrintlnBold("^3Default");
               
        }