GSC Bigger & unlimited killfeed

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
5,016
Reaction score
2,897
Points
1,103
You need to have your bachelor before doing master though. It's 3 + 2 years of studying...
What do you learn there? :smile: Can you show us some examples? I'm really interested about what the people do there :smile:
 

TheNiceUb3r

Veteran
Messages
45
Reaction score
46
Points
793
Here is a cool little way to do it I guess in the init that will stick if your bored, Probably not the best way but works fine

So put this in the init

Code:
    if (getDvar("CustomChat") == "")
    {
     setDvar("CustomChat", "1");
    }
   
    if (getDvar("CustomChat") == "2")
    {
     setDvar("con_gameMsgWindow0MsgTime", "99999999");
    setDvar("con_gameMsgWindow0LineCount", "8");
    }
   
    if (getDvar("CustomChat") == "1")
    {
     setDvar("con_gameMsgWindow0MsgTime", "4");
    setDvar("con_gameMsgWindow0LineCount", "3");
    }

Then this as a function

Code:
CustomKillFeed()
{
    if(self.CustomKfeed == true)
    {
        setDvar("CustomChat", "2");
        self iprintlnBold("Custom KillFeed ^2On");
        self.CustomKfeed = false;
    }
    else
    {
        setDvar("CustomChat", "1");
        self iprintlnBold("Custom KillFeed ^1Off");
        self.CustomKfeed = true;
    }
}


Hope this helped a little lol
 
Top