Results 1 to 9 of 9

Thread: How to remove team scores in top-left corner?

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #5
    Private
    Join Date
    Jul 2012
    Posts
    76
    Thanks
    9
    Thanked 56 Times in 38 Posts
    Remove
    PHP Code:
                if(level.timelimit 0)
                {
                    if(!
    isDefined(level.clock))
                    {
                        
    level.clock newHudElem();
                        
    level.clock.horzAlign "left";
                        
    level.clock.vertAlign "top";
                        
    level.clock.8;
                        
    level.clock.2;
                        
    level.clock.font "default";
                        
    level.clock.fontscale 2;
                    }
                    
    level.clock setTimer(level.timelimit 60);
                }
                else
                {
                    if(
    isDefined(level.clock))
                        
    level.clock destroy();
                } 
    and
    PHP Code:
        if(level.timelimit 0)
        {
            
    level.clock newHudElem();
            
    level.clock.horzAlign "left";
            
    level.clock.vertAlign "top";
            
    level.clock.8;
            
    level.clock.2;
            
    level.clock.font "default";
            
    level.clock.fontscale 2;
            
    level.clock setTimer(level.timelimit 60);
        } 
    That should delte the time left. I do not know about the other thing you'd like to remove. It's not stock cod, is it?

    About the fog, check the gsc's of the maps. Maybe the line is missing where the effects(fx's) are normally called. Check that out

  2. The Following User Says Thank You to Peterlankton For This Useful Post:

    kung foo man (22nd October 2013)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •