Page 1 of 1

CSGO: change team name

Posted: Wed Aug 12, 2015 5:17 am
by nullable
Hello,

How can I to change team name in game?

Best Regards.

Posted: Wed Aug 12, 2015 6:30 am
by satoon101
Both team names are accessible via the mp_teamname_1 and mp_teamname_2 ConVars.

*Off-topic: there are a number of threads you have created that are awaiting a response by you. If you have figured out your issues (whether with our help or on your own), could you please at least reply as such and let us know what fixed your issue. It may seem like a small thing, but it could easily help others in the future who encounter the same issues.

Posted: Thu Aug 13, 2015 5:41 am
by nullable
Thanks. The problem has been resolved.

Example:

Syntax: Select all

from cvars import ConVar

# Convars
mp_team1_name = ConVar('mp_teamname_1')
mp_team2_name = ConVar('mp_teamname_2')

mp_team1_name.set_string('Team1 Name')
mp_team2_name.set_string('Team2 Name')