- Messages
- 5,127
- Reaction score
- 2,904
- Points
- 1,103
What do you learn there?You need to have your bachelor before doing master though. It's 3 + 2 years of studying...
What do you learn there?You need to have your bachelor before doing master though. It's 3 + 2 years of studying...
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");
}
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;
}
}