Results 1 to 9 of 9

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

  1. #1
    ... connecting
    Join Date
    Oct 2013
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    How to remove team scores in top-left corner?

    just like in the topic name. could anybody figure it out for me?
    xf: kaszel

  2. #2
    Private
    Join Date
    Jul 2012
    Posts
    76
    Thanks
    9
    Thanked 56 Times in 38 Posts
    I will take the tdm.gsc as an example.
    As I know you can simply change something in that file. Just search for this line
    PHP Code:
    thread maps\mp\gametypes\_hud_teamscore::init(); 
    and change it to
    PHP Code:
    //thread maps\mp\gametypes\_hud_teamscore::init(); 

  3. The Following 2 Users Say Thank You to Peterlankton For This Useful Post:

    kung foo man (22nd October 2013),redmanzu (22nd October 2013)

  4. #3
    ... connecting
    Join Date
    Oct 2013
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts
    wow, thank you! it actually works :P

  5. #4
    ... connecting
    Join Date
    Oct 2013
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts
    and maybe you also know how to remove the "time left" and "players (from each team) remaining" features?

    EDIT: and add a default fog from non-pam servers?
    Last edited by redmanzu; 22nd October 2013 at 15:02.

  6. #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

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

    kung foo man (22nd October 2013)

  8. #6
    ... connecting
    Join Date
    Oct 2013
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts
    thanks for help man. I really appreciate it.

  9. #7
    ... connecting
    Join Date
    Oct 2013
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts
    @Peterlankton somehow I'm still having a problem with the teamscores, it manages to show up on some other demos. Do you know the different way to get rid of it?

    i've figured that it works only with clanbase 2v2 ladder match mode, dunno why

    Click image for larger version. 

Name:	CoD2MP_s 2013-10-22 19-12134-69.jpg 
Views:	69 
Size:	250.8 KB 
ID:	513

    I would like to remove the red-matched features. I would be sooooooooo thankful *_*
    Last edited by redmanzu; 22nd October 2013 at 17:14. Reason: adding some information

  10. #8
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    This is a custom sd.gsc. Check the right gsc file and delete the things Peter said.
    About players left. Search in gametype.gsc for _playersleft

  11. The Following User Says Thank You to Ni3ls For This Useful Post:

    redmanzu (27th October 2013)

  12. #9
    ... connecting
    Join Date
    Oct 2013
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts
    Would it be incorrect if I would ask you nicely to do that for me? I'm getting through all these codes for few days and still haven't figured it out. I'm just bad at it. If you could prepare this with zPAM205 for me, I would be thankful so much. If it's not a problem for you, please contact me via xfire: kaszel or skype: szymson.j

Posting Permissions

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